diff options
Diffstat (limited to '686/CH16/EX16.3/Ex16_3.sci')
-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);
|