Solving PDE involving boundary condition with partial derivatives with respect to space and time.
5 ビュー (過去 30 日間)
古いコメントを表示
Dear all,
I am trying to solve the following PDE (one-dimension diffusion):

with the following boundary condition :

I read the documentation here : http://www.mathworks.com/help/matlab/math/partial-differential-equations.html?refresh=true#f1-697925 and I saw that it works for boundary conditions that can be expressed as :

I don't know how to express my boundary condition under this form, since it contains two partial derivatives. How to address this problem properly?
Thank you.
PS: I have quite a few libraries available, but not the PDE toolbox.
3 件のコメント
Cedric
2015 年 12 月 17 日
So your question is not how to fully solve your differential equation, but rather how to treat this kind of problems numerically with MATLAB?
採用された回答
Torsten
2015 年 12 月 18 日
編集済み: Torsten
2015 年 12 月 18 日
In principle, your boundary condition for C is
C|x=L = y*K_v
together with an ordinary differential equation for y that has to be solved simultaneously with your PDE
V*dy/dt = -D*A*dC/dx|x=L - Vdot*(y-y_in).
The solution of this ordinary differential equation is not possible within pdepe.
But it should be no problem to discretize the PDE in space and solve the resulting system of ordinary differential equations together with the ordinary differential equation for y using ODE15S, e.g. (method-of-lines).
Maybe you have access to COMSOL Multiphysics. With this program, you can easily couple the PDE with the above boundary ODE.
Best wishes
Torsten.
6 件のコメント
CHORFi Salah
2019 年 1 月 27 日
Hi Lei,
I'm facing a similar but more complicated problem, can you provide your code to couple the two equations.
Thanks in advance.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Boundary Conditions についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!




