blob: ae5f9c72fa239795dde0cbfc29cad198f6e18dc9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
clc
//initialisation of variables
H= 9720 //cal mole^-1
P= 1 //atm
R= 1.987 //cal /mole K
T= 100 //C
T1= 95 //C
//CALCULATIONS
r= P*H/(R*(273+T)^2)
dP= r*(T1-T)
P1= (P+dP)*626/0.824
//RESULTS
printf (' vapour pressure= %.f atm',P1)
|