Solve parabolic coupled PDE's using MATLAB's pdepe solver?

10 ビュー (過去 30 日間)
Jacob
Jacob 2014 年 6 月 5 日
コメント済み: asim asrar 2018 年 7 月 9 日
0
down vote
favorite
I know that this question may seem simple to some of you, but I'm wondering if MATLAB's pdepe tool can solve a coupled system of parabolic pde's? The general form is:
d(u1)/dt = d2(u1)/x2 - d2(u2)/x2 d(u2)/dt = d2(u2)/x2 - d2(u1)/x2
More specifically, how does the DuDx command work in the pdepe tool? Can I enter an array for the coefficients of the b function and will it know that the second column coefficient corresponds to u2?
Thanks in advance for your time! Jacob

採用された回答

Bill Greene
Bill Greene 2014 年 6 月 5 日
Yes, pdepe can definitely solve systems of pde. In general, the u argument to the functions you define has as many rows as there are pde in the system.
I'm not sure what you mean by the "b function." Do you mean the bcfun (4th argument to pdepe)? If so, the two arguments, ul and ur have as many rows as there are pde.
Example 2 on the pdepe documentation page here:
shows a two-equation system.
Bill
  1 件のコメント
Jacob
Jacob 2014 年 6 月 5 日
Bill, Thanks for the response! I've reviewed the example 2, but still have a question. I know this may be basic for you and I really appreciate your help!
In example 2,
f = [0.024; 0.17] .* DuDx
If I'm understanding correctly, DuDx refers to Du1dx for the first row, and Du2dx for the second row. But in my example, I have pde's include both Du1Dx and Du2Dx in each equation.
Do you know how to incorporate both into the pdepd function? Again, I'm sure this question is basic for you and I greatly appreciate your help ! Thanks

サインインしてコメントする。

その他の回答 (2 件)

Jacob
Jacob 2014 年 6 月 5 日
Bill, Thanks for the response! I've reviewed the example 2, but still have a question. I know this may be basic for you and I really appreciate your help!
In example 2,
f = [0.024; 0.17] .* DuDx
If I'm understanding correctly, DuDx refers to Du1dx for the first row, and Du2dx for the second row. But in my example, I have pde's include both Du1Dx and Du2Dx in each equation.
Do you know how to incorporate both into the pdepd function? Again, I'm sure this question is basic for you and I greatly appreciate your help ! Thanks
  6 件のコメント
Aditi
Aditi 2017 年 6 月 14 日
I have a similar question. Can we solve a system of nonlinear parabolic partial differential equations using pde toolbox in matlab?
Ravi Kumar
Ravi Kumar 2017 年 6 月 14 日
In general, PDE Toolbox supports solution of coupled nonlinear parabolic equations. It is difficult to comment if your specific PDEs can be be solved, without seeing the equations.

サインインしてコメントする。


asim asrar
asim asrar 2018 年 7 月 9 日
i have a system of coupled wave equations given in attachment , which are varying in time and space simultaneously , can the equations be solved using pdepe command ( equations are given in attachment)
  4 件のコメント
Torsten
Torsten 2018 年 7 月 9 日
編集済み: Torsten 2018 年 7 月 9 日
Use the Method-of-Characteristics or the Method-of-Lines.
Best wishes
Torsten.
asim asrar
asim asrar 2018 年 7 月 9 日
can u share some similar examples with two variables varying simultaneously using method of lines or method of characteristics.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeEigenvalue Problems についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by