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 /632/CH11/EX11.16/example11_16.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 '632/CH11/EX11.16/example11_16.sce')
-rwxr-xr-x | 632/CH11/EX11.16/example11_16.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/632/CH11/EX11.16/example11_16.sce b/632/CH11/EX11.16/example11_16.sce new file mode 100755 index 000000000..dbd11d8fa --- /dev/null +++ b/632/CH11/EX11.16/example11_16.sce @@ -0,0 +1,19 @@ +//clc()
+P1 = 75;//kPa
+T1 = 573;//K
+Tvap = 365;//K
+Tbasis = 273;//K
+//Since, the boiling point of water at 75kPa is 375K, the vapour at 573K is superheated;
+H1 = 3075;//kJ/kg
+Cliq = 4.2;//kJ/kgK
+Cvap = 1.97;//kJ/kg/K
+m = 1;//kg
+//let assume converting liq. water into superheated stream occurs in 3 steps,
+//step1 - water is heated from 273K to 365 K at constant pressure,enthalpy change is the heat required to change the temperature,
+Hc1 = m*Cliq * ( Tvap - Tbasis );
+//step2 - the liq is vapurized at constant pressure and constant temperature, enthalpy change is equal to the heat of vapourisation, say Hc2
+//step3 - the saturated vapour at 365K is heated to 573K at constant pressure, the enthalpy change is the heat required to raise the temperature
+Hc3 = m*Cvap*(T1 - Tvap);
+//total enthalpy = 3075 = Hc1 + Hc2 + Hc3, therefore
+Hc2 = H1 - Hc1 - Hc3;
+disp("kJ/kg",Hc2,"Heat of vapourisation = ")
\ No newline at end of file |