Single ODE solved with ODE45

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 个评论

What is the original differential equation?
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.
Thanks for the comments, they are more than helpful. I have fixed the problems with the long computation time. The attached is the original ODE I used to do the excel plots, please let me know if anything can be done to produce the same graph as in excel. Once again, thank you very much.

请先登录,再进行评论。

回答(1 个)

David Goodmanson
David Goodmanson 2017-10-16
编辑:David Goodmanson 2017-10-19

0 个投票

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.

类别

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by