Solving an ODE numerically .. What is the problem in my code?

6 ビュー (過去 30 日間)
Esraa Abdelkhaleq
Esraa Abdelkhaleq 2016 年 8 月 21 日
コメント済み: Torsten 2016 年 8 月 22 日
Hello,
I want to solve this ODE numerically..
dq_pl/dt=f_plc*R_c*N_c0*exp(K_gr*t)+f_plh*R_h*N_h0-K_el*q_pl(t).
Where the letters following the underscore signs are subscripts, the parameters values are:
fplc=0.1 ; Rc=4.5*10^-5 ; Nc0=1 ; Kgr= 5.78*10^-3 ; fplh*Rh*Nh=4.56*10^3 ; Kel= 0.11 ;
tspan = [0 10^10] , qpl0 = 0
I wrote:
function [t,qpl] = call_dstate()
tspan = [0 10^10]; % set time interval
qpl0 = 0; % set initial condition
% dstate evaluates r.h.s. of the ode
[t,qpl] = ode45( @dstate ,tspan ,qpl0);
plot(t,qpl)
disp([t,qpl]) % displays t and qpl(t)
function dqpldt = dstate (t,qpl)
fplc=0.1 ; Rc=4.5*10^-5 ; Nc0=1 ; Kgr= 5.78*10^-3 ; fplh*Rh*Nh=4.56*10^3 ; Kel= 0.11 ;
dqpldt=fplc*Rc*Nc0*exp(Kgr*t)+fplh*Rh*Nh0-Kel*qpl;
end
end
Thanks in advance.
  2 件のコメント
John D'Errico
John D'Errico 2016 年 8 月 21 日
Why do you think there is a problem? Did an error occur?
Esraa Abdelkhaleq
Esraa Abdelkhaleq 2016 年 8 月 22 日
編集済み: Esraa Abdelkhaleq 2016 年 8 月 22 日
yes, the error appears as:
Error: Unexpected MATLAB expression.

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

採用された回答

Torsten
Torsten 2016 年 8 月 22 日
Use fplh_Rh_Nh instead of fplh*Rh*Nh:
fplh_Rh_Nh = 4.56e3;
...
dqpldt=fplc*Rc*Nc0*exp(Kgr*t)+fplh_Rh_Nh0-Kel*qpl
Best wishes
Torsten.
  2 件のコメント
Esraa Abdelkhaleq
Esraa Abdelkhaleq 2016 年 8 月 22 日
編集済み: Esraa Abdelkhaleq 2016 年 8 月 22 日
Dear Torsten,
Thanks a lot.
I did what you said but the same error appeared !
May I have a problem in the version itself? how can I check that everything is OK in the version? I use 2008a version.
Torsten
Torsten 2016 年 8 月 22 日
Use
dqpldt=fplc*Rc*Nc0*exp(Kgr*t)+fplh_Rh_Nh-Kel*qpl
Best wishes
Torsten.

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

その他の回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by