From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 3685/CH15/EX15.9/Ex15_9.sce | 20 ++++++++++++++++++++ 3685/CH15/EX15.9/Ex15_9.txt | 4 ++++ 2 files changed, 24 insertions(+) create mode 100644 3685/CH15/EX15.9/Ex15_9.sce create mode 100644 3685/CH15/EX15.9/Ex15_9.txt (limited to '3685/CH15/EX15.9') diff --git a/3685/CH15/EX15.9/Ex15_9.sce b/3685/CH15/EX15.9/Ex15_9.sce new file mode 100644 index 000000000..77e1f0735 --- /dev/null +++ b/3685/CH15/EX15.9/Ex15_9.sce @@ -0,0 +1,20 @@ +clc +// Given that +DBT = 40 // Dry bulb temperature in degree celsius +DBT_ = 25 // Dry bulb temperature after cooling and dehumidification in degree celsius +RH = 70 // Relative humidity in percentage +f = 30 // Air flow rate in cmm +printf("\n Example 15.9 \n") +// From the psychrometric chart +v1 = 0.9125 // In m^3/kg +G = f/v1 +h5 = 41.5 // In kJ/kg +W1 = 0.0182 // In kg vapor/kg dry air +h1 = 86 // In kJ/kg d.a. +W2 = 0.0136 // In kg vapor/kg dry air +h2 = 60 // In kJ/kg +L = G*(h1-h2)/3.5 +Mo = G*(W1-W2) +x = (h2-h5)/(h1-h5) +printf("\n Bypass factor of coolin coil is %f ",x) +// Answer veries due to round off error diff --git a/3685/CH15/EX15.9/Ex15_9.txt b/3685/CH15/EX15.9/Ex15_9.txt new file mode 100644 index 000000000..cc2acd8fc --- /dev/null +++ b/3685/CH15/EX15.9/Ex15_9.txt @@ -0,0 +1,4 @@ + + Example 15.9 + + Bypass factor of coolin coil is 0.415730 \ No newline at end of file -- cgit