ODE45 Code Application

2 views (last 30 days)
James
James on 1 Jun 2020
Commented: James on 1 Jun 2020
M = 100/6*pi*0.04^3; g=9.8; A=0.25*pi*0.04^2;
Re = @(U) 1.25*0.04*U/0.000015;
CD = @(Re) 24./Re+(2.6*Re/5)./(1+(Re/5).^1.52)+(0.411*(Re/263000).^(-7.94))./(1+(Re/263000).^(-8))+(0.25*Re/10^6)./(1+Re/10^6);
function Udot = Velocity(t,U)
Udot = g -(0.5*1.25*U^2*A*CD)/M;
[t,U]=ode45 (@Velocity, [0, 20], 0);
plot(t,U)
end
I'm in agony with this coding for 5hours..... I can solve easy function but it is very complicate function for me. I'm confused how to make up 'Re' 'CD' coding clearly.
Thanks for reading.. how could I get right plotting?

Accepted Answer

David Goodmanson
David Goodmanson on 1 Jun 2020
Edited: David Goodmanson on 1 Jun 2020
Hi James,
[t,U] = ode45(@Velocity, [0, 20], .001);
plot(t,U)
function Udot = Velocity(t,U)
M = 100/6*pi*0.04^3;
g=9.8;
A=0.25*pi*0.04^2;
Re = 1.25*0.04*U/0.000015;
CD = 24./Re+(2.6*Re/5)./(1+(Re/5).^1.52)+(0.411*(Re/263000).^(-7.94))./(1+(Re/263000).^(-8))+(0.25*Re/10^6)./(1+Re/10^6);
Udot = g -(0.5*1.25*U^2*A*CD)/M;
end
You need to get ode45 outside of the functon definition. And you can calculate Re and CD without defining functions for them. If you do define Re and CD as functions, then calculating CD would require using Re(U) everwhere instead of just Re, and similarly CD would have to supplied with an argument. Easier here to not do that.
I changed the initial value of U to .001 since the 24/Re term blows up if you use zero. Changing the initial value does not seem to make much difference as long as it's small.
  1 Comment
James
James on 1 Jun 2020
thank you so much!! you are so kind!! I understand my problem very well now I'm going to try another way. Thanks!!

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!