Solving an ordinary differential equation.

1 visualización (últimos 30 días)
John Rettig
John Rettig el 20 de Oct. de 2021
Editada: John Rettig el 20 de Oct. de 2021
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.

Respuesta aceptada

Walter Roberson
Walter Roberson el 20 de Oct. de 2021
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 = 

Más respuestas (0)

Categorías

Más información sobre Ordinary Differential Equations en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by