summaryrefslogtreecommitdiff
path: root/3831/CH18/EX18.4/Ex18_4.sce
blob: 1250d6df0d86a900d71fbb48786ba54b03c474b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Example 18_4
clc;funcprot(0);
// Given data
T_in=500;// K
T_out=1200;// K
mdot=1.00;// kg/min
R_u=8.314;// kJ/(kgmole.K)

// Calculation
// For CC1_4,
b=5;// The number of atoms in the molecule
F=3*b;// The degrees of freedom per molecule
M=12.0+(4*(35.5));// kg/kgmole
R=R_u/M;// kJ/(kg.K)
c_p=(1+(F/2))*R;// kJ/(kg.K)
Qdot=mdot*c_p*(T_out-T_in);// kJ/min
printf("\nThe heat transfer rate required to heat low-pressure gaseous carbon tetrachloride,Qdot=%3.0f kJ/min",Qdot);