Solving an ordinary differential equation.

2 次查看(过去 30 天)
plot ode: d^2T/dx^2 - (h/(k*t))*(T1-T0) + q/(k*t)
h=10, k=60, t=0.01, T0=10, T1=10, q=800.

采纳的回答

Walter Roberson
Walter Roberson 2021-10-20
Q = @(v) sym(v);
h = Q(10);
k = Q(60);
t = Q(0.01);
T0 = Q(10);
T1 = Q(10);
q = Q(800);
syms T(x)
dT = diff(T);
d2T = diff(dT);
eqn = d2T - (h/(k*t)) * (T0-T1) + q/(k*t)
eqn(x) = 
dsolve(eqn)
ans = 

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Ordinary Differential Equations 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by