diff --git a/docs/workingtitle-g3000/CHANGES.md b/docs/workingtitle-g3000/CHANGES.md index bc073ac15e..892451e7ba 100644 --- a/docs/workingtitle-g3000/CHANGES.md +++ b/docs/workingtitle-g3000/CHANGES.md @@ -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** diff --git a/src/workingtitle-vcockpits-instruments-navsystems-g3000/html_ui/WTg3000.cfg b/src/workingtitle-vcockpits-instruments-navsystems-g3000/html_ui/WTg3000.cfg index 766ef86abc..e575f05790 100644 --- a/src/workingtitle-vcockpits-instruments-navsystems-g3000/html_ui/WTg3000.cfg +++ b/src/workingtitle-vcockpits-instruments-navsystems-g3000/html_ui/WTg3000.cfg @@ -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 (%)]. \ No newline at end of file +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 (%)]. \ No newline at end of file diff --git a/src/workingtitle-vcockpits-instruments-navsystems-g3000/html_ui/WTg3000/Config/ModConfig.js b/src/workingtitle-vcockpits-instruments-navsystems-g3000/html_ui/WTg3000/Config/ModConfig.js index f9e5c68bc8..0a5af54d35 100644 --- a/src/workingtitle-vcockpits-instruments-navsystems-g3000/html_ui/WTg3000/Config/ModConfig.js +++ b/src/workingtitle-vcockpits-instruments-navsystems-g3000/html_ui/WTg3000/Config/ModConfig.js @@ -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} }} ];