summaryrefslogtreecommitdiff
path: root/1571/CH6/EX6.5/Chapter6_Example5.sce
blob: 9c33160033c2e2f89d9a2957f7ec1dba9a21ada2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
clc
clear

//INPUT
v=21*10^4;//change in volume from vapour to liquid in cc
Ls=687;//latent heat of sublimation in cal
lv=607;//latent heat of vapourisation in cal
t=273;//temperature of water in deg.C
j=4.2*10^7;//joules constant in ergs/cal

//CALCULATIONS
sv=lv*j/(t*(v));//slope of vapourisation curve at 0 deg.C in dyne/sq.cm/deg.C
ss=Ls*j/(t*(v));//slope of sublimation curve at 0 deg.C in dyne/sq.cm/deg.C

//OUTPUT
mprintf('the slope of vapourisation curve is %3.2f dyne/sq.cm/deg.C \n the slope of sublimation curve is %3.2f dyne/sq.cm/deg.C',sv,ss)