Energy Balance Differential Equation
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
What would be the best way to solve the equation as shown in the attached PDF please?
2 comentarios
darova
el 17 de En. de 2020
YOu have two undefined functions T and P but only one equation. SOmething is wrong
Respuestas (2)
Guru Mohanty
el 22 de En. de 2020
Hi, I understand you are trying to solve the equation. You can do this using dsolve. Here is a sample code.
clc;
clear all;
syms rho cp T(t) mn V Tin P(t) heff Tamb k
P=k*T; % Ideal Gas Equation
eqn= rho*cp*diff(T,1) + mn*cp*(T-Tin)/V - diff(P,1) + heff*(T-Tamb) ==0;
T_sol=dsolve(eqn);
disp(T_sol);
1 comentario
Nicola De Noni
el 22 de Ag. de 2022
cp*M*(dT/dt)= - U*A*(T-T_out(t))
In this energy balance I want to plot the temperature profile.
How can I manage the temperature T_out that changes in time?
Thanks!
Ver también
Categorías
Más información sobre Calculus en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!