Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

EICAS improvements #135

Draft
wants to merge 36 commits into
base: master
Choose a base branch
from
Draft
Changes from 1 commit
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
36cd697
AUTORELIGHT and Idle N2
boufogre Jan 26, 2021
4989987
EGT gauge modifications
boufogre Jan 27, 2021
5bec0b3
better idle N2 calculation
boufogre Jan 28, 2021
11310b8
Many changes
boufogre Feb 19, 2021
23deba4
NaN init value for assumed temp
boufogre Feb 19, 2021
d5062c7
TMA changes
boufogre Feb 22, 2021
18c0771
Conflict resolution with master
boufogre Feb 22, 2021
20fec8a
Conflict resolution
boufogre Feb 22, 2021
02fb7e2
Merge branch 'master' into eicas-improvements
boufogre Feb 22, 2021
e59e820
Formatting
boufogre Mar 2, 2021
c11c930
Not needed
boufogre Mar 2, 2021
3340317
Formatting
boufogre Mar 2, 2021
b937674
Formatting
boufogre Mar 2, 2021
ad3ddf8
Delete B747_8_LowerEICAS_Engine.css
boufogre Mar 2, 2021
11f5d3a
Formatting
boufogre Mar 2, 2021
e8e6dbc
Formatting
boufogre Mar 2, 2021
8b6b8ec
formatting
boufogre Mar 4, 2021
e3a03b1
Formatting
boufogre Mar 4, 2021
24ad7fc
Formatting
boufogre Mar 4, 2021
56f9417
Formatting
boufogre Mar 4, 2021
836d005
Formatting
boufogre Mar 4, 2021
76424b0
Formatting
boufogre Mar 4, 2021
291449a
Formatting
boufogre Mar 6, 2021
64dafa0
Formatting
boufogre Mar 6, 2021
8074ae3
Formatting
boufogre Mar 6, 2021
816818b
Formatting
boufogre Mar 6, 2021
9026b3b
Formatting
boufogre Mar 6, 2021
4531a74
Formatting
boufogre Mar 8, 2021
e151375
Formatting
boufogre Mar 8, 2021
6301280
Formatting
boufogre Mar 8, 2021
58452a3
Formatting
boufogre Mar 8, 2021
9302cf8
Formatting
boufogre Mar 8, 2021
58985d7
Formatting
boufogre Mar 11, 2021
659244f
Formatting
boufogre Mar 11, 2021
8b59539
Formatting
boufogre Apr 20, 2021
201c8d8
update
boufogre Sep 7, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
NaN init value for assumed temp
boufogre committed Feb 19, 2021
commit 23deba493be14208fa73382bf296b42b3ca79763
Original file line number Diff line number Diff line change
@@ -106,7 +106,7 @@ class B747_8_FMC_MainDisplay extends Boeing_FMC {
Init() {
super.Init();
let oat = SimVar.GetSimVarValue("AMBIENT TEMPERATURE", "celsius");
this._thrustTakeOffTemp = Math.ceil(oat / 10) * 10;
this._thrustTakeOffTemp = NaN /*Math.ceil(oat / 10) * 10*/;
this.aircraftType = Aircraft.B747_8;
this.maxCruiseFL = 430;
this.onInit = () => { B747_8_FMC_InitRefIndexPage.ShowPage1(this); };