summaryrefslogtreecommitdiff
path: root/2870/CH3/EX3.14/Ex3_14.sce
diff options
context:
space:
mode:
Diffstat (limited to '2870/CH3/EX3.14/Ex3_14.sce')
-rwxr-xr-x2870/CH3/EX3.14/Ex3_14.sce25
1 files changed, 25 insertions, 0 deletions
diff --git a/2870/CH3/EX3.14/Ex3_14.sce b/2870/CH3/EX3.14/Ex3_14.sce
new file mode 100755
index 000000000..4b291d2e4
--- /dev/null
+++ b/2870/CH3/EX3.14/Ex3_14.sce
@@ -0,0 +1,25 @@
+clc;clear;
+//Example 3.14
+
+//given value
+T=25;
+
+//from table 3-1
+Psat=3.17;//on kPa
+
+//calculations
+
+//Relative Humidity 10%
+Pv1=0.1*Psat
+//Relative Humidity 80%
+Pv2=0.8*Psat
+//Relative Humidity 100%
+Pv3=1*Psat
+
+// from table 3-1 Tsat at these Pressures are
+T1=-8;
+T2=21.2;
+T3=25;
+disp(T1,'With relative humidity 10%the water temp in celcius is');
+disp(T2,'With relative humidity 80% the water temp in celcius is');
+disp(T3,'With relative humidity 100% the water temp in celcius is')