Struct IndicatedAirSpeed
Indicated air speed object to calculate the true air speed (TAS) and k value
Namespace: FpAssistantCore.GeneralAviation
Assembly: FpAssistantCoreScl.dll
Syntax
public struct IndicatedAirSpeed
Constructors
View SourceIndicatedAirSpeed(AirSpeed, Altitude)
Constructor to initalise with an airspeed and altitude object
Declaration
public IndicatedAirSpeed(AirSpeed airSpeed, Altitude altitude)
Parameters
Type | Name | Description |
---|---|---|
AirSpeed | airSpeed | Indicated air speed |
Altitude | altitude | Altitude of the aircraft |
IndicatedAirSpeed(AirSpeed, Altitude, Double)
Constructor to initalise with an airspeed and altitude object along with a temperature variation
Declaration
public IndicatedAirSpeed(AirSpeed airSpeed, Altitude altitude, double var)
Parameters
Type | Name | Description |
---|---|---|
AirSpeed | airSpeed | Indicated air speed |
Altitude | altitude | Altitude of the aircraft |
System.Double | var | Temperature variation about ISA in °C |
Properties
View SourceAirSpeedUnit
Contains the unit of the airspeed
Declaration
public readonly AirSpeedUnits AirSpeedUnit { get; }
Property Value
Type | Description |
---|---|
AirSpeedUnits | Enum value of the unit |
K
Contains the value of the K parameter
Declaration
public readonly double K { get; }
Property Value
Type | Description |
---|---|
System.Double | Value of the computed K component |
TrueAirSpeed
Contains the value of the airspeed
Declaration
public readonly double TrueAirSpeed { get; }
Property Value
Type | Description |
---|---|
System.Double | Value of the computed true airspeed |