ODE45 Code Application

3 次查看(过去 30 天)
James
James 2020-6-1
评论: James 2020-6-1
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?

采纳的回答

David Goodmanson
David Goodmanson 2020-6-1
编辑:David Goodmanson 2020-6-1
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 个评论
James
James 2020-6-1
thank you so much!! you are so kind!! I understand my problem very well now I'm going to try another way. Thanks!!

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Ordinary Differential Equations 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by