Set initial condition to time different to 0
古いコメントを表示
Hello,
I want to solve in matlab an ODE of second order for a problem of thermal diffusion, I need to set my temperrrature as boundary conditions at x=0 and at x=0,5 (or T'=0 at x=0,25).
How can I set my code?
I try to use ode45 but the problem is the initial conditions request are only for x=0.
this is my code
k=20;
Tw=25+273.15;
s=50*10^-2
sigma0=10^5;
b=0.01;
funz=@(x,T) [T(2); -sigma0*(1-b*(T(1)-Tw))/k];
tspan=[0 s];
y0=[Tw ????]
[x1,T1]=ode45(funz,tspan,y0)
回答 (2 件)
Cris LaPierre
2022 年 11 月 4 日
編集済み: Cris LaPierre
2022 年 11 月 4 日
0 投票
Torsten
2022 年 11 月 4 日
0 投票
This is a boundary value problem, not an initial value problem.
Thus you should use bvp4c instead of ode45.
カテゴリ
ヘルプ センター および File Exchange で Ordinary Differential Equations についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!