But how do I write all this stuff to the cube or square?
Read the FSX SDK:
pow Power of; the first value to the power of the second 2 2 5 pow 32
Any other question that is not specific to an aspect of development or tool can be posted in the General chat forum.
By following these guidelines we make sure that the forums remain easy to read for everybody and also that the right people can find your post to answer it.
But how do I write all this stuff to the cube or square?
I know. the problem is to make the cube of a whole equation
If you notice in the first equation I used several times "pow".Then take some time to understand XML.

X 2.56 * A + Y 57 + - Z / 3 pow
X 2.56 * A + s0
57 Y + s1
l0 l1 - Z / s2
l2 3 pow
X=5
Y=X+20
Z=Y*4
X=2
A=4
B=A*X
Y=A/4
Z=X+Y

x n pow ....... Power of the first value to the power of the second.If you notice in the first equation I used several times "pow".
What I want to understand and how can I do something like this:
{A + (X * 2.56) - (57 + Y)]: Z} ^ 3

-29.43 (A: TURB ENG1 CORRECTED N1, percent) 100 / 3 pow * 63.32 (A: TURB ENG1 CORRECTED N1, percent) 100 / 2 pow * + -11.87 (A: TURB ENG1 CORRECTED N1, percent) 100 / * + 4.685 + (>L:Ram Drag Factor, enum)
-29.43 (A: TURB ENG1 CORRECTED N1, percent) 100 / 3 pow * s0
63.32 (A: TURB ENG1 CORRECTED N1, percent) 100 / 2 pow * s1
-11.87 (A: TURB ENG1 CORRECTED N1, percent) 100 / * s2
l0 l1 + l2 + 4.685 + (>L:Ram Drag Factor, enum)

1) This is the result (answer) of what your formula is calculating! (>L:Ram Drag Factor, enum)
The > (or > symbol) means "stick the answer in this variable".
(A: TURB ENG JET THRUST, pounds) (A: AIRSPEED MACH, mach) 1116.44 / 32,174 / 47.5000 * -29.43 (A: TURB ENG1 CORRECTED N1 percent) 100/3 pow * 63.32 (A: TURB ENG1 CORRECTED N1 percent) 100/2 pow * + 11.87 (A: TURB ENG1 CORRECTED N1 percent) 100 / * - + 4.685 * (A: AIRSPEED MACH, mach) 2 pow 0.2 * 1 + 288.15 (A: PLANE ALTITUDE, feet ) 1000 / * 1.98 - 288.15 / * * sqrt (A: AIRSPEED MACH, mach) 2 0.2 * 1 + 3.5 pow pow 288.15 (A: PLANE ALTITUDE, feet) 1000 / * 1.98 - 288.15 / 5,256 pow * * +
[\ Code]
Substituting in the formula EPR get:
[Code]
0002 (A: TURB ENG JET THRUST, pounds) (A: AIRSPEED MACH, mach) 1116.44 / 32,174 / 47.5000 * -29.43 (A: TURB ENG1 CORRECTED N1 percent) 100/3 pow * 63.32 (A: TURB ENG1 CORRECTED N1 percent) 100/2 pow * + 11.87 (A: TURB ENG1 CORRECTED N1 percent) 100 / * - + 4.685 * (A: AIRSPEED MACH, mach) 2 pow 0.2 * 1 + 288.15 (A: PLANE ALTITUDE, feet) 1000 / * 1.98 - 288.15 / * * sqrt (A: AIRSPEED MACH, mach) 2 0.2 * 1 + 3.5 pow pow 288.15 (A: PLANE ALTITUDE, feet) 1000 / * 1.98 - 288.15 / 5,256 pow * * +
10000/4 pow *
0008 (A: TURB ENG JET THRUST, pounds) (A: AIRSPEED MACH, mach) 1116.44 / 32,174 / 47.5000 * -29.43 (A: TURB ENG1 CORRECTED N1 percent) 100/3 pow * 63.32 (A: TURB ENG1 CORRECTED N1 percent) 100/2 pow * + 11.87 (A: TURB ENG1 CORRECTED N1 percent) 100 / * - + 4.685 * (A: AIRSPEED MACH, mach) 2 pow 0.2 * 1 + 288.15 (A: PLANE ALTITUDE, feet) 1000 / * 1.98 - 288.15 / * * sqrt (A: AIRSPEED MACH, mach) 2 0.2 * 1 + 3.5 pow pow 288.15 (A: PLANE ALTITUDE, feet) 1000 / * 1.98 - 288.15 / 5,256 pow * * +
10000/3 * pow -
0032 (A: TURB ENG JET THRUST, pounds) (A: AIRSPEED MACH, mach) 1116.44 / 32,174 / 47.5000 * -29.43 (A: TURB ENG1 CORRECTED N1 percent) 100/3 pow * 63.32 (A: TURB ENG1 CORRECTED N1 percent) 100/2 pow * + 11.87 (A: TURB ENG1 CORRECTED N1 percent) 100 / * - + 4.685 * (A: AIRSPEED MACH, mach) 2 pow 0.2 * 1 + 288.15 (A: PLANE ALTITUDE, feet) 1000 / * 1.98 - 288.15 / * * sqrt (A: AIRSPEED MACH, mach) 2 0.2 * 1 + 3.5 pow pow 288.15 (A: PLANE ALTITUDE, feet) 1000 / * 1.98 - 288.15 / 5,256 pow * * +
10000 / * +
0.997 +
[\ Code]
Unfortunately it does not work .......:(:(:banghead::banghead:
1 M = 1116.44 ft / sec

it is true, I missed a lot "," and I apologize.Might I suggest you just practice doing some simple XML equations before you try these.
As has been explained a couple of times, the result of an XML equation occurs at the end of the code and is of the form (>L:Ram Drag Factor, enum) You can, instead of using > just use >.
If you just end without that sort of expression there will be a zero result.
Next point, you must not use a comma for a decimal point or your XML will not work. Example, at the end of the code in post #56 you have 5,256 pow. That should be 5.256 pow.
There are other examples that I'll let you find.
Finally, if you want people to seriously look at your code, do not have the code spread over more than one page width, break it up into readable chunks
Roy
0.437 (A:TURB ENG3 CORRECTED N1,percent) 100 / 3 pow *
0.041 (A:TURB ENG3 CORRECTED N1,percent) 100 / 2 pow * +
0.016 (A:TURB ENG3 CORRECTED N1,percent) 100 / * - 1.003 +
[\code]