summaryrefslogtreecommitdiff
path: root/1967/CH2/EX2.6/2_6.sce
blob: ab93605bb1c49d09599e78f81aeb41b8a39c6cd9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
clc
clear
//initialisation of variables
n1= 0.25 //mole
nh= 0.75 //mole
p= 400 //atm
T= 50 //C
vn= 0.083 //lit
vh= 0.081 //lit
//CALCULATIONS
V= n1*vn+vh*nh
//RESULTS
printf ('Volume of given mixture is = %.3f lit',V)