I'm submitting a ...
Describe the issue
EGT is based on throttle. That is very wrong. It should be changed to N2 norm to be a bit more closer to proper.
What is the motivation / use case for changing the behavior?
While not exactly right, it at least makes the movement of the EGT gauges of aircraft that don't yet override the EGT with a correct calculation more realistic.
Fix
|
EGT_degC = in.TAT_c + 363.1 + ThrottlePos * 357.1; |
Change to
EGT_degC = in.TAT_c + 363.1 + N2norm * 357.1;
I'm submitting a ...
Describe the issue
EGT is based on throttle. That is very wrong. It should be changed to N2 norm to be a bit more closer to proper.
What is the motivation / use case for changing the behavior?
While not exactly right, it at least makes the movement of the EGT gauges of aircraft that don't yet override the EGT with a correct calculation more realistic.
Fix
jsbsim/src/models/propulsion/FGTurbine.cpp
Line 221 in 9ea4925
Change to
EGT_degC = in.TAT_c + 363.1 + N2norm * 357.1;