Boundary conditions Partial differential equations
1 次查看(过去 30 天)
显示 更早的评论
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 个评论
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Oceanography and Hydrology 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!