Single ODE solved with ODE45
Ältere Kommentare anzeigen
wspan = 0:0.01:10000;
x0 = 0;
[w,x] = ode45(@(w,x) (0.012528*(1-(9.8*10^(-5)*w))*(1.5-x)*(1-x))/(45*(1+16.68...
*(1-(9.8*10^(-5)*w))^(0.5)*x+12.456*(1-(9.8*10^(-5)*w))^(0.5)*(1-x))),wspan, x0);
plot(w,x,'-o');
I wrote the simple code above with the hope to replicate a graph that I obtained from excel. However, the range of x on the vertical axis in the MATLAB plot are way smaller than what I've expected. Could someone please explain to me how to fix it such that it matches my excel plot. (the excel plot is proven to be correct) Thanks, much appreciated. Attached (Excel Plot & MATLAB Plot)
3 Kommentare
Star Strider
am 14 Okt. 2017
What is the original differential equation?
Jan
am 14 Okt. 2017
Note: 9.8*10^(-5) is a multiplication and an expensive power operation in every call of the function, while 9.8e-5 is a cheap constant. SQRT(x) is much faster than x^0.5. Runtime is not your problem here, but it is worth to keep this in mind.
Star Strider's idea is obviously right: If the output by Excel is proven to be correct, and the Matlab code does not produce the same result, the Matlab code contains a different formula. We cannot fix it without seeing the correct formula.
Michelle Zhou
am 16 Okt. 2017
Antworten (1)
David Goodmanson
am 16 Okt. 2017
Bearbeitet: David Goodmanson
am 19 Okt. 2017
0 Stimmen
Hi Michelle,
Looks like your constant of .012528 is off by a factor of 10, should be .12528. Once that change is made, there is good agreement with the excel plot.
Kategorien
Mehr zu Ordinary Differential Equations finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!