summaryrefslogtreecommitdiff
path: root/167/CH3/EX3.1
diff options
context:
space:
mode:
Diffstat (limited to '167/CH3/EX3.1')
-rwxr-xr-x167/CH3/EX3.1/ex1.sce9
1 files changed, 9 insertions, 0 deletions
diff --git a/167/CH3/EX3.1/ex1.sce b/167/CH3/EX3.1/ex1.sce
new file mode 100755
index 000000000..0d3b3ea61
--- /dev/null
+++ b/167/CH3/EX3.1/ex1.sce
@@ -0,0 +1,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);