- Messages
- 252
- Country

Hello,
After finishing the N1 Gauge, I wanted to have a real XML challenge: Calculating my own EPR value.
I have access to the net thrust vs mach vs EPR for the 747 I am modelling, and I have even figured out the equation of this line for Mach 0, with net thrust being the x value and EPR being the y value:
EPR (y) = 0.000127787 (thrust) ^2 + 0.00486389 (thrust) + 1.00178
I then put this equation into XML, though I am not sure if I got the notations and orders correct. I know it does not produce the expected value between 1 and 2. My code currently produces values around 5 - 120. I have included below the graph of thrust vs EPR and the snippet of code responsible for calculating this variable.
For right now, I just want to be able to calculate Mach 0 EPR, though some guidance on the simplest method to include the effects of mach would be brilliant.
Here is the chart. Net thrust is the x axis in thousands of lbf, y axis is EPR.
After finishing the N1 Gauge, I wanted to have a real XML challenge: Calculating my own EPR value.
I have access to the net thrust vs mach vs EPR for the 747 I am modelling, and I have even figured out the equation of this line for Mach 0, with net thrust being the x value and EPR being the y value:
EPR (y) = 0.000127787 (thrust) ^2 + 0.00486389 (thrust) + 1.00178
I then put this equation into XML, though I am not sure if I got the notations and orders correct. I know it does not produce the expected value between 1 and 2. My code currently produces values around 5 - 120. I have included below the graph of thrust vs EPR and the snippet of code responsible for calculating this variable.
For right now, I just want to be able to calculate Mach 0 EPR, though some guidance on the simplest method to include the effects of mach would be brilliant.
XML:
<Element>
<Select>
<Value Minimum="0" Maximum="2">
0.000127787 (A:TURB ENG1 JET THRUST,lbs) * 2 pow 0.00486389 (A:TURB ENG1 JET THRUST,lbs) * 1.00178 + + (>L:ENG1 EPR, number)
</Value>
</Select>
</Element>
Here is the chart. Net thrust is the x axis in thousands of lbf, y axis is EPR.


