Need Help Solving Two Coupled ODEs

2 ビュー (過去 30 日間)
Alyssa Garreau
Alyssa Garreau 2021 年 4 月 28 日
コメント済み: Alyssa Garreau 2021 年 4 月 29 日
Hi I am trying to solve two coupled ODEs simultaneously.
My equations are:
dT1/dz = -U*a1/(p1*q1*Cp1*L)*(T1 - T2) - Q*a1/(p1*Cp1)
dT2/dz = U*a2/(p2*Cp2*q2*L)*(T1 - T2)
I have tried programming Matlab in several different ways this is the code for the one I think I am the closest to solving.
function [z, T] = Term_project2
U= 280;
a=2*.45*3.14159;
p1= 0.5;
L= 8000;
Cp1= 10;
Q=284;
p2= 1;
Cp2= 15;
q1= 0.5;
q2= 1;
zspan=[0:40];
T0= [12 5];
dT(1) = -(U*a)/(L*p1*Cp1*q1)*(T1(z)-T2(z))-Q/(p1*Cp1);
dT(2) = (U*a)/(L*p2*Cp2*q2)*(T1(z)-T2(z))-Q/(p2*Cp2);
[z,T]= ode45(Term_project2(z,p1,p2,q1,q2,U,Q,Cp1,Cp2L),zspan,T0);
plot(z,T1(:,1),'-o',z,T2(:,2),'-.')
end
Errors: Unrecognized function or variable 't'.
Which doesn't make sense since I don't have t.

採用された回答

James Tursa
James Tursa 2021 年 4 月 29 日
編集済み: James Tursa 2021 年 4 月 29 日
The derivative function needs to have the input arguments specified. In your current code above, you have no inputs specified.
For the ode45 call, you need to pass a function handle that has only two inputs, the independent variable and the current state.
So your derivative function should look something like this:
function dTdz = Term_project2(z,T,p1,p2,q1,q2,U,Q,Cp1,Cp2L) % pass in all needed inputs
dTdz(1,1) = -(U*a)/(L*p1*Cp1*q1)*(T(1)-T(2))-Q/(p1*Cp1); % use T(1) and T(2) for T1 and T2
dTdz(2,1) = (U*a)/(L*p2*Cp2*q2)*(T(1)-T(2))-Q/(p2*Cp2);
end
And your calling code should look something like this:
U= 280;
a=2*.45*3.14159;
p1= 0.5;
L= 8000;
Cp1= 10;
Q=284;
p2= 1;
Cp2= 15;
q1= 0.5;
q2= 1;
zspan=[0:40];
T0= [12 5];
% 1st argument to ode45 below needs to be a function handle
% that takes z and T as inputs
[z,T]= ode45(@(z,T)Term_project2(z,T,p1,p2,q1,q2,U,Q,Cp1,Cp2L),zspan,T0);
plot(z,T(:,1),'-o',z,T(:,2),'-.')
  3 件のコメント
James Tursa
James Tursa 2021 年 4 月 29 日
You still have all your code mixed together. The function needs to be only the four lines I have written above. Nothing else. You could put that in a file called Term_project_soln.m
Then have your other code in a separate script file that sets the constants, calls ode45, and does the plotting.
Alyssa Garreau
Alyssa Garreau 2021 年 4 月 29 日
Thank you.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeNumerical Integration and Differential Equations についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by