diff options
Diffstat (limited to '1427/CH18/EX18.24/18_24.sce')
-rw-r--r-- | 1427/CH18/EX18.24/18_24.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/1427/CH18/EX18.24/18_24.sce b/1427/CH18/EX18.24/18_24.sce new file mode 100644 index 000000000..ebaa7a33f --- /dev/null +++ b/1427/CH18/EX18.24/18_24.sce @@ -0,0 +1,10 @@ +//ques-18.24
+//Finding vapour pressure of benzene at 300 K
+clc
+Hv=7413;//latent heat of vapourization (in cal/mol)
+T1=273+80; T2=273+27;//temperature (in K)
+P1=760;//mm Hg
+R=1.987;//cal/mol/K
+//On solving, log(P2/P1) = (Hv*(T2-T1))/(2.303*R*T1*T2)
+P2=P1/6.467;
+printf("The required vapour pressure is %.2f mm Hg.",P2);
|