What is wrong in code of diffusion equation problem?

조회 수: 11 (최근 30일)
Attila Monteiro de Abreu
Attila Monteiro de Abreu 2016년 9월 17일
답변: Byron Castillo 2021년 1월 22일
a=4; b=4; na=20; nb=16; k=5; to=80;
clear T
x=linspace(0,a,na);
y=linspace(0,b,nb);
[X,Y]=meshgrid(x,y);
for i=1:nb
for j=1:na
T(i,j)=0;
For n=1:k
Ns=2*n-1;
T(i,j)=T(i,j)+sin(ns*pi*X(i,j)/a).*sinh(ns*pi*Y(i,j)/a)/(sinh(ns*pi*b/a)*ns);
End
T(i,j)=T(i,j)*4*To/pi;
End
End
Mesh(X,Y,T)
Xlabel(x (m));ylabel(y (m));zlabel(T(^oC))

채택된 답변

Walter Roberson
Walter Roberson 2016년 9월 18일
First of all you need to use for and end not For and End -- MATLAB is case sensitive.
Secondly, your line
Xlabel(x (m));ylabel(y (m));zlabel(T(^oC))
uses Unicode Character 'LEFT SINGLE QUOTATION MARK' (U+2018) and Unicode Character 'RIGHT SINGLE QUOTATION MARK' (U+2019) instead of apostrophe. U+2018 and U+2019 are also known as "smart quotes" because some editors automatically change apostrophes around words to these quotes because those quotes are used in publishing and writing text (but seldom in computer code.)
  댓글 수: 1
Attila Monteiro de Abreu
Attila Monteiro de Abreu 2016년 9월 18일
편집: Attila Monteiro de Abreu 2016년 9월 18일
Thank you so much brother!!! You help me in my work of conclusion of course in Engenering Mechanical! I'm really greatfull!!

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

추가 답변 (1개)

Byron Castillo
Byron Castillo 2021년 1월 22일
a=5; b=4; na=20; nb=16; k=5; T0=80;
clear T
x=linspace(0,a,na);
y=linspace(0,b,nb);
[X,Y]=meshgrid(x,y);
for i=1:nb
for j=1:na
T(i,j)=0;
for n=1:k
ns=2*n-1;
T(i,j)=T(i,j)+sin(ns*pi*X(i,j)/a).*sinh(ns*pi*Y(i,j)/
a)/(sinh(ns*pi*b/a)*ns);
end
T(i,j) = T(i,j)*4*T0/pi;
end
end
mesh(X,Y,T)
xlabel('x (m)'); ylabel('y (m)'); zlabel('T ( ^oC)')

카테고리

Help CenterFile Exchange에서 Physics에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by