summaryrefslogtreecommitdiff
path: root/2510/CH13/EX13.2/Ex13_2.sce
blob: 6f44f747d068537fa8b85606cefce2e7485b9722 (plain)
1
2
3
4
5
6
7
8
9
10
11
//Variable declaration:
LR = 7.5/12.0                           //Thickness of refractory (ft)
kR = 0.75                               //Thermal conductivity of refractory
TR = 2000.0                             //Average surface temperature of the inner face of the refractory (°F)
Q = 450.0                               //Heat loss (Btu/h.ft^2)

//Calculation:
TI = TR - Q*(LR/kR)                     //Temperature of the boundary where the refractory meets the insulation (°F)

//Result:
printf("The temperature of the boundary where the refractory meets the insulation is : %.0f °F .",TI)