mmm4444bot said:
For "Construction Time", I first converted all times to seconds, using the following.
Some of the times generated by this function are off by +1 second or -1 second. I hope that's not a critical error!
The "Output/h" and "Energy/h" data do not follow exponential growth, so I used a different regression.
Quartic Regression fits the data to a fourth-degree polynomial: y = a*x^4 + b*x^3 + c*x^2 + dx + e.
For "Output/h", we can round output using: output = 0.0293*Level^4 + 0.0121*Level^3 + 4.4716*Level^2 + 21.6857*Level + 0.9167
For "Energy/h", we can round energy using: energy = -0.0052*Level^4 + 0.0051*Level^3 - 0.7815*Level^2 - 3.5796*Level + 0.3333
Wow, thanks. It wasn't necessary to do the time, and therefore is not critcal to be exact. I, too, had the idea that the time would first need to be converted into seconds.
On the output and and energy equations, I had been toying with the applets functions, I might have even tried the formula you provided. To me, as I look at the answers given by the applets, I didn't get how to use them. I believe thats why I felt I was getting incomplete information. I think if I had seen an answer that read something like : a=0.0293, b=0.0121, etc, and the formula needed "y=a*x .... dx + e", I'd have understood the answer enough to use it.
I installed a 'Data Analysis' add-on to Excel and entered the output numbers and level while running the numbers through each of the applet's various regressions to find correllation that could make it easier to find the correct formula. Here's what that looked like:
SUMMARY OUTPUT
Regression Statistics
Multiple R 0.912200356
R Square 0.83210949
Adjusted R Square 0.822233577
Standard Error 818.4166139
Observations 19
ANOVA
df... SS... MS... F... Significance F
Regression... 1... 56435466.71... 56435466.71... 84.25646747... 5.35127E-08
Residual... 17... 11386697.82... 669805.7539...
Total... 18... 67822164.53
Coefficients... Standard Error... t Stat... P-value... Lower 95%... Upper 95%... Lower 95.0%... Upper 95.0%...
Intercept... -1382.736842... 390.8487122... -3.537780218... 0.002528187... -2207.356695... -558.116989... -2207.356695... -558.116989
Level... 314.6578947... 34.27969973... 9.179132174... 5.35127E-08... 242.3339492... 386.9818402... 242.3339492... 386.9818402
RESIDUAL OUTPUT...
Observation... Predicted Output /h... Residuals...
1... -1068.078947... 1095.078947... 1.376837813...
2... -753.4210526... 816.4210526... 1.026482501...
3... -438.7631579... 547.7631579... 0.688700144...
4... -124.1052632... 291.1052632... 0.366005332...
5... 190.5526316... 50.44736842... 0.063427248...
6... 505.2105263... -172.2105263... -0.216519517...
7... 819.8684211... -373.8684211... -0.470063077...
8... 1134.526316... -547.5263158... -0.688402363...
9... 1449.184211... -690.1842105... -0.86776549...
10... 1763.842105... -793.8421053... -0.998094092...
11... 2078.5... -850.5... -1.069329807...
12... 2393.157895... -853.1578947... -1.072671566...
13... 2707.815789... -788.8157895... -0.991774528...
14... 3022.473684... -645.4736842... -0.811551147...
15... 3337.131579... -408.1315789... -0.51314199...
16... 3651.789474... -58.78947368... -0.07391574...
17... 3966.447368... 423.5526316... 0.53253081...
18... 4281.105263... 1064.894737... 1.338887341...
19... 4595.763158... 1893.236842... 2.380358128...
PROBABILITY OUTPUT
Percentile... Output /h
2.631578947... 27
7.894736842... 63
13.15789474... 109
18.42105263... 167
23.68421053... 241
28.94736842... 333
34.21052632... 446
39.47368421... 587
44.73684211... 759
50... 970
55.26315789... 1228
60.52631579... 1540
65.78947368... 1919
71.05263158... 2377
76.31578947... 2929
81.57894737... 3593
86.84210526... 4390
92.10526316... 5346
97.36842105... 6489
Sorry, I haven't figured out a better way to display a table on this forum.
Anyway, as you can see, a lot of information is displayed, but no formula. Applets have formulas to use, and I was start to compare the answers to find 1 that had enough in common, to use in my spreadsheet. Am I just making it harder than it is? Or was I actually onto someting there? :?
Regardless, I do appreciate your help. I hope that is all the growth curves I'll need to calculate.