How to solve for T2? it is giving an error when I try solve

1 次查看(过去 30 天)
clear all
%%Calculate Benzene Duty Q
%From Perry's table 2-153 values for Benzene
C1_b = 162940; %in J/kmol*K
C2_b = -344.94; %in J/kmol*K^2
C3_b = 0.85562; %in J/kmol*K^3
funcCp_b = @(T) (C1_b) + (C2_b*T) + (C3_b*T.^2);
Cp_b = integral(funcCp_b, 379.25, 286.15)
Q_b = (281.4749/3600) * Cp_b; %in W
%------------------------------------
%%Solve an energy balance to find outlet temp of cumene
%syms T2
%TempCumene = vpasolve ((((281.4749/3600)*Cp_b)*(T2-414.95) = Q_b),T2) %temp for cumene outlet in K

采纳的回答

madhan ravi
madhan ravi 2020-2-22
syms T2
TempCumene = vpasolve ((((281.4749/3600)*Cp_b)*(T2-414.95) == Q_b),T2) %temp for cumene outlet in K

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Formula Manipulation and Simplification 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by