diff options
Diffstat (limited to '2969/CH4/EX4.27/Ex4_27.sce')
-rwxr-xr-x | 2969/CH4/EX4.27/Ex4_27.sce | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/2969/CH4/EX4.27/Ex4_27.sce b/2969/CH4/EX4.27/Ex4_27.sce new file mode 100755 index 000000000..0e4d3f75a --- /dev/null +++ b/2969/CH4/EX4.27/Ex4_27.sce @@ -0,0 +1,23 @@ +clc
+clear
+//DATA GIVEN
+p1=15; //pressure of steam sample in bar
+p3=1; //pressure of steam at exit in bar
+Tsup3=150+273; //temperature os steam at the exit in K
+Mw=0.5; //discharge from separating calorimeter in kg/min
+Ms=10; //discharge from throttling calorimeter in kg/min
+
+p2=p1;
+//At p1=p2=15 bar, from steam tables
+hf2=844.7; //in kJ/kg
+hfg2=1945.2; //in kJ/kg
+
+//At p3=1 bar and 150 deg. celsius, from steam tables
+hsup3=2776.4; //in kJ/kg
+
+//h2=h3.....hf2+x2*hgf2=hsup3
+x2=[hsup3-hf2]/hfg2; //dryness fraction x2
+
+x1=(x2*Ms)/(Mw+Ms); //quality of steam supplied, x1
+
+printf('The Quality of steam supplied, x1 is: %1.3f.',x1);
|