blob: 9bee8e7ac547221570c03a528172a40a239e8643 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//Chapter 3 Liquids
clc;
clear;
//Initialisation of Variables
p= 388.6 //mm
p1=26.5 //mm
T= 60 //C
R= 1.99 //cal mole^-1 A^-1
//Calculations
Lv= log10(p/p1)*2.303*R*273*(273+T)/(T)
//Results
mprintf("Heat of Vapourisation of Benzene = %d cal per mole",Lv+2);
|