diff options
Diffstat (limited to '2510/CH14/EX14.11/Ex14_11.sce')
-rwxr-xr-x | 2510/CH14/EX14.11/Ex14_11.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/2510/CH14/EX14.11/Ex14_11.sce b/2510/CH14/EX14.11/Ex14_11.sce new file mode 100755 index 000000000..67476a79d --- /dev/null +++ b/2510/CH14/EX14.11/Ex14_11.sce @@ -0,0 +1,11 @@ +//Variable declaration: +Dx = 0.049/12.0 //Thickness of copper plate (ft) +h1 = 208.0 //Film coefficient of surface one (Btu/h.ft^2.°F) +h2 = 10.8 //Film coefficient of surface two (Btu/h.ft^2.°F) +k = 220.0 //Thermal conductivity for copper (W/m.K) + +//Calculation: +U = 1.0/(1.0/h1+Dx/k+1.0/h2) //Overall heat transfer coefficient (Btu/h.ft^2.°F) + +//Result: +printf("The overall heat transfer coefficient is : %.2f Btu/h.ft^2.°F.",U) |