diff options
Diffstat (limited to '2417/CH5/EX5.5/Ex5_5.sce')
-rwxr-xr-x | 2417/CH5/EX5.5/Ex5_5.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/2417/CH5/EX5.5/Ex5_5.sce b/2417/CH5/EX5.5/Ex5_5.sce new file mode 100755 index 000000000..781cd9fad --- /dev/null +++ b/2417/CH5/EX5.5/Ex5_5.sce @@ -0,0 +1,16 @@ +//scilab 5.4.1
+clear;
+clc;
+printf("\t\t\tProblem Number 5.5\n\n\n");
+// Chapter 5 : Properties Of Liquids And Gases
+// Problem 5.5 (page no. 190)
+// Solution
+
+//From table 2 at 1.0 MPa,
+p=1000; //Unit:kN/m^2 //absolute pressure
+ufg=1822.0; //Unit:kJ/kg //Evap. internal energy
+vf=0.0011273; //Unit:m^3/kg //Saturated liquid specific volume
+vg=0.19444; //Unit:m^3/kg //Saturated vapour specific volume
+vfg=vg-vf; //Evap. specific volume //m^3/kg
+hfg=ufg+(p*vfg); //Evap. Enthalpy //Unit:kJ/kg
+printf("hfg for saturated steam at 1.0 MPa is %f kJ/kg",hfg); //The tabulated values are matched
|