diff options
Diffstat (limited to '3878/CH23')
-rw-r--r-- | 3878/CH23/EX23.1/Ex23_1.sce | 11 | ||||
-rw-r--r-- | 3878/CH23/EX23.2/Ex23_2.sce | 31 | ||||
-rw-r--r-- | 3878/CH23/EX23.3/Ex23_3.sce | 12 |
3 files changed, 54 insertions, 0 deletions
diff --git a/3878/CH23/EX23.1/Ex23_1.sce b/3878/CH23/EX23.1/Ex23_1.sce new file mode 100644 index 000000000..63ab64580 --- /dev/null +++ b/3878/CH23/EX23.1/Ex23_1.sce @@ -0,0 +1,11 @@ +clear +//Variable declaration +R_si=0.3// The inside resistance in (m**2 K)/W +R_1=0.040/0.09// The thermal resistance of concrete panels in (m**2 K)/W +R_2=0.050/0.037// The thermal resistance of insulation in (m**2 K)/W +R_3=0.012/0.16// The thermal resistance of plaster board in (m**2 K)/W +R_so=0.07// The outside resistance in (m**2 K)/W + +//Calculation +U=1/(R_si+R_1+R_2+R_3+R_so)// U factor in W/(m**2 K) +printf("\n U factor=%0.2f W/(m**2 K)",U) diff --git a/3878/CH23/EX23.2/Ex23_2.sce b/3878/CH23/EX23.2/Ex23_2.sce new file mode 100644 index 000000000..40bfa219b --- /dev/null +++ b/3878/CH23/EX23.2/Ex23_2.sce @@ -0,0 +1,31 @@ +clear +//Variable declaration +T_d1=21// The dry bulb temperature of air in °C +H=45// % saturation +T_d2=27// The dry bulb temperature of air in °C +T_wb1=20// The wet bulb temperature of air in °C +m=1.35// The mass flow rate of air in kg/s +C_pa=1.006// The specific heat capacity of air in kJ/kg.K +C_pw=4.187// The specific heat capacity of water in kJ/kg.K + +//Calculation + // 1.Total heat: +h_2=57.00// Enthalpy at 27°C DB, 20°C WB in kJ/kg +h_1=39.08// Enthalpy at 21°C DB, 45% sat in kJ/kg +dh=17.92// Heat to be removed in kJ/kg +Q_t=dh*m// Total heat in kW +printf("\n Total heat,Q_t=%2.1f kW", Q_t) + + +// 2.Latent heat: +x_2=0.0117// Moisture at 27°C DB, 20°C WB in kg/kg +x_1=0.0070// Moisture at 21°C DB, 45% sat in kg/kg +dx=x_2-x_1// Moisture to be removed in kg/kg +Q_l=dx*m*2440// Latent heat in kW +printf("\n Latent heat,Q_l=%2.1f kW", Q_l) + + +// 3.Sensible heat: +Q_s=(C_pa+((C_pw*x_2)))*(T_d2-T_d1)*m// Sensible heat in kW +printf("\n Sensible heat,Q_s=%1.1f kW", Q_s) + diff --git a/3878/CH23/EX23.3/Ex23_3.sce b/3878/CH23/EX23.3/Ex23_3.sce new file mode 100644 index 000000000..8c17afb36 --- /dev/null +++ b/3878/CH23/EX23.3/Ex23_3.sce @@ -0,0 +1,12 @@ +clear +//Variable declaration +Q_tl=15// Total lighting load +P_ra=90// % of load taken from return air +P_a=25// % of load rejected to ambient + +//Calculation +Q_ra=Q_tl*(P_ra*10**-2)// Picked up by return air in kW +Q_a=Q_ra*(P_a*10**-2)// Rejected to ambient in kW +Q_net=Q_tl-Q_a// Net room load in kW +printf("\n \nNet room load=%2.3f kW",Q_net) + |