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 /2339/CH4/EX4.29.1/Ex4_29.sce | |
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 '2339/CH4/EX4.29.1/Ex4_29.sce')
-rwxr-xr-x | 2339/CH4/EX4.29.1/Ex4_29.sce | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/2339/CH4/EX4.29.1/Ex4_29.sce b/2339/CH4/EX4.29.1/Ex4_29.sce new file mode 100755 index 000000000..c1c5ae46c --- /dev/null +++ b/2339/CH4/EX4.29.1/Ex4_29.sce @@ -0,0 +1,26 @@ +clc
+clear
+
+//Combined seperating and throttling calorimeter
+Ms=5; //in kg
+Mw=0.5; //in kg
+Cps=2.1; //in kJ/kg K
+Man=166.8; //in mm of Hg
+Bar=733.6; //in mm of Hg
+
+x1=Ms/(Ms+Mw);
+P=Man+Bar;
+P_bar=(1.01325*P)/760; //Pressure in bar
+
+//From steam table
+Hf1=742.8; //in kJ/kg
+Hfg1=2031.1; //in kJ/kg
+Tsat=104.8+273; //in K
+Tsup=110.3+273; //in K
+Hg=2683.5; //in kJ/kg
+
+H2=Hg+(Cps*(Tsup-Tsat));
+x2=(H2-Hf1)/Hfg1;
+x=x1*x2;
+printf('The dryness fraction of steam: %2.3f',x);
+printf('\n');
|