blob: 458259ed61c3e4728081cdc5a69b080603d35f98 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
clc
clear
//INPUT
t=350;//boiling point temperature in K
l=46;//latent heat of vapourisation in cal/gm
v1=1/1.6;//intial volume in cc
dp=2.3;//change in pressure with temperature in cm of hg/deg.C
d=13.6;//specific gravity of mercury
g=981;//acceleration due to gravity in cm/sec^2
j=4.2*10^7;//joukes constant in ergs/cal
//CALCULTIONS
v2=v1+(l*j)/(t*dp*d*g);//specific volume in cc
//OUTPUT
mprintf('specific volume of vapour of carbon is %3.3f cc',v2)
|