필터 지우기
필터 지우기

Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

i don't find where is the error plz help me

조회 수: 1 (최근 30일)
mouna
mouna 2011년 5월 2일
마감: Walter Roberson 2016년 1월 22일
hi,
this is my program but i don't find where is the error plz help me it's urgent. thanks for your help in advance.
function pdex
m = 0;
z = linspace(0,100,100);
t = linspace(0,5,5);
sol = pdepe(m,@pdexpde,@pdexic,@pdexbc,z,t);
C = sol(:,:,1);
figure;
plot(z,C(end,:));
% ----------------------------------------------------------
function [g,f,s] = pdexpde(z,t,C,DCDz);
rhos=0.55;
rhof=0.385;
epsilon=0.64;
u=0.05;
keq=23.53;
A=1+(((1-epsilon)/epsilon)*keq*(rhos/rhof));
B=u/epsilon;
g=A;
f=0;
s=(-B)*DCDz;
% ----------------------------------------------------------
function C0 = pdexic(z);
a=0.0015;
C0=a;
% ----------------------------------------------------------
function [pl,ql,pr,qr] = pdexbc(zl,Cl,zr,Cr,t)
pl = 0;
ql = 0;
pr = 0;
qr = 1;
  댓글 수: 2
Walter Roberson
Walter Roberson 2011년 5월 2일
Do we get a hint about what error you observe? An error message and an associated line?
Jan
Jan 2011년 5월 3일
If your question is any kind or "urgent", it would be a very good idea to explain anything about the problem.

답변 (0개)

이 질문은 마감되었습니다.

Community Treasure Hunt

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

Start Hunting!

Translated by