diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /2510/CH11/EX11.16 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '2510/CH11/EX11.16')
-rwxr-xr-x | 2510/CH11/EX11.16/Ex11_16.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/2510/CH11/EX11.16/Ex11_16.sce b/2510/CH11/EX11.16/Ex11_16.sce new file mode 100755 index 000000000..9b7dbbfec --- /dev/null +++ b/2510/CH11/EX11.16/Ex11_16.sce @@ -0,0 +1,15 @@ +//Variable declaration: +FV = 1.0 //Correction factor +//From example 11.9: +FE = 0.358 //Emissivity correction factor +TH = 300.0+460.0 //Absolute temperature of external surface (°R) +TC = 75.0+460.0 //Absolute temperature of duct (°R) +AH = 0.622 //Area of pipe (ft^2) +s = 0.173*10**-8 //Stefan-Boltzmann constant + +//Calculation: +Q = FV*FE*AH*s*(TH**4-TC**4) //Heat transfer rate (Btu/h.ft) + +//Result: +printf("The heat transfer rate is : %.2f Btu/h.ft",Q) +printf("Since, Q obtained in (11.9) is 96.96 Btu/h.ft, the solution does not match with book.") |