Solving non-linear PDE

조회 수: 2 (최근 30일)
Nonlinear
Nonlinear 2017년 11월 29일
답변: Torsten 2017년 11월 29일
Hello everybody,
I am trying to solve a PDE which has the form:
dC/dt = (5+c)^2/{(5+c)^2+5}d2C/dx2
Can Matlab solve such a equation like that? If it can, how can I set it up?
I would appreciate for any help.
Thank you for your help in advance.

답변 (2개)

KSSV
KSSV 2017년 11월 29일
MATLAB can very much solve..anything......have a look on ode45.....if you want to solve it numerically.....have a look on dsolve if you want to solve it analytically..

Torsten
Torsten 2017년 11월 29일
Rewrite the equation as
[(5+c)^2/{(5+c)^2+5}]^(-1) * dC/dt = d^2C/dx^2
and use MATLAB's "pdepe".
Best wishes
Torsten.

카테고리

Help CenterFile Exchange에서 PDE Solvers에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!