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/CH7/EX7.12/Chap7_Ex12_R1.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 '611/CH7/EX7.12/Chap7_Ex12_R1.sce')
-rwxr-xr-x | 611/CH7/EX7.12/Chap7_Ex12_R1.sce | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/611/CH7/EX7.12/Chap7_Ex12_R1.sce b/611/CH7/EX7.12/Chap7_Ex12_R1.sce new file mode 100755 index 000000000..2f817122d --- /dev/null +++ b/611/CH7/EX7.12/Chap7_Ex12_R1.sce @@ -0,0 +1,23 @@ +// Y.V.C.Rao ,1997.Chemical Engineering Thermodynamics.Universities Press,Hyderabad,India.
+
+//Chapter-7,Example 12,Page 261
+//Title: Enthalpy of vaporization
+//================================================================================================================
+clear
+clc
+
+//INPUT
+T1=100;//temperature of water in degree celsius
+del_hv1=2256.94;//enthalpy of vaporization at T1 in kJ/kg
+T2=150;//temperature at which the enthalpy of vaporization is to be determined in degree celsius
+Cp_f=4.26;//isobaric heat capacity of liquid in kJ/kgK
+Cp_g=1.388;//isobaric heat capacity of vapour in kJ/kgK
+
+//CALCULATION
+del_hv2=((Cp_g-Cp_f)*(T2-T1))+del_hv1;//calculation of the enthalpy of vaporization at T2 using Eq.(7.98) (Kirchhoff equation) in kJ/kg
+
+//OUTPUT
+mprintf("\n The enthalpy of vaporization at 150 degree celsius=%0.2f kJ/kg\n",del_hv2);
+
+//===============================================END OF PROGRAM===================================================
+
|