XML, another one of those creations one has to ask... WHY?

Try converting a 6 order trendline for a polynomial curve from Excel into XML. The word "nightmare" is totally inadequate!
That's why it took months++ to calculate the correct P7 thrust curve for the RR Conway for all elevations and temperatures!
This is how to convert a 4 order curve
in Excel (267.4242424238*D15^4-2602.7777777738*D15^3+9399.5833333178*D15^2-14868.2979797705*D15)+8711.6903030121
Break it down to
267.4242424238*D15^4
-2602.7777777738*D15^3
+9399.5833333178*D15^2
-14868.2979797705*D15
+8711.6903030121
Then convert it
XML:
D15 4 pow 267.4242424238 *
D15 3 pow 2602.7777777738 * -
D15 2 pow 9399.5833333178 * +
D15 14868.2979797705 * -
8711.6903030121 +
D15 is (A:TURB ENG1 JET THRUST, psf)
So the whole calculation is
(A:TURB ENG1 JET THRUST, psf) 4 pow 267.4242424238 * (A:TURB ENG1 JET THRUST, psf) 3 pow 2602.7777777738 * - (A:TURB ENG1 JET THRUST, psf) 2 pow 9399.5833333178 * + (A:TURB ENG1 JET THRUST, psf) 14868.2979797705 * - 8711.6903030121 +