diff options
Diffstat (limited to '2510/CH11/EX11.6/Ex11_6.sce')
-rwxr-xr-x | 2510/CH11/EX11.6/Ex11_6.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/2510/CH11/EX11.6/Ex11_6.sce b/2510/CH11/EX11.6/Ex11_6.sce new file mode 100755 index 000000000..46239f3ac --- /dev/null +++ b/2510/CH11/EX11.6/Ex11_6.sce @@ -0,0 +1,10 @@ +//Variable declaration: +T1 = 1200.0+460.0 //Absolute temperature of wall 1 (°R) +T2 = 800.0+460.0 //Absolute temperature of wall 2 (°R) + +//Calculation: +//From equation 11.23: +X = 0.173*((T1/100.0)**4-(T2/100.0)**4) //Heat removed from colder wall (Btu/h.ft^2) + +//Result: +printf("The heat removed from the colder wall to maintain a steady-state is : %.0f Btu/h.ft^2.",X) |