diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3831/CH16/EX16.3/Ex16_3.sce | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3831/CH16/EX16.3/Ex16_3.sce')
-rw-r--r-- | 3831/CH16/EX16.3/Ex16_3.sce | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/3831/CH16/EX16.3/Ex16_3.sce b/3831/CH16/EX16.3/Ex16_3.sce new file mode 100644 index 000000000..c18a212f8 --- /dev/null +++ b/3831/CH16/EX16.3/Ex16_3.sce @@ -0,0 +1,23 @@ +// Example 16_3
+clc;funcprot(0);
+// Given data
+p_1=14.7;// psia
+T_1=1000;// °F
+V_1=1612;// ft/s
+g_c=32.174;// lbm.ft/lbf.s^2
+
+// Calculation
+// Station 1
+p_1=14.7;// psia
+T_1=1000;// °F
+h_1=1534.4;// Btu/lbm
+s_1=2.1332;// Btu/lbm.R
+// Station os
+s_os=s_1;// Btu/lbm.R
+h_os=h_1+(V_1^2/(2*g_c));// Btu/lbm
+//Table C.3a, in Thermodynamic Tables to accompany Modern Engineering Thermodynamics a Mollier diagram for steam
+p_os=20.0;// psia
+T_os=1100;// °F
+v_os=46.4;// ft^3/lbm
+rho_os=1/v_os;// lbm/ft^3;
+printf("\nThe isentropic stagnation temperature,T_0=%4.0f°F \nThe isentropic stagnation pressure,p_os=%2.1f psia \nThe isentropic stagnation density,rho_os=%0.3f lbm/ft^3",T_os,p_os,rho_os);
|