Boundary conditions for PDE
3 views (last 30 days)
Show older comments
Hello, I'm trying to solve the PDE equation for function v(t,s), the boundary conditions are lim(v(t,s))=0 s->Infitity DvDs(t,0)=0
I wrote the function for these conditions to call it in pdepe, but it doesn't work Matlab writes that variable DvDs(DvlDsv) is undefined and "Undefined function 'limit' for input arguments of type 'double'."
function [ pl,ql,pr,qr ] = bc1( sl,vl,sr,vr,t )
%bc1 Bounrary conditions
pr=DvDs; % or DvrDsr
qr=0;
pl=limit(vr,sr=infinity);
ql=0;
end
I will be glad if you give me some advice for this problem, thanks.
0 Comments
Answers (0)
See Also
Categories
Find more on Boundary Conditions in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!