summaryrefslogtreecommitdiff
path: root/680/CH7/EX7.04/7_04.sce
blob: f3af164751134e06ce80a5eda5bac05520bfb853 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//Problem 7.04:

//initializing the variables:
mdt = 1200; // in lb/min
Cpav = 0.26; // in Btu/lbmol
T1 = 200; // in deg F
T2 = 1200; // in deg F

//calculation:
dT = T2 - T1
Q = mdt*Cpav*dT

printf("\n\nResult\n\n")
printf("\n the heat transfer rate is %.2E Btu/min",Q)