Skip to main content

Class: AOASystem

Defined in: workingtitle-instruments-wt21/shared/Systems/AOASystem.ts:20

The AOA system.

Extends

Constructors

Constructor

new AOASystem(index, xmlConfig, bus): AOASystem

Defined in: workingtitle-instruments-wt21/shared/Systems/AOASystem.ts:37

Creates an instance of the AOASystem.

Parameters

ParameterTypeDescription
indexnumberThe index of the system.
xmlConfigDocumentThe instance of the panel.xml configuration to use.
busEventBusThe instance of the event bus for the system to use.

Returns

AOASystem

Overrides

BasicAvionicsSystem<AOASystemEvents>.constructor

Properties

_state

protected _state: undefined | AvionicsSystemState

Defined in: sdk/system/BasicAvionicsSystem.ts:32

Inherited from

BasicAvionicsSystem._state


aoaDegrees

protected aoaDegrees: ConsumerSubject<number>

Defined in: workingtitle-instruments-wt21/shared/Systems/AOASystem.ts:24


aoaFlapsDefinitions

protected readonly aoaFlapsDefinitions: Map<number, AoAFlapsDefinition>

Defined in: workingtitle-instruments-wt21/shared/Systems/AOASystem.ts:22


bus

protected readonly bus: EventBus

Defined in: workingtitle-instruments-wt21/shared/Systems/AOASystem.ts:37

The instance of the event bus for the system to use.

Inherited from

BasicAvionicsSystem.bus


electricalPowerLogic?

protected optional electricalPowerLogic: CompositeLogicXMLElement

Defined in: sdk/system/BasicAvionicsSystem.ts:48

Inherited from

BasicAvionicsSystem.electricalPowerLogic


electricalPowerSub?

protected optional electricalPowerSub: Subscription

Defined in: sdk/system/BasicAvionicsSystem.ts:47

Inherited from

BasicAvionicsSystem.electricalPowerSub


flapsHandleIndex

protected flapsHandleIndex: ConsumerSubject<number>

Defined in: workingtitle-instruments-wt21/shared/Systems/AOASystem.ts:27


index

readonly index: number

Defined in: workingtitle-instruments-wt21/shared/Systems/AOASystem.ts:37

The index of the system.

Inherited from

BasicAvionicsSystem.index


initializationTime

protected readonly initializationTime: 3000 = 3000

Defined in: workingtitle-instruments-wt21/shared/Systems/AOASystem.ts:21

The time it takes in milliseconds for the system to initialize.

Overrides

BasicAvionicsSystem.initializationTime


initializationTimer

protected readonly initializationTimer: DebounceTimer

Defined in: sdk/system/BasicAvionicsSystem.ts:42

A timeout after which initialization will be complete.

Inherited from

BasicAvionicsSystem.initializationTimer


isPowered

protected isPowered: undefined | boolean

Defined in: sdk/system/BasicAvionicsSystem.ts:45

Whether or not the system is powered.

Inherited from

BasicAvionicsSystem.isPowered


isPowerValid

protected isPowerValid: boolean = false

Defined in: sdk/system/BasicAvionicsSystem.ts:53

Whether power data consumed by this system is valid.

Inherited from

BasicAvionicsSystem.isPowerValid


publisher

protected readonly publisher: Publisher<AOASystemEvents>

Defined in: sdk/system/BasicAvionicsSystem.ts:50

Inherited from

BasicAvionicsSystem.publisher


stallAoa

protected stallAoa: ConsumerSubject<number>

Defined in: workingtitle-instruments-wt21/shared/Systems/AOASystem.ts:26


stateEvent

protected readonly stateEvent: "aoa_state"

Defined in: sdk/system/BasicAvionicsSystem.ts:64

The key of the state update event to send on state update.

Inherited from

BasicAvionicsSystem.stateEvent


xmlConfig

protected readonly xmlConfig: Document

Defined in: workingtitle-instruments-wt21/shared/Systems/AOASystem.ts:37

The instance of the panel.xml configuration to use.


zeroLiftAoa

protected zeroLiftAoa: ConsumerSubject<number>

Defined in: workingtitle-instruments-wt21/shared/Systems/AOASystem.ts:25

Accessors

state

Get Signature

get state(): undefined | AvionicsSystemState

Defined in: sdk/system/BasicAvionicsSystem.ts:34

Inherit Doc
Returns

undefined | AvionicsSystemState

Inherited from

BasicAvionicsSystem.state

Methods

connectToPower()

protected connectToPower(source): void

Defined in: sdk/system/BasicAvionicsSystem.ts:95

Connects this system's power state to an ElectricalEvents topic, electricity logic element, or Subscribable.

Parameters

ParameterTypeDescription
sourceCompositeLogicXMLElement | Subscribable<boolean> | keyof BaseElectricalEvents | `elec_bus_main_v_${number}` | `elec_bus_main_a_${number}` | `elec_master_battery_${number}` | `elec_circuit_avionics_on_${number}` | `elec_bat_v_${number}` | `elec_bat_a_${number}` | `elec_ext_power_available_${number}` | `elec_ext_power_on_${number}` | `elec_apu_gen_active_${number}` | `elec_apu_gen_switch_${number}` | `elec_eng_gen_switch_${number}` | `elec_circuit_on_${number}` | `elec_circuit_switch_on_${number}` | `elec_circuit_com_on_${number}` | `elec_circuit_nav_on_${number}`The source to which to connect this system's power state.

Returns

void

Inherited from

BasicAvionicsSystem.connectToPower


onPowerChanged()

protected onPowerChanged(isPowered): void

Defined in: sdk/system/BasicAvionicsSystem.ts:140

A callback called when the connected power state of the avionics system changes.

Parameters

ParameterTypeDescription
isPoweredbooleanWhether or not the system is powered.

Returns

void

Inherited from

BasicAvionicsSystem.onPowerChanged


onPowerValid()

protected onPowerValid(): void

Defined in: sdk/system/BasicAvionicsSystem.ts:86

Responds to when power data becomes valid.

Returns

void

Inherited from

BasicAvionicsSystem.onPowerValid


onStateChanged()

protected onStateChanged(previousState, currentState): void

Defined in: sdk/system/BasicAvionicsSystem.ts:132

Responds to changes in this system's state.

Parameters

ParameterTypeDescription
previousStateundefined | AvionicsSystemStateThe previous state.
currentStateAvionicsSystemStateThe current state.

Returns

void

Inherited from

BasicAvionicsSystem.onStateChanged


onUpdate()

onUpdate(): void

Defined in: sdk/system/BasicAvionicsSystem.ts:164

Returns

void

Inherit Doc

Inherited from

BasicAvionicsSystem.onUpdate


readAoAConfiguration()

protected readAoAConfiguration(): void

Defined in: workingtitle-instruments-wt21/shared/Systems/AOASystem.ts:55

Reads the AOASystem configuration from the XML config.

Returns

void


setState()

protected setState(state): void

Defined in: sdk/system/BasicAvionicsSystem.ts:117

Sets the state of the avionics system and publishes the change.

Parameters

ParameterTypeDescription
stateAvionicsSystemStateThe new state to change to.

Returns

void

Inherited from

BasicAvionicsSystem.setState


updateAoaPct()

protected updateAoaPct(updateStallAndZeroLift): void

Defined in: workingtitle-instruments-wt21/shared/Systems/AOASystem.ts:85

Updates the published AOA percentage.

Parameters

ParameterTypeDescription
updateStallAndZeroLiftbooleanWhether or not to update the zero-lift and stall AOAs and publish them.

Returns

void


updatePowerFromLogic()

protected updatePowerFromLogic(): void

Defined in: sdk/system/BasicAvionicsSystem.ts:171

Updates this system's power state from an electricity logic element.

Returns

void

Inherited from

BasicAvionicsSystem.updatePowerFromLogic