diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /2969/CH4/EX4.26 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '2969/CH4/EX4.26')
-rwxr-xr-x | 2969/CH4/EX4.26/Ex4_26.sce | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/2969/CH4/EX4.26/Ex4_26.sce b/2969/CH4/EX4.26/Ex4_26.sce new file mode 100755 index 000000000..5a05ac260 --- /dev/null +++ b/2969/CH4/EX4.26/Ex4_26.sce @@ -0,0 +1,27 @@ +clc
+clear
+//DATA GIVEN
+Mw=2; //mass of water separated out in kg
+Ms=20.5; //amount of steam (condensate) discharged from throttling calorimeter in kg
+Tsup3=110+273; //temp. of steam afetr throttling in K
+p1=12; //initial pressure of steam in bar
+p3=(760+5)/1000*1.3366; //final pressure of steam in bar (1 mm of Hg=1.3366 bar)
+Cps=2.1; //kJ/kgK
+
+p2=p1;
+//At p1=p2=12 bar, from steam tables
+hf2=798.4; //in kJ/kg
+hfg2=1984.3; //in kJ/kg
+
+//At p3=1 bar, from steam tables
+Ts3=99.6+273; //in K
+Tsup3=110+273; //in K
+hf3=417.5; //in kJ/kg
+hfg3=2257.9; //in kJ/kg
+
+//h2=h3.....hf2+x2*hgf2=hf3+hfg3+Cps(Tsup3-Ts3)
+x2=[hf3+hfg3+Cps*(Tsup3-Ts3)-hf2]/hfg2; //dryness fraction x2
+
+x1=(x2*Ms)/(Mw+Ms); //dryness fraction of steam supplied, x1
+
+printf('The Quality of steam supplied, x1 is: %1.2f.',x1);
|