フィルターのクリア

Heated-Rod Equation Recursive Question

1 回表示 (過去 30 日間)
AFD
AFD 2020 年 12 月 5 日
回答済み: Shadaab Siddiqie 2020 年 12 月 9 日
investigating the heat rod function.
Length = 50 cm uniform intiial temperature u0 = 100dC and thermal diffusivity k = 0.15. I was given the following code in the text, and it is fine until I put x into the sine term.
it says my error is in line 8. I know it is the x.
How can I get the correct input arguements? Also how would I get the graphs of u(x, 30) abd u(25,t)?

採用された回答

Shadaab Siddiqie
Shadaab Siddiqie 2020 年 12 月 9 日
It looks like you want to create function in a file and run it. Refere Create function in files for more information. Here is the code
function u = expand(x,t)
k = .15;
L = 50;
u0 = 100;
S = 0;
N= 50;
for n = 1:2:2*N+1
S = S + 1/n*exp((-n^2)*(pi^2)*k*t/(L^2))*sin((n*pi*x)/L);
end
u=(4*u0*S)/pi;
end
To plot you can run
a1 = expand(1:30,30);
a2 = expand(25,1:30);
plot(a1);
plot(a2);
from the command line or from another file.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeGraphics Object Properties についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by