How do I solve 'Not enough input arguments'

조회 수: 16 (최근 30일)
Khili Khamesra
Khili Khamesra 2018년 2월 27일
편집: Stephen23 2018년 2월 28일
This is my code for solving the fick's equation. I am unsure as to what is my mistake. Any help is appreciated.
m=1;
xspan=linspace(0,30,300);
tspan=linspace(0,10,100);
sol=pdepe(m,pdefun,pdeinc,pdebound,xspan,tspan);
surf(xspan,tspan,u);
function [c,f,s]=pdefun(x,t,u,dudx)
c=1;
f=(0.02).* dudx ;
s=1;
end
function [uo]=pdeinc(~)
uo=1;
end
function [pl,ql,pr,qr] = pdebound(~,~,~,~,~)
pl=0;
ql=1;
pr=0;
qr=0;
end
I am getting the following error
Not enough input arguments.
Error in partialtrial>pdefun (line 14)
f=(0.02).* dudx ;
Error in partialtrial (line 9)
sol=pdepe(m,pdefun,pdeinc,pdebound,xspan,tspan);

답변 (1개)

Walter Roberson
Walter Roberson 2018년 2월 27일
sol=pdepe(m,@pdefun,@pdeinc,@pdebound,xspan,tspan);
  댓글 수: 1
Khili Khamesra
Khili Khamesra 2018년 2월 28일
Now I am receiving this error-
Error using pdepe (line 293) Spatial discretization has failed. Discretization supports only parabolic and elliptic equations, with flux term involving spatial derivative.
Error in partialtrial (line 9) sol=pdepe(m,@pdefun,@pdeinc,@pdebound,xspan,tspan);
the equation is clearly parabolic, what can be my mistake?

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Mathematics and Optimization에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by