diff options
Diffstat (limited to '1808/CH7/EX7.6/Chapter7_Exampl6.sce')
-rw-r--r-- | 1808/CH7/EX7.6/Chapter7_Exampl6.sce | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/1808/CH7/EX7.6/Chapter7_Exampl6.sce b/1808/CH7/EX7.6/Chapter7_Exampl6.sce new file mode 100644 index 000000000..029754fbf --- /dev/null +++ b/1808/CH7/EX7.6/Chapter7_Exampl6.sce @@ -0,0 +1,23 @@ +clc
+clear
+//INPUT DATA
+t=35;//dry bulb temperature in Degree c
+td=15;//dew point temperature in Degree c
+p=760;//pressure in mm of Hg
+pv1=0.017051*10^5;//saturation pressure
+ps1=0.05628 *10^5;//saturation pressure
+cp=1.005;//specific pressure
+cpv=1.88;//specific volume
+hfg=2500;//Specific enthalpy in kJ/kgw.v.
+
+//CALCULATIONS
+pv=pv1*133.5;//vapour pressure in mm of Hg
+ps=ps1*133.5;//pressure in mm of Hg
+x=(pv/ps)*100;//realtive humidity in percentage
+ws=(0.622*(12.77/(760-12.77)));//Specific humidity in kg w.v./kg d.a
+h=(cp*t)+ws*(hfg+(cpv*t));//Enthalpy of air per kg of dry air in kJ/kg d.a
+
+//OUTPUT
+printf('(a)Relative humidity is %3.2f percentage \n (b)Specific humidity %3.4f kg w.v./kg d.a \n (c)Enthalpy of air per kg of dry air is %3.2f kJ/kg d.a ',x,ws,h)
+
+
|