diff options
Diffstat (limited to '611/CH3/EX3.2/Chap3_Ex2_R1.sce')
-rwxr-xr-x | 611/CH3/EX3.2/Chap3_Ex2_R1.sce | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/611/CH3/EX3.2/Chap3_Ex2_R1.sce b/611/CH3/EX3.2/Chap3_Ex2_R1.sce new file mode 100755 index 000000000..e72ddfe92 --- /dev/null +++ b/611/CH3/EX3.2/Chap3_Ex2_R1.sce @@ -0,0 +1,21 @@ +// Y.V.C.Rao ,1997.Chemical Engineering Thermodynamics.Universities Press,Hyderabad,India.
+
+//Chapter-3,Example 2,Page 49
+//Title:Quality of wet steam
+//================================================================================================================
+clear
+clc
+
+//INPUT
+V=1.42;//specific volume of wet steam in m^3/kg
+T=100;//temperature of wet steam in degree celsius
+vf=0.0010437;//molar volume of saturated liquid in m^3/kg
+vg=1.673;//molar volume of saturated vapour in m^3/kg
+
+//CALCULATION
+X=(V-vf)/(vg-vf);//calculation of the quality of wet steam using Eq.(3.3) (no unit)
+
+//OUTPUT
+mprintf('\n The quality of wet steam= %0.4f \n',X);
+
+//===============================================END OF PROGRAM===================================================
|