Skip to main content

Type Alias: AutothrottleLatchOptions

AutothrottleLatchOptions = object

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

Options for the autothrottle latch function.

Properties

latchDebounce?

optional latchDebounce: number

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

The consecutive amount of time, in seconds, that the conditions for latching a throttle must be met before the throttle becomes latched. Defaults to 0.


latchThreshold?

optional latchThreshold: number

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

The commanded throttle position adjustment speed, in units of normalized position per second, at or below which will allow a throttle to become latched. A negative value will disable latching entirely. Defaults to -1.


unlatchDebounce?

optional unlatchDebounce: number

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

The consecutive amount of time, in seconds, that the conditions for unlatching a throttle must be met before the throttle becomes unlatched. Defaults to 0.


unlatchThreshold?

optional unlatchThreshold: number

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

The commanded throttle position adjustment speed, in units of normalized position per second, at or above which will allow a throttle to become unlatched from a latched state. This value will be clamped to be greater than or equal to latchThreshold. Defaults to 0.