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 /1244/CH9/EX9.15 | |
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 '1244/CH9/EX9.15')
-rwxr-xr-x | 1244/CH9/EX9.15/Example915.sce | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/1244/CH9/EX9.15/Example915.sce b/1244/CH9/EX9.15/Example915.sce new file mode 100755 index 000000000..a8c4ee0ca --- /dev/null +++ b/1244/CH9/EX9.15/Example915.sce @@ -0,0 +1,48 @@ +
+
+// Display mode
+mode(0);
+
+// Display warning for floating point exception
+ieee(1);
+
+clc;
+disp("Principles of Heat Transfer, 7th Ed. Frank Kreith et. al Chapter - 9 Example # 9.15 ")
+
+//Temperature in degree K
+T = 800;
+//Diameter of sphere in m
+D = 0.4;
+//Partial pressure of nitrogen in atm
+PN2 = 1;
+//Partial pressure of H2O in atm
+PH2O = 0.4;
+//Partial pressure of CO2 in atm
+PCO2 = 0.6;
+
+//The mean beam length for a spherical mass of gas is obtained from Table 9.7
+//Beam length in m
+L = (2/3)*D;
+
+//The emissivities are given in Figs. 9.46 and 9.47
+//Emissivity of H2O
+epsilonH2O = 0.15;
+//Emissivity of CO2
+epsilonCO2 = 0.125;
+
+//N2 does not radiate appreciably at 800 K, but since the total gas pressure
+//is 2 atm, we must correct the 1-atm values for epsilon.
+//From Figs. 9.48 and 9.49 the pressure correction factors are
+//Pressure correction factor for H2O
+CH2O = 1.62;
+//Pressure correction factor for CO2
+CCO2 = 1.12;
+
+//From fig. 9.50
+//Chnage in emissivity
+deltaEpsilon = 0.014;
+
+//Finally, the emissivity of the mixture can be obtained from Eq. (9.114):
+disp("Emissivity of the mixture is")
+//Emissivity of the mixture
+epsilonMix = CH2O*epsilonH2O+CCO2*epsilonCO2-deltaEpsilon
|