Writing PDE boundary conditions

9 ビュー (過去 30 日間)
Ece Kurt
Ece Kurt 2020 年 1 月 22 日
回答済み: Josh Meyer 2020 年 1 月 30 日
image.png
How can I insert these boundary conditions into the pdepe solver. ?

回答 (1 件)

Josh Meyer
Josh Meyer 2020 年 1 月 30 日
pdepe expects the boundary conditions to be written in a standardized form:
Notice that only p can depend on the variable being integrated u, and the boundary conditions are written in terms of the flux term f rather than the partial derivative du/dx (the flux term generally includes this partial derivative). The flux term f is defined when you write the main pdefun function for the equations.
Once you write the left and right boundary conditions in this form, the coefficients p, q are coded into a function. The function uses the signature
function [pL,qL,pR,qR] = bcfun(xL,uL,xR,uR,t)
Notice that there is affordance for p,q on the left (pL and qL) as well as the right (pR and qR) boundaries. Similarly, there are separate input variables for x and u on the left and right. The location of the left and right boundaries is inferred from the specified meshes for x and t being solved on.
The process is described here:

カテゴリ

Help Center および File Exchange1-D Partial Differential Equations についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by