How to solve second order partial differential equations ?
20 views (last 30 days)
Show older comments
I have set of equations which I need to solve using pdetool. I am attaching snapshot of equations. How can I solve these ?
0 Comments
Answers (2)
Bill Greene
on 9 Dec 2014
Edited: Bill Greene
on 10 Dec 2014
This problem is straightforward to solve using PDE Toolbox. I suggest you look at this example http://www.mathworks.com/help/pde/examples/heat-distribution-in-a-circular-cylindrical-rod.html for how to handle cylindrical geometry and this example for how to handle multiple layers http://www.mathworks.com/help/pde/examples/deflection-of-a-piezoelectric-actuator.html
You don't show any boundary conditions on the edges where x=constant. If those edges are insulated (i.e. your problem is really one-dimensional), you can use the pdepe function in core MATLAB. pdepe has an option to "automatically" handle the cylindrical coordinate system so it is particularly easy to use for this problem.
Bill
0 Comments
Torsten
on 9 Dec 2014
This is a multilayer problem with internal heat sources.
As far as I know, there is no ready-to-use pdetool to solve this kind of problem.
You will have to discretize your equations, boundary conditions and transition conditions between the layers in space and solve the resulting system of ordinary differential equations in time by an ODE integrator (ODE15s).
Best wishes
Torsten.
0 Comments
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!