blob: 1a062897c7c74bfe1afe7eaa6f217f68e9826e3e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
clc
clear
printf('example 1.7 page number 28 \n\n')
//to find vapor pressure using duhring plot
t1 = 41 //in degree C
t2=59 //in degree C
theta_1 =83 //in degree C
theta_2=100 //in degree C
K = (t1-t2)/(theta_1-theta_2);
t=59+(K*(104.2-100));
printf ("boiling point of SCl2 at 880 Torr = %f degree celcius",t)
|