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 /611/CH5/EX5.9 | |
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 '611/CH5/EX5.9')
-rwxr-xr-x | 611/CH5/EX5.9/Chap5_Ex9_R1.sce | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/611/CH5/EX5.9/Chap5_Ex9_R1.sce b/611/CH5/EX5.9/Chap5_Ex9_R1.sce new file mode 100755 index 000000000..19f8cce73 --- /dev/null +++ b/611/CH5/EX5.9/Chap5_Ex9_R1.sce @@ -0,0 +1,23 @@ +// Y.V.C.Rao ,1997.Chemical Engineering Thermodynamics.Universities Press,Hyderabad,India.
+
+//Chapter-5,Example 9,Page 173
+//Title: Change in entropy of water
+//================================================================================================================
+clear
+clc
+
+//INPUT
+m=1;//amount of saturated liquid water in kg
+T_initial=100;//initial temperature of water in degree celsius
+T_body=500;//temperature of body which is brought into contact with the cylinder in degree celsius
+hfg=2256.94;//enthalpy of vaporization taken from steam tables corresponding to T1 in kJ/kg
+
+//CALCULATION
+T=T_initial+273.15;//conversion of temperature in K
+del_S=hfg/T;//calculation of the entropy change during the process using Eq.(5.34) in kJ/kgK
+
+//OUTPUT
+mprintf("\n The change in entropy of water=%0.4f kJ/kgK\n",del_S);
+
+
+//===============================================END OF PROGRAM===================================================
|