diff options
Diffstat (limited to '3878/CH23/EX23.3/Ex23_3.sce')
-rw-r--r-- | 3878/CH23/EX23.3/Ex23_3.sce | 12 |
1 files changed, 12 insertions, 0 deletions
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) + |