Struct IndicatedAirSpeed
Indicated air speed object to calculate the true air speed (TAS) and k value
Inherited Members
Namespace: FpAssistantCore.GeneralAviation
Assembly: FpAssistantCoreScl.dll
Syntax
public struct IndicatedAirSpeed
Constructors
View SourceIndicatedAirSpeed(AirSpeed, Altitude)
Constructor to initialise 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 initialise 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 |
double | var | Temperature variation about ISA in °C |
Properties
View SourceAirSpeedUnit
Contains the unit of the airspeed
Declaration
public AirSpeedUnits AirSpeedUnit { get; }
Property Value
Type | Description |
---|---|
AirSpeedUnits | Enum value of the unit |
K
Contains the value of the K parameter
Declaration
public double K { get; }
Property Value
Type | Description |
---|---|
double | Value of the computed K component |
TrueAirSpeed
Contains the value of the airspeed
Declaration
public double TrueAirSpeed { get; }
Property Value
Type | Description |
---|---|
double | Value of the computed true airspeed |