summaryrefslogtreecommitdiff
path: root/167/CH3/EX3.1/ex1.sce
blob: 0d3b3ea61406317b227ef2d30ca79a6af2a8a885 (plain)
1
2
3
4
5
6
7
8
9
//ex1
//Pressure of Saturated Liquid in a Tank
clc
Psat=70.183;//saturated pressure @90C using steam table A-4 in kPa
printf('From steam table Psat @ 90 C = %.3f kPa',Psat);
vsat=0.001036;//saturated specific volume @90C in m^3/Kg
m=50;//mass in kg
V=m*vsat;//Volume of tank in m^3
printf('\n Total Volume of Tank = %.4f m^3',V);