diff options
Diffstat (limited to '2510/CH19/EX19.4/Ex19_4.sce')
-rwxr-xr-x | 2510/CH19/EX19.4/Ex19_4.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/2510/CH19/EX19.4/Ex19_4.sce b/2510/CH19/EX19.4/Ex19_4.sce new file mode 100755 index 000000000..0fd234072 --- /dev/null +++ b/2510/CH19/EX19.4/Ex19_4.sce @@ -0,0 +1,12 @@ +//Variable declaration: +k = 0.022 //Thermal conductivity of glass wool (Btu/h.ft. F) +T1 = 400 //Inside wall temperature ( F) +T2 = 25 //Outside wall temperature ( C) +L = 3/12 //Length of insulation cover (ft) + +//Calculation: +T_2 = T2*(9/5)+32 //Outside wall temperature in fahrenheit scale ( F) +QbyA = k*(T1-T_2)/L //Heat flux across the wall (Btu/h.ft^2) + +//Result: +printf("The heat flux across the wall is : %.1f Btu/h.ft^2 .",QbyA) |