Class: AutothrottleSpeedTargetRecord
Defined in: src/sdk/autothrottle/AbstractAutothrottle.ts:405
A record of an autothrottle speed target.
Constructors
Constructor
new AutothrottleSpeedTargetRecord():
AutothrottleSpeedTargetRecord
Returns
AutothrottleSpeedTargetRecord
Properties
ias
ias:
null
|number
=null
Defined in: src/sdk/autothrottle/AbstractAutothrottle.ts:407
The target indicated airspeed, in knots, or null
if there is no targeted indicated airspeed.
mach
mach:
null
|number
=null
Defined in: src/sdk/autothrottle/AbstractAutothrottle.ts:410
The target mach number, or null
if there is no targeted mach number.
machToKias
machToKias:
null
|number
=null
Defined in: src/sdk/autothrottle/AbstractAutothrottle.ts:413
The conversion factor from mach number to indicated airspeed (knots), or null
if the factor is unavailable.
Methods
copyFrom()
copyFrom(
other
):void
Defined in: src/sdk/autothrottle/AbstractAutothrottle.ts:419
Copies this record from another one.
Parameters
Parameter | Type | Description |
---|---|---|
other | AutothrottleSpeedTargetRecord | The record to copy from. |
Returns
void
reset()
reset():
void
Defined in: src/sdk/autothrottle/AbstractAutothrottle.ts:428
Resets this record. All properties will be set to null
.
Returns
void