summaryrefslogtreecommitdiff
path: root/1019/CH5/EX5.18
diff options
context:
space:
mode:
Diffstat (limited to '1019/CH5/EX5.18')
-rw-r--r--1019/CH5/EX5.18/Example_5_18.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/1019/CH5/EX5.18/Example_5_18.sce b/1019/CH5/EX5.18/Example_5_18.sce
new file mode 100644
index 000000000..5e0b4581c
--- /dev/null
+++ b/1019/CH5/EX5.18/Example_5_18.sce
@@ -0,0 +1,16 @@
+//Example 5.18
+clear;
+clc;
+
+//Given
+delHv=40820;//latent heat of vapourization of water in J mol^-1
+Vv=30.199;//volume of vapour in dm^3 mol^-1
+Vl=0.019;//volume of liquid in dm^3 mol^-1
+T=373;//temperature in K
+
+//To determine the change in boiling point with change in 1 mm pressure
+delVm=Vv-Vl;
+a=(delHv*760)/(T*delVm*0.001*101325);//a=(dP/dT)
+b=a^(-1);//b=(dT/dP)
+mprintf('change in boiling point of water per mm change in pressure=%f K mm^-1',b);
+//end \ No newline at end of file