summaryrefslogtreecommitdiff
path: root/2705/CH4/EX4.8/Ex4_8.sce
diff options
context:
space:
mode:
Diffstat (limited to '2705/CH4/EX4.8/Ex4_8.sce')
-rwxr-xr-x2705/CH4/EX4.8/Ex4_8.sce20
1 files changed, 20 insertions, 0 deletions
diff --git a/2705/CH4/EX4.8/Ex4_8.sce b/2705/CH4/EX4.8/Ex4_8.sce
new file mode 100755
index 000000000..7cfe99980
--- /dev/null
+++ b/2705/CH4/EX4.8/Ex4_8.sce
@@ -0,0 +1,20 @@
+clear;
+clc;
+disp('Example 4.8');
+
+// aim : To determine
+// the specific volume of wet steam
+
+// Given values
+P = 1.25; // pressure, [MN/m^2]
+x = .9; // dry fraction
+
+// solution
+// from steam table at given pressure
+vg = .1569;// [m^3/kg]
+// hence
+v = x*vg; // [m^3/kg]
+
+mprintf('\nThe specific volume of wet steam is = %f m^3/kg \n',v);
+
+// End