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 /2120/CH9/EX9.10 | |
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 '2120/CH9/EX9.10')
-rwxr-xr-x | 2120/CH9/EX9.10/ex9_10.sce | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/2120/CH9/EX9.10/ex9_10.sce b/2120/CH9/EX9.10/ex9_10.sce new file mode 100755 index 000000000..726dcc9fe --- /dev/null +++ b/2120/CH9/EX9.10/ex9_10.sce @@ -0,0 +1,21 @@ +// Exa 9.10
+clc;
+clear;
+close;
+// Given data
+T_sat = 179.88;// in degree c
+T_sat = T_sat + 273;// in k
+T_sup = 200;// in degree c
+T_sup = T_sup + 273;// in k
+L = 2013.6;// in kJ/kg
+C_ps = 2.326;
+C_pw = 1;
+x = 0.8;
+phi_wet = C_pw *log(T_sat/273) + ( (x * L)/T_sat);// in kJ/kg-K
+disp(phi_wet,"Entropy of wet steam in kJ/kg-K is");
+// Part (b)
+phi_dry =C_pw * log(T_sat/273)+L/T_sat;// in kJ/kg
+disp(phi_dry,"Entropy of dry and saturated steam in kJ/kg-K is");
+// Part (c)
+phi_sup = phi_dry+C_ps *log(T_sup/T_sat);// in kJ/kg
+disp(phi_sup,"Entropy at 200°C in kJ/kg-K is :");
|