Skip to main content

Class: AutothrottleSpeedTargetRecord

Defined in: src/sdk/autothrottle/AbstractAutothrottle.ts:436

A record of an autothrottle speed target.

Constructors

Constructor

new AutothrottleSpeedTargetRecord(): AutothrottleSpeedTargetRecord

Returns

AutothrottleSpeedTargetRecord

Properties

ias

ias: number | null = null

Defined in: src/sdk/autothrottle/AbstractAutothrottle.ts:438

The target indicated airspeed, in knots, or null if there is no targeted indicated airspeed.


mach

mach: number | null = null

Defined in: src/sdk/autothrottle/AbstractAutothrottle.ts:441

The target mach number, or null if there is no targeted mach number.


machToKias

machToKias: number | null = null

Defined in: src/sdk/autothrottle/AbstractAutothrottle.ts:444

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:450

Copies this record from another one.

Parameters

ParameterTypeDescription
otherAutothrottleSpeedTargetRecordThe record to copy from.

Returns

void


reset()

reset(): void

Defined in: src/sdk/autothrottle/AbstractAutothrottle.ts:459

Resets this record. All properties will be set to null.

Returns

void