Interface: ToldModule
A TOLD (takeoff/landing) performance calculation module.
Methods
canUpdateLandingResult
▸ canUpdateLandingResult(result
, params
): boolean
Checks whether a previously calculated landing performance result can be updated with new parameters after the user has accepted landing V-speeds. The only parameter that can change to trigger an update is landing weight. If the result is updated, the accepted landing V-speeds will be adjusted if necessary without being cleared unless one or more landing limits are exceeded with the new parameters.
Parameters
Name | Type | Description |
---|---|---|
result | Readonly <ToldLandingPerformanceResult > | The previously calculated landing performance result. |
params | Readonly <ToldLandingParameters > | The new landing performance calculation parameters. |
Returns
boolean
Whether the previously calculated landing performance result can be updated with new parameters.
Defined in
src/workingtitle-instruments-g3000/html_ui/Pages/VCockpit/Instruments/NavSystems/WTG3000/Shared/Performance/TOLD/ToldModule.ts:35
canUpdateTakeoffResult
▸ canUpdateTakeoffResult(result
, params
): boolean
Checks whether a previously calculated takeoff performance result can be updated with new parameters after the user has accepted takeoff V-speeds. The parameters that can change to trigger an update are limited to the following: aircraft weight, temperature (if derived from ram air temperature sensors), and barometric pressure setting. If the result is updated, the accepted takeoff V-speeds will be adjusted if necessary without being cleared unless one or more takeoff limits are exceeded with the new parameters.
Parameters
Name | Type | Description |
---|---|---|
result | Readonly <ToldTakeoffPerformanceResult > | The previously calculated takeoff performance result. |
params | Readonly <ToldTakeoffParameters > | The new takeoff performance calculation parameters. |
Returns
boolean
Whether the previously calculated takeoff performance result can be updated with new parameters.
Defined in
src/workingtitle-instruments-g3000/html_ui/Pages/VCockpit/Instruments/NavSystems/WTG3000/Shared/Performance/TOLD/ToldModule.ts:24
getDatabase
▸ getDatabase(): ToldDatabase
Gets a TOLD database.
Returns
A TOLD database.
Defined in
src/workingtitle-instruments-g3000/html_ui/Pages/VCockpit/Instruments/NavSystems/WTG3000/Shared/Performance/TOLD/ToldModule.ts:12