Skip to content
This repository has been archived by the owner on May 16, 2024. It is now read-only.

Commit

Permalink
increased default CLB/CRU N1 speeds for longitude
Browse files Browse the repository at this point in the history
  • Loading branch information
cywang90 committed Mar 28, 2021
1 parent 66caad5 commit d55bed3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/workingtitle-g3000/CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
- \[PFD\] The "Auto" display mode for the PFD Angle of Attack Indicator is no longer available in the G3000.
- \[NavMap\] The high-latitude behavior of the map has been changed to take into account the range of the map. At smaller map ranges, the map can be centered at higher latitudes up to +/- 85 degrees (previously the map was restricted to 70 degrees at all ranges).
- \[GTC\] Added the ability to drag-to-scroll in various pages. These pages also now have scroll-up/scroll-down buttons enabled in the button bar.
- \[Misc\] For the Longitude: In autothrottle CLIMB mode, thrust is limited to 90% N1 (CLB thrust). After leveling off (switching from CLIMB to any other autothrottle mode), CLB thrust is available for another 10 minutes, after which the autothrottle will be limited to 75% N1 (CRU thrust). Engaging CLIMB mode again will reset the autothrottle limit to CLB thrust.
- \[Misc\] For the Longitude: In autothrottle CLIMB mode, thrust is limited to 95% N1 (CLB thrust). After leveling off (switching from CLIMB to any other autothrottle mode), CLB thrust is available for another 10 minutes, after which the autothrottle will be limited to 85% N1 (CRU thrust). Engaging CLIMB mode again will reset the autothrottle limit to CLB thrust.
- The default CLB and CRU values are arbitrary since no references could be found. If so desired, these values can be customized in the mod config file (located at `workingtitle-g3000\html_ui\WTg3000.cfg`). Both support lookup tables keyed to pressure altitude and delta ISA temperature.

**Fixes**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,5 +46,5 @@ vle = 230
vfe = [250,230,180]
aoaZeroLift = -3
aoaCritical = 13
clbN1 = [[0,0,0.9]] # Lookup table for CLB (maximum climb) N1. The value should be an array of breakpoints expressed as 3-tuples: [pressure_altitude (feet), temperature_isa_delta (C), n1 (%)].
cruN1 = [[0,0,0.75]] # Lookup table for CRU (maximum cruise) N1. The value should be an array of breakpoints expressed as 3-tuples: [pressure_altitude (feet), temperature_isa_delta (C), n1 (%)].
clbN1 = [[0,0,0.95]] # Lookup table for CLB (maximum climb) N1. The value should be an array of breakpoints expressed as 3-tuples: [pressure_altitude (feet), temperature_isa_delta (C), n1 (%)].
cruN1 = [[0,0,0.85]] # Lookup table for CRU (maximum cruise) N1. The value should be an array of breakpoints expressed as 3-tuples: [pressure_altitude (feet), temperature_isa_delta (C), n1 (%)].
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ WT_g3000_ModConfig.SECTIONS = [
vfe: {default: [250, 230, 180], auto: true},
aoaZeroLift: {default: -3, auto: true},
aoaCritical: {default: 13, auto: true},
clbN1: {default: [[0, 0, 0.9]], auto: true},
cruN1: {default: [[0, 0, 0.75]], auto: true}
clbN1: {default: [[0, 0, 0.95]], auto: true},
cruN1: {default: [[0, 0, 0.85]], auto: true}
}}
];

Expand Down

0 comments on commit d55bed3

Please sign in to comment.