Solving PDE involving boundary condition with partial derivatives with respect to space and time.
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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 commentaires
Cedric
le 17 Déc 2015
So your question is not how to fully solve your differential equation, but rather how to treat this kind of problems numerically with MATLAB?
Réponse acceptée
Torsten
le 18 Déc 2015
Modifié(e) : Torsten
le 18 Déc 2015
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 commentaires
CHORFi Salah
le 27 Jan 2019
Hi Lei,
I'm facing a similar but more complicated problem, can you provide your code to couple the two equations.
Thanks in advance.
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Boundary Conditions dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!




