diff options
Diffstat (limited to '1019/CH5/EX5.23')
-rw-r--r-- | 1019/CH5/EX5.23/Example_5_23.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/1019/CH5/EX5.23/Example_5_23.sce b/1019/CH5/EX5.23/Example_5_23.sce new file mode 100644 index 000000000..b47aa79b1 --- /dev/null +++ b/1019/CH5/EX5.23/Example_5_23.sce @@ -0,0 +1,13 @@ +//Example 5.23
+clear;
+clc;
+
+//Given
+//log10(P)=-(1246.038/(t+221.354))+6.95926 vapour pressure in mm Hg as a function of temperature in oC
+T=298;//temperature in K
+
+//To determine the delHv
+//delHv=R*(T^2)*(dlogP/dT) by clausius clapeyron equation
+delHv=((2.303*1246.038*R*(T^2))/((T-51.796)^2))*0.001;//latent heat of vapourization in kJ mol^-1
+mprintf('The latent heat of vapourization delHv of thiophene = %f kJ mol^-1',delHv);
+//end
\ No newline at end of file |