blob: 3a84907e760b015547c73d15fa14487414ecb4ca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
clc
//initialisation of variables
clear
T= 0 //C
sv= 1.0001 //cc g^-1
sv1= 1.0907 //cc g^-1
R= 0.0242 //atm^-1 cc^-1 cal
p= 79.8 //atm
//CALCULATIONS
r= (273.2+T)*(sv-sv1)*R/p
//RESULTS
printf ('rate of change of melting point = %.4f deg atm^-1',r)
|