diff options
Diffstat (limited to '3831/CH6/EX6.1')
-rw-r--r-- | 3831/CH6/EX6.1/Ex6_1.sce | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/3831/CH6/EX6.1/Ex6_1.sce b/3831/CH6/EX6.1/Ex6_1.sce new file mode 100644 index 000000000..b8fa4fa12 --- /dev/null +++ b/3831/CH6/EX6.1/Ex6_1.sce @@ -0,0 +1,22 @@ +// Example 6_1
+clc;funcprot(0);
+// Given data
+V=300;// ft/s
+D=6/12;// ft
+R=D/2;// ft
+Z=15;// ft
+g=32.174;// ft/s^2
+g_c=32.174;// lbm.ft/lbf.s^2
+
+// Calculation
+// From the superheated steam table, Table C.3a in Thermodynamic Tables to accompany Modern Engineering Thermodynamics, we find that, at 100. psia and 500.°F,
+v=5.587;// ft^3/lbm
+h=1279.1;// Btu/lbm
+A=%pi*(3/12)^2;// ft^2
+mdot=(A*V)/v;// lbm/s
+ke=(V^2)/(2*g_c);// ft.lbf/lbm
+ke=ke*(1/778.16);// Btu/lbm
+pe=(g*Z)/g_c;// // ft.lbf/lbm
+pe=pe*(1/778.16);// Btu/lbm
+E_mf=-[mdot*(h+ke+pe)];// Btu/s
+printf("\nThe mass flow energy transport rate of steam,E_mass flow=%1.2e Btu/s",E_mf);
|