Skip to main content

Class: FmsAirframeSpeedLimitConfig

Defined in: src/workingtitle-instruments-g3000/html_ui/Shared/AvionicsConfig/VNavConfig.ts:572

A configuration object which defines a factory for an FMS airframe speed limit value.

The speed limit value can be defined as a constant value, a one-dimensional lookup table keyed on pressure altitude, or a value bound to an event bus topic.

Implements

Constructors

Constructor

new FmsAirframeSpeedLimitConfig(value): FmsAirframeSpeedLimitConfig

Defined in: src/workingtitle-instruments-g3000/html_ui/Shared/AvionicsConfig/VNavConfig.ts:583

Creates a new FmsAirframeSpeedLimitConfig with a constant speed limit value.

Parameters

ParameterTypeDescription
valuenumberA speed limit value.

Returns

FmsAirframeSpeedLimitConfig

Constructor

new FmsAirframeSpeedLimitConfig(element): FmsAirframeSpeedLimitConfig

Defined in: src/workingtitle-instruments-g3000/html_ui/Shared/AvionicsConfig/VNavConfig.ts:588

Creates a new FmsAirframeSpeedLimitConfig from a configuration document element.

Parameters

ParameterTypeDescription
elementElementA configuration document element.

Returns

FmsAirframeSpeedLimitConfig

Properties

isNumericConfig

readonly isNumericConfig: true = true

Defined in: src/workingtitle-instruments-g3000/html_ui/Shared/AvionicsConfig/VNavConfig.ts:574

Flags this object as a NumericConfig.

Implementation of

NumericConfig.isNumericConfig


isResolvableConfig

readonly isResolvableConfig: true = true

Defined in: src/workingtitle-instruments-g3000/html_ui/Shared/AvionicsConfig/VNavConfig.ts:573

Flags this object as a ResolvableConfig.

Implementation of

NumericConfig.isResolvableConfig


value

readonly value: number | LookupTableConfig | NumericBusConfig

Defined in: src/workingtitle-instruments-g3000/html_ui/Shared/AvionicsConfig/VNavConfig.ts:577

The value of this config.

Methods

resolve()

resolve(): (context) => NumericConfigResult

Defined in: src/workingtitle-instruments-g3000/html_ui/Shared/AvionicsConfig/VNavConfig.ts:626

Resolves this config to a value.

Returns

This config's resolved value.

(context): NumericConfigResult

Parameters
ParameterType
contextFmsAirframeSpeedLimitContext
Returns

NumericConfigResult

Implementation of

NumericConfig.resolve