diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /1808/CH7/EX7.1/Chapter7_Exampl1.sce | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '1808/CH7/EX7.1/Chapter7_Exampl1.sce')
-rw-r--r-- | 1808/CH7/EX7.1/Chapter7_Exampl1.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/1808/CH7/EX7.1/Chapter7_Exampl1.sce b/1808/CH7/EX7.1/Chapter7_Exampl1.sce new file mode 100644 index 000000000..96ef2a867 --- /dev/null +++ b/1808/CH7/EX7.1/Chapter7_Exampl1.sce @@ -0,0 +1,15 @@ +clc
+clear
+//INPUT DATA
+w=0.016;//specific humidity in kg/kg
+p=760;//pressure in mm of Hg
+ps=31.78;//saturation pressure in mm of Hg
+
+//CALCULATIONS
+pv=(p)*0.02572/1.02572;//Partial pressure of vapour in mm of Hg
+x=(pv/ps)*100;//Relative humidity in percentage
+
+//OUTPUT
+printf('(a)The partial pressure of vapour is %3.4f mm of Hg \n (b)Relative humidity is %3.2f percentage \n (c)According to steam tables Dew point temperature is 21.34 degree c',pv,x)
+
+
|