Type Alias: APTrkDirectorOptions
APTrkDirectorOptions =
object
Defined in: src/sdk/autopilot/directors/APTrkDirector.ts:10
Options for APTrkDirector.
Properties
bankRate?
optionalbankRate:number| () =>number
Defined in: src/sdk/autopilot/directors/APTrkDirector.ts:22
The bank rate to enforce when the director commands changes in bank angle, in degrees per second, or a function
which returns it. If not undefined, a default bank rate will be used. Defaults to undefined.
isToGaMode?
optionalisToGaMode:boolean
Defined in: src/sdk/autopilot/directors/APTrkDirector.ts:40
Whether the director is to be used as a TO/GA lateral mode. If false, then the director will hold the autopilot's
selected track and will control the state of the AUTOPILOT HEADING LOCK SimVar. If true, then the director will
hold the airplane's current track at the time of director activation or the transition from on-ground to in-air,
whichever comes later, and will not control the state of the AUTOPILOT HEADING LOCK SimVar. Defaults to false.
maxBankAngle?
optionalmaxBankAngle:number| () =>number
Defined in: src/sdk/autopilot/directors/APTrkDirector.ts:16
The maximum bank angle, in degrees, supported by the director, or a function which returns it. If not defined,
the director will use the maximum bank angle defined by its parent autopilot (via apValues). Defaults to
undefined.
turnReversalThreshold?
optionalturnReversalThreshold:number
Defined in: src/sdk/autopilot/directors/APTrkDirector.ts:32
The threshold difference between selected track and current track, in degrees, at which the director unlocks its
commanded turn direction and chooses a new optimal turn direction to establish on the selected track, potentially
resulting in a turn reversal. Any value less than or equal to 180 degrees effectively prevents the director from
locking a commanded turn direction. Any value greater than or equal to 360 degrees will require the selected track
to traverse past the current track in the desired turn direction in order for the director to issue a turn
reversal. Defaults to 0.