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 /3843/CH6/EX6.5 | |
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 '3843/CH6/EX6.5')
-rw-r--r-- | 3843/CH6/EX6.5/Ex6_5.sce | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/3843/CH6/EX6.5/Ex6_5.sce b/3843/CH6/EX6.5/Ex6_5.sce new file mode 100644 index 000000000..84245b01b --- /dev/null +++ b/3843/CH6/EX6.5/Ex6_5.sce @@ -0,0 +1,26 @@ +// Example 6_5
+clc;funcprot(0);
+// Given data
+P_1=100;// The initial pressure in psia
+T_1=600;// The initial temperature in °F
+P_2=10;// The final pressure in psia
+
+// Calculation
+// From steam tables
+v_2=6.216;// ft^3/lbm
+v_1=v_2;// ft^3/lbm
+v_f2=0.0166;// ft^3/lbm
+v_g2=38.42;// ft^3/lbm
+x=(v_2-v_f2)/(v_g2-v_f2);// The quality of steam
+// From steam tables
+s_f2=0.2836;// Btu/lbm-°R
+s_fg2=1.5041;// Btu/lbm-°R
+s_1=1.7582;// Btu/lbm-°R
+s_2=s_f2+(x*s_fg2);// Btu/lbm-°R
+dels=s_2-s_1;// Btu/lbm-°R
+u_f2=161.2;// Btu/lbm
+u_fg2=911.01;// Btu/lbm
+u_1=1214.2;// Btu/lbm
+q=[u_f2+(x*u_fg2)]-u_1;// Btu/lbm
+printf("\nThe entropy change,dels=%1.3f Btu/lbm-°R \nThe heat transfer,q=%3.0f Btu/lbm",dels,q);
+
|