diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /2870/CH3/EX3.14 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '2870/CH3/EX3.14')
-rwxr-xr-x | 2870/CH3/EX3.14/Ex3_14.sce | 25 |
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')
|