Boundary conditions Partial differential equations

1 回表示 (過去 30 日間)
jacob Mitch
jacob Mitch 2019 年 11 月 15 日
I'm trying to set boundary conditions according to https://uk.mathworks.com/help/matlab/ref/pdepe.html
I have boundary conditions u(0,t)x = 0 and u(1,t) = 0. and initial conditions u(x,0) = u0(x) = −cos 2pix on the interval 0 ≤ x ≤ 1
So far I have created for the heat equation
function u0=heatic(x)
u0= -cos(2*pi*x);
I am now trying to create
function [pl,ql,pr,qr] = heatbc(xl,ul,xr,ur,t)
pl = %...
ql = %...
pr = %...
qr = %...
end
for the initial conditions but I dont understand how to plug in the boundary conditions for pl ql pr and qr.
Any help would be really appreciated.

回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by