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 /686/CH16/EX16.3 | |
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 '686/CH16/EX16.3')
-rwxr-xr-x | 686/CH16/EX16.3/Ex16_3.sci | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/686/CH16/EX16.3/Ex16_3.sci b/686/CH16/EX16.3/Ex16_3.sci new file mode 100755 index 000000000..a25e879ea --- /dev/null +++ b/686/CH16/EX16.3/Ex16_3.sci @@ -0,0 +1,14 @@ +clc();
+clear;
+
+// To determine the specific heat of air
+
+p = 14.7; // Pressure in psi.
+Tb = 68; // Dry bulb temperature in F
+Tw = 50; // Wet bulb temperature in F
+
+// In the enthalpy-specific heat diagram, the isotherm 50F in the supersaturated region must be extended until it intersects the isotherm 68F.
+// The point of intersection gives the state of moist air and its specific heat capacity can be read
+s = 0.0037; // Specific heat capacity
+
+printf("Tne specific humidity of air is %.4f lb of water per pound of dry air",s);
|