summaryrefslogtreecommitdiff
path: root/3685/CH15/EX15.5
diff options
context:
space:
mode:
Diffstat (limited to '3685/CH15/EX15.5')
-rw-r--r--3685/CH15/EX15.5/Ex15_5.sce15
-rw-r--r--3685/CH15/EX15.5/Ex15_5.txt6
2 files changed, 21 insertions, 0 deletions
diff --git a/3685/CH15/EX15.5/Ex15_5.sce b/3685/CH15/EX15.5/Ex15_5.sce
new file mode 100644
index 000000000..488ca095a
--- /dev/null
+++ b/3685/CH15/EX15.5/Ex15_5.sce
@@ -0,0 +1,15 @@
+clc
+W1 = 0.0058 // Humidity ratio for first stream
+W2 = 0.0187 // Humidity ratio for second stream
+h1 = 35 // Enthalpy of first stream in kJ/kg
+h2 = 90// Enthalpy of second stream in kJ/kg
+G12 = 1/2 //ratio
+W3 = (W2+G12*W1)/(1+G12) // Final humidity ratio of mixture
+h3 = (2/3)*h2 + (1/3)*h1// Final enthalpy of mixture
+
+printf("\n Example 15.5 \n")
+printf("\n Final condition of air is given by")
+printf("\n W3 = %f kg vap./kg dry air",W3)
+printf("\n h3 = %f kJ/kg dry air",h3)
+//The answers vary due to round off error
+
diff --git a/3685/CH15/EX15.5/Ex15_5.txt b/3685/CH15/EX15.5/Ex15_5.txt
new file mode 100644
index 000000000..346d1bfbe
--- /dev/null
+++ b/3685/CH15/EX15.5/Ex15_5.txt
@@ -0,0 +1,6 @@
+
+ Example 15.5
+
+ Final condition of air is given by
+ W3 = 0.014400 kg vap./kg dry air
+ h3 = 71.666667 kJ/kg dry air \ No newline at end of file