The Numerical Psychrometric Analysis

Size: px
Start display at page:

Download "The Numerical Psychrometric Analysis"

Transcription

1 he Numerical sychrometric Analysis by Jorge R. López Busó, MSME, E Introduction he sychrometric Analysis is the base of any HVAC system design. Nowadays, the psychrometric analysis is mainly done by means of he sychrometric Chart. he sychrometric Chart contains in a graphical form an approximation of the properties of moist air. hose approximations are currently available in the form of equations. With the very well established computer technology and in favor to the fame of he sychrometric Chart, means to solve the equations using numerical algorithms are not described readily elsewhere. his lack of welldocumented algorithms is also a reason why the psychrometric analysis has not crossed over into the computer technology, representative of the almost past three decades. here is no doubt that the simplicity of the sychrometric Chart is a welcomed featured. But as HVAC technology has evolved and variable volume systems are getting more accepted, new means to perform the calculations required for such systems are necessary. his article presents the background necessary for the numerical solution of the equations that approximate moist air properties. In doing so I am presenting a series of simple algorithms that makes use of existing equations. Moreover, I have used those algorithms to solve a problem that has been for many years debated by mechanical and energy engineers. roperties Moist Air he following section is a brief presentation of the equations used to approximate the properties of moist air. hese equations can be obtain from ASHRAE Fundamentals 1997 and reference 2. he Enthalpy and the Specific Volume equations will not be used in this article but they are shown for completeness. a)! Vapor ressure(v) - he vapor pressure of water has been approximated using the saturated vapor pressure of water at a given temperature. he saturated vapor pressure of water at temperatures above 32 F is given in sia by: ( ) V t R = e & C $ % t C 9 + C10' tr + C11' tr + C12' tr 3 R + C13' Ln # ( t )! R " Eq Jorge R. Lopez 1

2 he constants C8 through C13 are as follows: C8 = C9 = C10 = C11 = C12 = E-09 C13 = t R = tf b)! artial Vapor ressure(v) - he partial vapor pressure of water can be approximated using Carrier's partial vapor pressure equation. he partial vapor pressure is given in sia using the following equation: where: B w = V( ) V (, ) = = Dry Bulb emperature ( F) = Wet Bulb emperature ( F) = Barometric ressure (sia) W " ( " )!( " ) B W 2831" 143.! (Saturated Air Vapor ressure) Eq. 2 c)! Humidity Ratio(W) - he humidity ratio measures the amount of moisture in the air. he humidity ratio in Lb. water /Lb. dry air can be calculated as follows: where: = V V ( ) W V, = " Eq. 3 B! V ( ) (Moist Air Vapor ressure), d)! Relative Humidity(!) - he relative humidity in percentage is calculated using the following equation: V "(, ) =! 100 Eq. 4 2 VS

3 where: = V VS ( ) (Dry Air Vapor ressure) e)! Enthalpy (H) - he enthalpy of air in Btu/Hr-Lb. dry air is given by: H ( W ) = 0.24! + ( * ) W, Eq. 5! f) Specific Volume (SV) - he specific volume of air in ft 3 /Lb. dry air is given by: SV ( W ) = ! ( ) ( ! W ),! Eq. 6 B Numerical Algorithms Of interest for the sychrometric Analysis is the determination of the dry bulb temperature if the relative humidity and the humidity ratio are known. he relative humidity and the humidity ratio are indirect functions of vapor pressure. Because there is no simple way to obtain an equation for temperature as a function of vapor pressure (ie. (V) as opposed to Eq. 1, V()), an iterative technique has to be used to solve the equations. he technique used in this article is to re-group the equations so that an error function can be generated to iterate on using the Bisection Method. Because the humidity ratio is known, equation 3 can be used to find the moist air vapor pressure ( V ). hus one obtains that: V W! B = Eq W Also, because relative humidity is known, the dry air vapor pressure VS can be calculated using Eq. 4 and the result obtained above. he following is obtained: V =!100 Eq. 7 " VS 3

4 We can now form our error function for dry bulb temperature based on dry air vapor pressure as follows: W * B E VS ( ) = VS ( ) "! 100 Eq. 8!# ( W ) he Bisection Method iteration is very simple. It starts with a possible range for the variable we want to iterate on, in this case. An acceptable range for the solutions we are looking is 32 F to 100 F. he upper limit can be increased, but in order to decrease the lower limit, a different equation has to be used for the function V(). On every iteration, the Bisection Method evaluates the error function on the lower limit and the middle of the range. hen it compares the signs of the values obtained and selects on which side of the range the solution is. his is continued until some convergence criteria is minimized or certain number of iterations are done. he following listing is a cookbook recipe to he Bisection Method for this specific case. 1.! Set iteration number to zero. 2.! Assign low limit to 1 and the high limit to 2. 3.! Calculates the mid range value ( 3 ) as follows: = Eq ! Evaluate Error Function (Eq. 8) at 1 and 3 to obtain E VS1 ( 1 ) and E VS3 ( 3 ). 5.! If E VS1 ( 1 )"E VS3 ( 3 ) is less than zero then 2 = 3 else 1 = 3. 6.! Calculate relative error criteria: REC = E VS3 ( 3 )/ 3. 7.! Increase number of iterations by one. 8.! If REC is greater than a preset tolerance (10-7 ) and number of iterations is less than maximum (200) then goto step 2. 9.! If the number of iterations is less than maximum, a solution was found and is equal to 3. else iterations did not converged to a solution 4

5 Another useful function for the sychrometric Analysis is the determination of wet bulb temperature based on dry bulb temperature and relative humidity. Because the Bisection Method has already been described above, I will only show the Error Function. ( ) ( ) " = # ( ) Eq VS E V! V, Uses of the Numerical Methods In a standard cooling cycle a mix of outside air and return air enters the coil where it is cooled and dehumidified. Depending on the room sensible heat ratio (RSHR) and coil conditions, the air will require reheat in order to satisfy room latent loads. o remove the required moisture from the entering air (to satisfy room conditions), the air has to be cooled down below the sensible load requirements of the room. his happens because a coil can only remove moisture when its apparatus temperature is below the dew point of the air. he effect of this is that the air leaving the coil is at a relative humidity that is close to the 100% saturation curve. A common assumption is that the air leaves the coil at 95% relative humidity. A plot of the system air conditions in the sychrometric Chart will look like Figure 1. Outside Air Coil Air Mix Room Reheat Figure 1. Standard Cooling Cycle It can be clearly seen that the coil leaving conditions will depend on the room sensible heat ratio. Because of limitations in the cooling equipment performance and economic factors, there is going to be a range of room sensible heat ratios where reheat will be required. his has a lot of importance on energy conservation because reheat is usually seen as a waste of energy. 5

6 Many debates have been developed around the need for reheat in HVAC systems. As we are going to see, the use of numerical methods can help discern when reheat is required and when it is not. Based on the standard cooling cycle presented on Figure 1 and previous discussion, the numerical methods presented in this article can be used to solve this problem. Within this context, the following variables govern the standard cooling cycle.! W RSHR! R, R CL, CL W R, R CL, CL = Room Dry Bulb emperature ( F) = Room Wet Bulb emperature ( F) = Room Relative Humidity (%) = Room Humidity Ratio (Lb. water/lb. da.) = Room Sensible Heat Ratio, = Coil Leaving Dry Bulb emperature ( F) = Coil LeavingWet Bulb emperature ( F) = Coil Leaving Relative Humidity (%) = QS RSHR = Q + Q Coil Leaving Humidity Ratio (Lb. water/lb. da.) S L Of these, the coil leaving dry bulb temperature, the coil leaving wet bulb temperature and the coil leaving humidity ratio are unknown. he coil leaving relative humidity will be fixed at 95%. he room conditions will be set at 75 F dry bulb temperature and 50% relative humidity. Equation 10 is used with he Bisection Method to find room wet bulb temperature. Equation 3 is used to find room humidity ratio. But then, how does one finds the temperature at which the room process line (RSHR line) intersects the 95% relative humidity curve? If you calculate the required air flow rate using the sensible load equation (Eq. 11) and the latent load equation (Eq. 12), both should be equal in order to maintain the room sensible heat ratio. By matching these two equations and using the definition of room sensible heat ratio, an error function can be generated to calculate coil leaving dry bulb temperature. Q s = 1. 1" CFM "! Eq. 11 Q L = 4760 " CFM "! W Eq. 12 6

7 he error function to calculate the coil leaving dry bulb temperature is: ( ) RSHR" ( W! W (,# )) R CL CL, CL E CL CL, = R,!! CL, 1.1(1! RSHR) Eq. 13 It can be noticed that this error function is independent of the air flow rate and the actual room loads. It is only dependent on three factors, namely coil leaving relative humidity, room humidity ratio and room sensible heat ratio. his allows for a general formulation. able 1 values were calculated making use of the error function presented in equation 13. As it can be seen, beyond sensible heat ratios of 0.64, it is impossible to obtain a solution if there is no reheat. More over, the normal range of operation of chilled water coil leaving conditions is in the 52 F to 56 F. In this range if the room sensible heat ratio drops below 0.82, the system will require the use of reheat. With DX coils, you can go down to 45 F and consequently you should not use reheat unless the room sensible heat ratio drops below hose ranges are standard practices that allow for the economic factor to stay within acceptable ranges. Keeping in mind these limits, one can only question where would sensible heat ratios of less than 0.82 be found? Example roblem Lets take as an example the case of a Casino and assume the following things: 1.! Floor area of 6500 square feet. 2.! eople density of 15 sq. ft. per person (433 persons total). 3.! eople loads as follows: Sensible 275Btu/Hr-person Latent 275Btu/Hr-person 4.! Light density of 1 watt per square feet (6500 watts total). 5.! Equipment load of 25,000 watts. 6.! No solar load (a night calculation). 7.! Wall transmission is negligible. 8.! Any heat storage effects are neglected. 9.! Required room conditions of 75, 50%RH. 10.!Coil leaving relative humidity is 95%. 7

8 able 1. Coil Leaving Conditions for Various Room Sensible Heat Ratios Room Sensible Heat Ratio Dry Bulb emperature ( F) Wet Bulb emperature ( F) Relative Humidity (%) Humidity Ratio (Grains/Lb.da)

9 When the load calculations are performed it can be readily seen that the sensible heat ratio is close to Let's also assume that the cooling equipment we are dealing with is capable of 48 F coil leaving dry bulb temperature. With those restrictions if you look in able 1, you will notice that reheat is going to be required (ie. For RSHR=0.65, CL, =39.28 F) Moreover, if equation 13 is modified to allow the specification of reheat, one would see that a reheat between 5 F and 6 F is required. It is worth to note that the required CFM for this case can be calculated with equation 11. It would not be a surprise that the AHU to be selected based on the CFM for this case would require a double coil. his is another constrain that the engineer will have to work with the equipment manufacturer. In the event that no reheat would be provided, the resulting room conditions would yield a high room relative humidity. In some cases it can be as high as nearing the saturation curve. he importance of this assessment is that you can run into condensation problems if off-load conditions are over-looked and reheat is not taken into consideration. Because reheat is determined by the lowest room sensible heat ratio, it is important to look for off-load requirements in any system. In helping solve this problem I developed Figure 2. Figure 2 shows what happens when reheat is added to equation 13. he figure provides coil leaving dry bulb temperature for various amount of reheat with varying room sensible heat ratios. With this figure one can readily calculate the coil leaving conditions and adjust any system for minimum reheat. An ideal use of this would be in control schemes. By means of a reset on coil leaving temperature calculated using this algorithm, humidity can be controlled and reheat can be minimized. Conclusions he use of computer algorithms to analyze the psychrometric behavior of HVAC systems is a powerful tool. By properly re-grouping moist air property equations one can solve any cooling cycle. Of interest to the engineering community, the methods presented were applied to the standard cooling cycle. It was shown that reheat is a required need for low room sensible heat ratio conditions. It was implied that such conditions might be found in off-load conditions and that as such it should be investigated how off-load room sensible heat ratio varies. he algorithms presented in this article could be applied in control systems to minimize reheat. More investigation is needed along these lines to improve current design procedures. 9

10 Coil%Leaving%Dry%Bulb%emperature%(95%RH) Dry%Bulb%emperature%( F) Reheat/=/0.0/ F Reheat/=/1.0 F Reheat/=/2.0 F Reheat/=/3.0 F Reheat/=/4.0 F Reheat/=/5.0 F Reheat/=/6.0 F Reheat/=/7.0 F Reheat/=/8.0 F Reheat/=/9.0 F Reheat/=/10.0 F Room%Sensible%Heat%Ratio

11 References 1.! American Society of Heating, Refrigerating and Air Conditioning Engineers, ASHRAE Handbook: Fundamentals 1997, Atlanta, USA, ! Clifford, George, Modern Heating, Ventilating and Air Conditioning, rentice Hall, New Jersey, USA, 1990.

Pyschrometric Sample Problem Pharmaceutical Engineering Graduate Program New Jersey Institute of Technology

Pyschrometric Sample Problem Pharmaceutical Engineering Graduate Program New Jersey Institute of Technology Background A pharmaceutical company wishes to construct a manufacturing space which will require an HVAC system that functions within the following parameters: Space drybulb temperature = 70 F Space relative

More information

Subject: Principles of Refrigeration and Air Conditioning Lecturer: Assistant Professor Dr. Waheed Shaty Mohammed

Subject: Principles of Refrigeration and Air Conditioning Lecturer: Assistant Professor Dr. Waheed Shaty Mohammed Subject: Principles of Refrigeration and Air Conditioning Lecturer: Assistant Professor Dr. Waheed Shaty Mohammed Refrences: 1-A. R. Trott and T. Welch " Refrigeration and Air conditioning ",Third Edition

More information

CAE 331/513 Building Science Fall 2017

CAE 331/513 Building Science Fall 2017 CAE 331/513 Building Science Fall 2017 October 5, 2017 Psychrometrics (equations) Advancing energy, environmental, and sustainability research within the built environment www.built-envi.com Twitter: @built_envi

More information

CAE 331/513 Building Science Fall 2015

CAE 331/513 Building Science Fall 2015 CAE 331/513 Building Science Fall 2015 Week 5: September 24, 2015 Psychrometrics (equations) Advancing energy, environmental, and sustainability research within the built environment www.built-envi.com

More information

PNEUMATIC ENTHALPY COMPARATOR

PNEUMATIC ENTHALPY COMPARATOR PNEUATIC ENTHALPY COPARATOR APS ANALYSTS OF PNEUATIC SYSTES LIITED analystsofpneumatic@bellnet.ca http://www.apscontrols.ca PHONE: (9) 6-2333 FAX: (9) 6-2444 CONTENTS PAGE - Preface ------------------------------------------

More information

Greenhouse Steady State Energy Balance Model

Greenhouse Steady State Energy Balance Model Greenhouse Steady State Energy Balance Model The energy balance for the greenhouse was obtained by applying energy conservation to the greenhouse system as a control volume and identifying the energy terms.

More information

WC Engineering Corp Touchton Rd., Bldg. 100, Suite 150 Jacksonville, FL Attn: Michael Jones May 25, 2017

WC Engineering Corp Touchton Rd., Bldg. 100, Suite 150 Jacksonville, FL Attn: Michael Jones May 25, 2017 WC Engineering Corp. 4600 Touchton Rd., Bldg. 100, Suite 150 Jacksonville, FL 32246 Attn: Michael Jones May 25, 2017 Subject: HVAC Calculations per elegantcafedwg.pdf Quote #: QU-51217 Building area: 2,420

More information

Principles of Food and Bioprocess Engineering (FS 231) Solutions to Example Problems on Psychrometrics

Principles of Food and Bioprocess Engineering (FS 231) Solutions to Example Problems on Psychrometrics Principles of Food and Bioprocess Engineering (FS 21) Solutions to Example Problems on Psychrometrics 1. We begin by identifying the conditions of the two streams on the psychrometric chart as follows.

More information

Heat Flow Calculations Made Using the Models 8386 and 8386A VELOCICALC Plus Air Velocity Meters Application Note ITI-124

Heat Flow Calculations Made Using the Models 8386 and 8386A VELOCICALC Plus Air Velocity Meters Application Note ITI-124 Ventilation Test Instruments Heat Flow Calculations Made Using the Models 8386 and 8386A VELOCICALC Plus Air Velocity Meters Application Note ITI-124 The Models 8386 and 8386A calculate the heat flow between

More information

Welcome. Vaisala Industrial Measure Webinar Series - Humidity Theory, Terms & Definitions. Yumi Alanoly Vaisala Application Engineer

Welcome. Vaisala Industrial Measure Webinar Series - Humidity Theory, Terms & Definitions. Yumi Alanoly Vaisala Application Engineer Welcome Vaisala Industrial Measure Webinar Series - Humidity Theory, Terms & Definitions Yumi Alanoly Vaisala Application Engineer Agenda 1. Why do we measure humidity? 2. Dalton s Law 3. Relative humidity

More information

Humidification requirements in economizer-type HVAC systems

Humidification requirements in economizer-type HVAC systems Humidification requirements in economizer-type HVAC systems Viktor T. Toth January 2, 2012 Abstract We develop a formulation to compute the maximum humidification load for economizer-type HVAC systems.

More information

ME6301- ENGINEERING THERMODYNAMICS UNIT I BASIC CONCEPT AND FIRST LAW PART-A

ME6301- ENGINEERING THERMODYNAMICS UNIT I BASIC CONCEPT AND FIRST LAW PART-A ME6301- ENGINEERING THERMODYNAMICS UNIT I BASIC CONCEPT AND FIRST LAW PART-A 1. What is meant by thermodynamics system? (A/M 2006) Thermodynamics system is defined as any space or matter or group of matter

More information

ln P s T and P s T where R 22,105, D A 27, E B 97.

ln P s T and P s T where R 22,105, D A 27, E B 97. ASAE D271.2 DEC94 Psychrometric Data Reviewed by ASAE s Structures and Environment Division and the Food Engineering Division Standards Committees; approved by the Electric Power and Processing Division

More information

2.0 KEY EQUATIONS. Evaporator Net Refrigeration Effect. Compressor Work. Net Condenser Effect

2.0 KEY EQUATIONS. Evaporator Net Refrigeration Effect. Compressor Work. Net Condenser Effect 2.0 KEY EQUATIONS Evaporator Net Refrigeration Effect Q net refrigeration effect [] = (H 1 H 4 ) lb (Refrig Flow Rate) (60) min lb min hr H 1 = leaving evaporator enthalpy lb ; H 4 = entering evaporator

More information

MDSRC Proceedings, December, 2017 Wah/Pakistan. Cooling load analysis by CLTD and RLF. Sher ali nawaz 1 Muzammil shahbaz 2

MDSRC Proceedings, December, 2017 Wah/Pakistan. Cooling load analysis by CLTD and RLF. Sher ali nawaz 1 Muzammil shahbaz 2 Cooling load analysis by CLTD and RLF Sher ali nawaz 1 Muzammil shahbaz 2 Waqas Javid, M.Umer Sohail Department of mechanical engineering Wah engineering college University of wah sheralinawaz15@gmail.com,

More information

Applied Thermodynamics for Marine Systems Prof. P. K. Das Department of Mechanical Engineering Indian Institute of Technology, Kharagpur

Applied Thermodynamics for Marine Systems Prof. P. K. Das Department of Mechanical Engineering Indian Institute of Technology, Kharagpur Applied Thermodynamics for Marine Systems Prof. P. K. Das Department of Mechanical Engineering Indian Institute of Technology, Kharagpur Lecture - 21 Psychometric Processes Good afternoon, yesterday we

More information

Section 2 of 6 Applied Psychrometrics

Section 2 of 6 Applied Psychrometrics Section 2 of 6 Applied Psychrometrics Psychrometric chart - your energy map Key psychrometric variables for humidity Predicting building condensation Hot weather Cold weather Predicting moisture sorption

More information

The Choice of Supply Design Conditions

The Choice of Supply Design Conditions 6 The Choice of Supply Design Conditions 6.1 Sensible heat removal If there is a continuous source of heat having an output of Q in a hermetically sealed room the temperature within the room, tr, will

More information

NEBB Fundamental Formulas

NEBB Fundamental Formulas Approved NEBB - May 1, 17 Page 1 of 8 Version 1.3 A = Area (ft²) IP, (m²) SI M = Mass (lb) IP, (kg) SI ACH = Air Changes per Hour ma = Mixed Air Ak = Effective Area m = meter (metre) AV = Average m³/s

More information

Draft for comment (613) Public Works Canada Design & Construction Technology DRAn' 1 July, Computer-Aided Design Centre (CAD) TSS COPY

Draft for comment (613) Public Works Canada Design & Construction Technology DRAn' 1 July, Computer-Aided Design Centre (CAD) TSS COPY ~------------ 6. (c) Public Works Canada Design & Construction Technology DRAn' 1 July, 1980 Draft for comment Computer-Aided Design Centre (CAD) TSS COPY DO NOT REMOVE User enquiries and requests for

More information

File:Psych1HeatCoil.EES 10/21/2003 3:41:38 PM Page 1 EES Ver : #317: CEAE University of Colorado, Boulder

File:Psych1HeatCoil.EES 10/21/2003 3:41:38 PM Page 1 EES Ver : #317: CEAE University of Colorado, Boulder File:Psych1HeatCoil.EES 10/21/2003 3:41:38 PM Page 1 "AREN 3010 In-Class Psychrometric Problem #1" " Moist air enters a heating coil at 40 F dry-bulb temperature and 36 F wet-bulb temperature at a rate

More information

INVESTIGATION OF THE PERFORMANCE OF COOLING PANELS: CEILING AND FLOOR PANElS.

INVESTIGATION OF THE PERFORMANCE OF COOLING PANELS: CEILING AND FLOOR PANElS. INVESTIGATION OF THE PERFORMANCE OF COOLING PANELS: CEILING AND FLOOR PANElS. * M. Hammad, Al Helo, S. And Khlaif, B. University of Jordan. Mechanical Engineering Department. hammad@ju.edu.jo 1.0 ABSTRACT:

More information

Water-Temperature-Dependent Wet Bulb Temperature Calculation

Water-Temperature-Dependent Wet Bulb Temperature Calculation Water-Temperature-Dependent Wet Bulb Temperature Calculation Oxycom Fresh Air BV December 7th, 2012 Abstract A numerical solution for the exact calculation of the wet bulb temperature of air has been derived,

More information

MAHALAKSHMI ENGINEERING COLLEGE

MAHALAKSHMI ENGINEERING COLLEGE MAHALAKSHMI ENGINEERING COLLEGE TIRUCHIRAPALLI 621 213. Department: Mechanical Subject Code: ME2202 Semester: III Subject Name: ENGG. THERMODYNAMICS UNIT-I Basic Concept and First Law 1. What do you understand

More information

Vapor Pressure Deficit and HVAC System Design

Vapor Pressure Deficit and HVAC System Design Application Note 28 Vapor Pressure Deficit and HVAC System Design I NTRODUCTION There exists a communication gap between different players in the grow room industry that at times complicates the ability

More information

CZECH TECHNICAL UNIVERSITY IN PRAGUE FACULTY OF MECHANICAL ENGINEERING DEPARTMENT OF ENVIRONMENTAL ENGINEERING

CZECH TECHNICAL UNIVERSITY IN PRAGUE FACULTY OF MECHANICAL ENGINEERING DEPARTMENT OF ENVIRONMENTAL ENGINEERING CZECH TECHNICAL UNIVERSITY IN PRAGUE FACULTY OF MECHANICAL ENGINEERING DEPARTMENT OF ENVIRONMENTAL ENGINEERING APPLICABILITY OF CHILLED BEAM-SYSTEM IN THE MIDDLE EAST BACHELOR THESIS JACQUES MATTA 2 EE

More information

IMPROVING THE PERFORMANCE OF AN AC UNIT USING CFD

IMPROVING THE PERFORMANCE OF AN AC UNIT USING CFD 3 rd HVAC Contracting Conference Evolution of HVAC Industry International Hotel Doha The City November 25-26, 2018 IMPROVING THE PERFORMANCE OF AN AC UNIT USING CFD F. Moualled Mechanical Engineering Department

More information

ANALYSIS OF THE MICROCLIMATE OF SÃO CRISTÓVÃO AND ITS INFLUENCE IN HEATING SYSTEMS, VENTILATING AND AIR CONDITIONING (HVAC)

ANALYSIS OF THE MICROCLIMATE OF SÃO CRISTÓVÃO AND ITS INFLUENCE IN HEATING SYSTEMS, VENTILATING AND AIR CONDITIONING (HVAC) ANALYSIS OF THE MICROCLIMATE OF SÃO CRISTÓVÃO AND ITS INFLUENCE IN HEATING SYSTEMS, VENTILATING AND AIR CONDITIONING (HVAC) Monteiro, M.F.M., marcelofmm@gmail.com Bernardes, T.L.P, thamires-bernaredes@hotmail.com

More information

1. Water Vapor in Air

1. Water Vapor in Air 1. Water Vapor in Air Water appears in all three phases in the earth s atmosphere - solid, liquid and vapor - and it is one of the most important components, not only because it is essential to life, but

More information

Prediction of Evaporation Losses in Wet Cooling Towers

Prediction of Evaporation Losses in Wet Cooling Towers Heat Transfer Engineering, 27(9):86 92, 2006 Copyright C Taylor and Francis Group, LLC ISSN: 0145-7632 print / 1521-0537 online DOI: 10.1080/01457630600846372 Prediction of Evaporation Losses in Wet Cooling

More information

LECTURE 5 THE CONTENTS OF THIS LECTURE ARE AS FOLLOWS: 1.0 SOME OF THE THEORETICAL CONCEPTS INVOLVED IN HEAT FLOW. 1.1 Sensible Heat Flow

LECTURE 5 THE CONTENTS OF THIS LECTURE ARE AS FOLLOWS: 1.0 SOME OF THE THEORETICAL CONCEPTS INVOLVED IN HEAT FLOW. 1.1 Sensible Heat Flow LECTURE 5 THE CONTENTS OF THIS LECTURE ARE AS FOLLOWS: 1.0 SOME OF THE THEORETICAL CONCEPTS INVOLVED IN HEAT FLOW 1.1 Sensible Heat Flow 1.2 Latent heat Flow 1.3 Humidity 1.4 Thermostat Condition in the

More information

UNIT 12: THE HYDROLOGIC CYCLE

UNIT 12: THE HYDROLOGIC CYCLE UNIT 12: THE HYDROLOGIC CYCLE After Unit 12 you should be able to: o Effectively use the charts Average Chemical Composition of Earth s Crust, Hydrosphere and Troposphere, Selected Properties of Earth

More information

COMMERCIAL HEAT GAIN - HEAT LOSS CALCULATION LOAD FORM

COMMERCIAL HEAT GAIN - HEAT LOSS CALCULATION LOAD FORM COMMERCIAL HEAT GAIN - HEAT LOSS CALCULATION LOAD FORM Job Name: Address: Phone/Fax/Email: Contractor: Address: Phone/Fax/Email: Heat Gain Summary Sensible Heat (Btu/h) Latent Heat (Btu/h) Total Heat Gain

More information

Theory. Humidity h of an air-vapor mixture is defined as the mass ratio of water vapor and dry air,

Theory. Humidity h of an air-vapor mixture is defined as the mass ratio of water vapor and dry air, Theory Background In a cooling tower with open water circulation, heat is removed from water because of the material and heat exchange between the water and the ambient air. The cooling tower is a special

More information

UBMCC11 - THERMODYNAMICS. B.E (Marine Engineering) B 16 BASIC CONCEPTS AND FIRST LAW PART- A

UBMCC11 - THERMODYNAMICS. B.E (Marine Engineering) B 16 BASIC CONCEPTS AND FIRST LAW PART- A UBMCC11 - THERMODYNAMICS B.E (Marine Engineering) B 16 UNIT I BASIC CONCEPTS AND FIRST LAW PART- A 1. What do you understand by pure substance? 2. Define thermodynamic system. 3. Name the different types

More information

FORCED-CIRCULATION AIR-COOLING AND AIR-HEATING COILS

FORCED-CIRCULATION AIR-COOLING AND AIR-HEATING COILS Certification Program for FORCED-CIRCULATION AIR-COOLING AND AIR-HEATING OPERATIONAL MANUAL APRIL 1981 ADDENDUM Administered by AIR-CONDITIONING AND REFRIGERATION INSTITUTE 4100 North Fairfax Dr. Suite

More information

h-x diagram (psychrometric chart)

h-x diagram (psychrometric chart) h-x diagram (psychrometric chart) Determination of physical and thermodynamic properties of gas-vapour mixtures Department for Building Service and Process Engineering Balázs Bokor, PhD student Building

More information

We are IntechOpen, the first native scientific publisher of Open Access books. International authors and editors. Our authors are among the TOP 1%

We are IntechOpen, the first native scientific publisher of Open Access books. International authors and editors. Our authors are among the TOP 1% We are IntechOpen, the first native scientific publisher of Open Access books 3,350 108,000 1.7 M Open access books available International authors and editors Downloads Our authors are among the 151 Countries

More information

Data Analysis and Mechanical System Performance. Denver Art Museum August 15-16, 2012

Data Analysis and Mechanical System Performance. Denver Art Museum August 15-16, 2012 Data Analysis and Mechanical System Performance Denver Art Museum August 15-16, 2012 Data Analysis Reading graphs Overlay of indoor and outdoor dew point graphs What you can learn about your mechanical

More information

7. The weather instrument below can be used to determine relative humidity.

7. The weather instrument below can be used to determine relative humidity. 1. What is the dewpoint temperature when the dry-bulb temperature is 12 C and the wet-bulb temperature is 7 C? A) 1 C B) -2 C C) -5 C D) 4 C 2. A parcel of air has a dry-bulb temperature reading of 16

More information

ESTIMATION OF AUTOMOBILE COOLING LOADS FOR AIR CONDITIONING SYSTEM DESIGN

ESTIMATION OF AUTOMOBILE COOLING LOADS FOR AIR CONDITIONING SYSTEM DESIGN Nigerian Research Journal of Engineering and Environmental Sciences 596 Original Research Article ESTIMATION OF AUTOMOBILE COOLING LOADS FOR AIR CONDITIONING SYSTEM DESIGN *Omo-Oghogho, E., Aliu, S.A.,

More information

Part III: Planes, Trains, and Automobiles: Making Heat Work for You

Part III: Planes, Trains, and Automobiles: Making Heat Work for You Contents at a Glance Introduction... 1 Part I: Covering the Basics in Thermodynamics... 7 Chapter 1: Thermodynamics in Everyday Life...9 Chapter 2: Laying the Foundation of Thermodynamics...15 Chapter

More information

Thermodynamics Introduction and Basic Concepts

Thermodynamics Introduction and Basic Concepts Thermodynamics Introduction and Basic Concepts by Asst. Prof. Channarong Asavatesanupap Mechanical Engineering Department Faculty of Engineering Thammasat University 2 What is Thermodynamics? Thermodynamics

More information

AE 205 Materials and Energy Balances Asst. Prof. Dr. Tippabust Eksangsri. Chapter 6 Energy Balances on Chemical Processes

AE 205 Materials and Energy Balances Asst. Prof. Dr. Tippabust Eksangsri. Chapter 6 Energy Balances on Chemical Processes AE 205 Materials and Energy Balances Asst. Prof. Dr. Tippabust Eksangsri Chapter 6 Energy Balances on Chemical Processes Thermodynamics system surroundings system boundary Forms of Energy 1. Energy Possessed

More information

Ventilation. 6 Heat Exchangers. Air-conditioning processes. Vladimír Zmrhal (room no. 814)

Ventilation. 6 Heat Exchangers. Air-conditioning processes. Vladimír Zmrhal (room no. 814) Ventilation 6 Heat Exchangers Vladimír Zmrhal (room no. 814) http://users.fs.cvut.cz/~zmrhavla/index.htm Dpt. Of Environmental Engineering 1 Air-conditioning processes comfort 2 1 Dimensioning of air-conditioning

More information

MEASUREMENT OF WBGT INDEX IN AXIAL FLOW AS THE MAIN THERMODYNAMIC PARAMETERS VARY G.

MEASUREMENT OF WBGT INDEX IN AXIAL FLOW AS THE MAIN THERMODYNAMIC PARAMETERS VARY G. MEASUREMENT OF WBGT INDEX IN AXIAL FLOW AS THE MAIN THERMODYNAMIC PARAMETERS VARY G. Buonanno, M. Dell'Isola, A. Frattolillo and L. Vanoli Di.M.S.A.T. - Università di Cassino via Di Biasio 43-03043 Cassino

More information

Non-Reacting Gas Mixtures. Introduction. P-V-T Relationships for Ideal Gas Mixtures. Amagat Model (law of additive volumes)

Non-Reacting Gas Mixtures. Introduction. P-V-T Relationships for Ideal Gas Mixtures. Amagat Model (law of additive volumes) Non-Reacting Gas Mixtures Reading Problems 13-1 13-3 13-52, 13-60 14-1 14-7 14-32, 14-35, 14-68, 14-71, 14-75 14-79, 14-103, 14-112 Introduction homogeneous gas mixtures are frequently treated as a single

More information

Validation of IDA Indoor Climate and Energy

Validation of IDA Indoor Climate and Energy Technical report: Validation of IDA Indoor Climate and Energy 4.0 build 4 with respect to ANSI/ASHRAE Standard 140-2004 April 2010 Equa Simulation AB Råsundavägen 100 169 57 Solna Sweden Contents 1 Introduction

More information

Computational techniques applied to design ventilation system for the preservation of the tombs of the valley of Kings, Luxor

Computational techniques applied to design ventilation system for the preservation of the tombs of the valley of Kings, Luxor Copyright 2010 ICCES ICCES, vol.15, no.2, pp.47-55 Computational techniques applied to design ventilation system for the preservation of the tombs of the valley of Kings, Luxor Essam E Khalil 1 Summary

More information

Weather is the state or condition of the atmosphere at a given location for a brief time period.

Weather is the state or condition of the atmosphere at a given location for a brief time period. Topic 8: WEATHER Workbook chapter 7 Weather is the state or condition of the atmosphere at a given location for a brief time period. Differences in how Earth s surfaces absorb and reradiate energy from

More information

Simulation of Heat and Mass Transfer in the Corrugated Packing of the Counter Flow Cooling Tower

Simulation of Heat and Mass Transfer in the Corrugated Packing of the Counter Flow Cooling Tower Kasetsart J. (Nat. Sci.) 42 : 59-577 (2008) Simulation of Heat and Mass Transfer in the Corrugated Packing of the Counter Flow Cooling Tower Montri Pirunkaset* and Santi Laksitanonta BSTRCT This paper

More information

BACK TO BASICS: PIPE INSULATION

BACK TO BASICS: PIPE INSULATION BACK TO BASICS: PIPE INSULATION INDUSTRIAL REFRIGERATION CONSORTIUM RESEARCH & TECHNOLOGY FORUM MAY 2-3, 2012 Todd Jekel, Ph.D., P.E. Assistant Director, IRC Overview 1 2 3 4 Basics of insulation & insulation

More information

Development of Economic Impact Models for RTU Economizer Faults

Development of Economic Impact Models for RTU Economizer Faults Purdue University Purdue e-pubs International Refrigeration and Air Conditioning Conference School of Mechanical Engineering 2014 Development of Economic Impact Models for RTU Economizer Faults Andrew

More information

Section 3.5 Thermal Comfort and Heat Stress

Section 3.5 Thermal Comfort and Heat Stress Section 3.5 Thermal Comfort and Heat Stress Table 3.6 Metabolic rate as a function of physical activity for a 70 kg adult man (abstracted from ASHRAE, 1997). activity metabolic rate (W) metabolic rate

More information

Topic 1 The Atmosphere and Atmospheric Variables

Topic 1 The Atmosphere and Atmospheric Variables Name Notes: Topic 1 The Atmosphere Regents Earth Science Topic 1 The Atmosphere and Atmospheric Variables What is the atmosphere? Meteorology is the study of A. Structure of the Atmosphere: What two gases

More information

MARIA COLLEGE OF ENGINEERING AND TECHNOLOGY

MARIA COLLEGE OF ENGINEERING AND TECHNOLOGY MARIA COLLEGE OF ENGINEERING AND TECHNOLOGY ATTOOR ENGINEERING THERMODYNAMICS (TWO MARK QUESTION BANK) UNIT 1 (BASIC COMCEPTS AND FIRST LAW) 1. Define the term thermal engineering. Thermal engineering

More information

DEPARTMENT OF MECHANICAL ENGINEERING ME6301-ENGINEERING THERMODYNAMICS

DEPARTMENT OF MECHANICAL ENGINEERING ME6301-ENGINEERING THERMODYNAMICS SYED AMMAL ENGINEERING COLLEGE (Approved by the AICTE, New Delhi, Govt. of Tamilnadu and Affiliated to Anna University, chennai) Established in 1998 - An ISO 9001:2008 Certified Institution Dr. E.M.Abdullah

More information

Lecture Ch. 6. Condensed (Liquid) Water. Cloud in a Jar Demonstration. How does saturation occur? Saturation of Moist Air. Saturation of Moist Air

Lecture Ch. 6. Condensed (Liquid) Water. Cloud in a Jar Demonstration. How does saturation occur? Saturation of Moist Air. Saturation of Moist Air Lecture Ch. 6 Saturation of moist air Relationship between humidity and dewpoint Clausius-Clapeyron equation Dewpoint Temperature Depression Isobaric cooling Moist adiabatic ascent of air Equivalent temperature

More information

Density of Air & Water Part 2

Density of Air & Water Part 2 Density of Air & Water Part 2 Here is part 2 from Michael Housh from Housh Home Energy in Ohio. Thanks Michael! This is part two in a series on a deeper look into the Sensible Heat Rate Equations. The

More information

Department of Mechanical Engineering ME 322 Mechanical Engineering Thermodynamics. Lecture 33. Psychrometric Properties of Moist Air

Department of Mechanical Engineering ME 322 Mechanical Engineering Thermodynamics. Lecture 33. Psychrometric Properties of Moist Air Deprtment of Mechnicl Engineering ME 3 Mechnicl Engineering hermodynmics Lecture 33 sychrometric roperties of Moist Air Air-Wter Vpor Mixtures Atmospheric ir A binry mixture of dry ir () + ter vpor ()

More information

R13 SET - 1 '' ''' '' ' '''' Code No RT21033

R13 SET - 1 '' ''' '' ' '''' Code No RT21033 SET - 1 II B. Tech I Semester Supplementary Examinations, June - 2015 THERMODYNAMICS (Com. to ME, AE, AME) Time: 3 hours Max. Marks: 70 Note: 1. Question Paper consists of two parts (Part-A and Part-B)

More information

The Water Cycle. Water in the Atmosphere AOSC 200 Tim Canty. Class Web Site:

The Water Cycle. Water in the Atmosphere AOSC 200 Tim Canty. Class Web Site: Water in the Atmosphere AOSC 200 Tim Canty Class Web Site: http://www.atmos.umd.edu/~tcanty/aosc200 Topics for today: Latent Heat Evaporation & Saturation Relative Humidity Dew Point Lecture 11 Oct 2 2018

More information

HEAT CONTENT DECREASES U D R HEAT CONTENT INCREASESO. Btu/lb

HEAT CONTENT DECREASES U D R HEAT CONTENT INCREASESO. Btu/lb Pressure (psia) LINES OF CONSTANT ENTHALPY PRESSURE P R E S S U R E R I S E S P R E S S HEAT CONTENT DECREASES U R E D R HEAT CONTENT INCREASESO P S Btu/lb Heat Content Pressure (psia) SATURATION CURVE

More information

(Refer Slide Time: 00:00:43 min) Welcome back in the last few lectures we discussed compression refrigeration systems.

(Refer Slide Time: 00:00:43 min) Welcome back in the last few lectures we discussed compression refrigeration systems. Refrigeration and Air Conditioning Prof. M. Ramgopal Department of Mechanical Engineering Indian Institute of Technology, Kharagpur Lecture No. # 14 Vapour Absorption Refrigeration Systems (Refer Slide

More information

Thermal behavior and Energetic Dispersals of the Human Body under Various Indoor Air Temperatures at 50% Relative Humidity

Thermal behavior and Energetic Dispersals of the Human Body under Various Indoor Air Temperatures at 50% Relative Humidity Thermal behavior and Energetic Dispersals of the Human Body under Various Indoor Air Temperatures at 50% Relative Humidity Hakan CALISKAN Usak University, Department of Mechanical Engineering, Usak, Turkey

More information

Name Class Date. 3. In what part of the water cycle do clouds form? a. precipitation b. evaporation c. condensation d. runoff

Name Class Date. 3. In what part of the water cycle do clouds form? a. precipitation b. evaporation c. condensation d. runoff Skills Worksheet Directed Reading B Section: Water in the Air 1. What do we call the condition of the atmosphere at a certain time and place? a. the water cycle b. weather c. climate d. precipitation THE

More information

ea980r Digital Anemometer User Manual

ea980r Digital Anemometer User Manual ea980r Digital Anemometer User Manual 1. Overview Thank you for purchasing the ennologic ea980r anemometer, a high quality instrument which measures 8 parameters: Wind Speed (mph, m/s, ft/min, knots, km/h)

More information

ATMO 551a Moist Adiabat Fall Change in internal energy: ΔU

ATMO 551a Moist Adiabat Fall Change in internal energy: ΔU Enthalpy and the Moist Adiabat We have described the dry adiabat where an air parcel is lifted rapidly causing the air parcel to expand as the environmental pressure decreases and the air parcel does work

More information

SEM-2017(03HI MECHANICAL ENGINEERING. Paper II. Please read each of the following instructions carefully before attempting questions.

SEM-2017(03HI MECHANICAL ENGINEERING. Paper II. Please read each of the following instructions carefully before attempting questions. We RoU No. 700095 Candidate should write his/her Roll No. here. Total No. of Questions : 7 No. of Printed Pages : 7 SEM-2017(03HI MECHANICAL ENGINEERING Paper II Time ; 3 Hours ] [ Total Marks : 0 Instructions

More information

Introduction. Lecture 6: Water in Atmosphere. How Much Heat Is Brought Upward By Water Vapor?

Introduction. Lecture 6: Water in Atmosphere. How Much Heat Is Brought Upward By Water Vapor? Lecture 6: Water in Atmosphere Introduction Over 70% of the planet is covered by water Water is unique in that it can simultaneously exist in all three states (solid, liquid, gas) at the same temperature

More information

Radiation, Sensible Heat Flux and Evapotranspiration

Radiation, Sensible Heat Flux and Evapotranspiration Radiation, Sensible Heat Flux and Evapotranspiration Climatological and hydrological field work Figure 1: Estimate of the Earth s annual and global mean energy balance. Over the long term, the incoming

More information

ME 2202 ENGINEERING THERMODYNAMICS TWO MARKS QUESTIONS AND ANSWERS UNIT I BASIC CONCEPTS AND FIRST LAW

ME 2202 ENGINEERING THERMODYNAMICS TWO MARKS QUESTIONS AND ANSWERS UNIT I BASIC CONCEPTS AND FIRST LAW ME 2202 ENGINEERING THERMODYNAMICS TWO MARKS QUESTIONS AND ANSWERS UNIT I BASIC CONCEPTS AND FIRST LAW 1. What is thermodynamics? It is a basic science that deals with energy and its transformations. The

More information

PSYCHROMETRIC CONCEPTS FOR HVAC PROJECT MANAGERS

PSYCHROMETRIC CONCEPTS FOR HVAC PROJECT MANAGERS WTF Fachgespräch 5 PSYCHROMETRIC CONCEPTS FOR HVAC PROJECT MANAGERS PART 1 EIGHT KEY PROPERTIES LEARNING BY BUILDING YOUR OWN CHART PART 2 PSYCHROMETRIC PROCESSES Copyright 2014 by Mat Ansari, WESTERN

More information

Preparation of Psychrometric Charts for Alcohol Vapours in Nitrogen

Preparation of Psychrometric Charts for Alcohol Vapours in Nitrogen Korean J. Chem. Eng., 17(1), 93-100 (000) Preparation of Psychrometric Charts for Alcohol Vapours in Nitrogen David C. Shallcross Department of Chemical Engineering, he University of Melbourne, Parkville,

More information

Heat stress index. Dewpoint. pressure. altitude

Heat stress index. Dewpoint. pressure. altitude Kestrel 4200 Measures Volume air flow in cfm, L/s, m³/s, m³/m, m³/h Air velocity (current, average, and maximum) Heat stress index Windchill Relative humidity Dewpoint in F or C Humidity ratio Barometric

More information

ANSI/AHRI Standard (Formerly ARI Standard ) 2006 Standard for Performance Rating of Desuperheater/Water Heaters

ANSI/AHRI Standard (Formerly ARI Standard ) 2006 Standard for Performance Rating of Desuperheater/Water Heaters ANSI/AHRI Standard 470-2006 (Formerly ARI Standard 470-2006) 2006 Standard for Performance Rating of Desuperheater/Water Heaters IMPORTANT SAFETY DISCLAIMER AHRI does not set safety standards and does

More information

Lecture 07 February 10, 2010 Water in the Atmosphere: Part 1

Lecture 07 February 10, 2010 Water in the Atmosphere: Part 1 Lecture 07 February 10, 2010 Water in the Atmosphere: Part 1 About Water on the Earth: The Hydrological Cycle Review 3-states of water, phase change and Latent Heat Indices of Water Vapor Content in the

More information

Weather, Atmosphere and Meteorology

Weather, Atmosphere and Meteorology S c i e n c e s Weather, Atmosphere and Meteorology Key words: Atmosphere, Ozone, Water vapor, solar radiation, Condensation, Evaporation, Humidity, Dew-Point Temperature, Cirrus Clouds, Stratus Clouds,

More information

COOLING TOWER MODEL IN MNR

COOLING TOWER MODEL IN MNR COOLING TOWER MODEL IN MNR 1 COOLING TOWER MODEL The cooling tower model used in Liu s study [2] was adapted from the model developed by Eric Weber (1988). One modification is the use of a counterflow

More information

Chapter 7. Water and Atmospheric Moisture. Water on Earth Unique Properties of Water Humidity Atmospheric Stability Clouds and Fog

Chapter 7. Water and Atmospheric Moisture. Water on Earth Unique Properties of Water Humidity Atmospheric Stability Clouds and Fog Chapter 7 Water and Atmospheric Moisture Robert W. Christopherson Charlie Thomsen Water kept both the terrestrial and marine ecosystems closely linked with the atmosphere. (1) Air carries water vapor and

More information

Chapter 4 Water Vapor

Chapter 4 Water Vapor Chapter 4 Water Vapor Chapter overview: Phases of water Vapor pressure at saturation Moisture variables o Mixing ratio, specific humidity, relative humidity, dew point temperature o Absolute vs. relative

More information

Open PRAIRIE: Open Public Research Access Institutional Repository and Information Exchange

Open PRAIRIE: Open Public Research Access Institutional Repository and Information Exchange South Dakota State University Open PRAIRIE: Open Public Research Access Institutional Repository and Information Exchange Theses and Dissertations 2016 The Effects of Diffuser Exit Velocity and Distance

More information

R- 410A R-22 Size (tons) Shipping Weight (lbs) WLAU184AA 1-1/ WLAU182AA 1-1/ WLAU244AA. Model /2

R- 410A R-22 Size (tons) Shipping Weight (lbs) WLAU184AA 1-1/ WLAU182AA 1-1/ WLAU244AA. Model /2 EVAPORATOR COILS A COIL - UNCASED R- 410A or R- 22 SYSTEMS 1 1/2 5 Tons WLAU Use of the AHRI Certified TM Mark indicates a manufacturer s participation in the program. For verification of certification

More information

Technical Reference Note

Technical Reference Note Technical Reference Note Air Conditioning Contractors of America, s2800 Shirlington Road, Suite Suite 300, 300Arlington, s VA, VA 22206, 22206 703-575-4477, s7035754477 Fax sfax 703-575-4449 7035754449

More information

LAB 3: Atmospheric Pressure & Moisture

LAB 3: Atmospheric Pressure & Moisture Name School LAB 3: Atmospheric Pressure & Moisture Our atmosphere is a very dynamic area especially when we see what type of interactions it has with the surrounding environment. This lab will begin discussing

More information

Taking the garbage out of energy modeling through calibration

Taking the garbage out of energy modeling through calibration Taking the garbage out of energy modeling through calibration Presented to the Madison Chapter of ASHRAE February 8, 2016 Presented by Benjamin Skelton P.E. BEMP President, Cyclone Energy Group Acknowledgments

More information

DEVELOPMENT OF COOLING LOAD TEMPERATURE DIFFERENTIAL VALUES FOR BUILDING ENVELOPES IN THAILAND

DEVELOPMENT OF COOLING LOAD TEMPERATURE DIFFERENTIAL VALUES FOR BUILDING ENVELOPES IN THAILAND DEVELOPMENT OF COOLING LOAD TEMPERATURE DIFFERENTIAL VALUES FOR BUILDING ENVELOPES IN THAILAND Somsak Chaiyapinunt*, Khemmachart Mangkornsaksit, and Boonyarit Phueakphongsuriya ABSTRACT This article describes

More information

Lecture 3: DESIGN CONSIDERATION OF DRIERS

Lecture 3: DESIGN CONSIDERATION OF DRIERS Lecture 3: DESIGN CONSIDERATION OF DRIERS 8. DESIGN OF DRYER Design of a rotary dryer only on the basis of fundamental principle is very difficult. Few of correlations that are available for design may

More information

1. DEFINITIONS. B. BTUH Hourly Rate of change in Mass Heat BTUH = * CFM * ΔT (Air Heat Transfer) BTUH = 500 * GPM * ΔT (Water Heat Transfer)

1. DEFINITIONS. B. BTUH Hourly Rate of change in Mass Heat BTUH = * CFM * ΔT (Air Heat Transfer) BTUH = 500 * GPM * ΔT (Water Heat Transfer) 1. DEFINITIONS A. BTU - The amount of Heat ( Q ) to change One Pound of Water 1F A Gallon of Water at 70F (room temperature) is 8.33 Pounds A Pint is a Pound the World Around A Pint of Water is 1.04 Pounds

More information

Thermal Fluid System Design. Team Design #1

Thermal Fluid System Design. Team Design #1 Thermal Fluid System Design Team Design #1 Table of Contents Nomenclature Listing.3 Executive Summary.6 Introduction.7 Analysis.8 Results/Discussion..18 Conclusion..29 References..29 Appendix A: Detailed

More information

Water in the Atmosphere

Water in the Atmosphere Water in the Atmosphere Characteristics of Water solid state at 0 o C or below (appearing as ice, snow, hail and ice crystals) liquid state between 0 o C and 100 o C (appearing as rain and cloud droplets)

More information

Performance Rating of Thermal Storage Equipment Used for Cooling

Performance Rating of Thermal Storage Equipment Used for Cooling ANSI/AHRI Standard 900 (formerly AHRI ARI Standard Standard 900900) (I-P) 2014 Standard for Performance Rating of Thermal Storage Equipment Used for Cooling IMPORTANT SAFETY DISCLAIMER AHRI does not set

More information

Exam 1 (Chaps. 1-6 of the notes)

Exam 1 (Chaps. 1-6 of the notes) 10/12/06 ATS 541 - Atmospheric Thermodynamics and Cloud Physics 1 Exam 1 (Chaps. 1-6 of the notes) ATS 541 students: Answer all questions ATS 441 students: You may delete problem 3 or problem 5 1. [10

More information

OPERATIVE TEMPERATURE SIMULATION OF ENCLOSED SPACE WITH INFRARED RADIATION SOURCE AS A SECONDARY HEATER

OPERATIVE TEMPERATURE SIMULATION OF ENCLOSED SPACE WITH INFRARED RADIATION SOURCE AS A SECONDARY HEATER OPERATIVE TEMPERATURE SIMULATION OF ENCLOSED SPACE WITH INFRARED RADIATION SOURCE AS A SECONDARY HEATER L. Hach 1, K. Hemzal 2, Y. Katoh 3 1 Institute of Applied Physics and Mathematics, Faculty of Chemical

More information

Temperature (T) degrees Celsius ( o C) arbitrary scale from 0 o C at melting point of ice to 100 o C at boiling point of water Also (Kelvin, K) = o C

Temperature (T) degrees Celsius ( o C) arbitrary scale from 0 o C at melting point of ice to 100 o C at boiling point of water Also (Kelvin, K) = o C 1 2 3 4 Temperature (T) degrees Celsius ( o C) arbitrary scale from 0 o C at melting point of ice to 100 o C at boiling point of water Also (Kelvin, K) = o C plus 273.15 0 K is absolute zero, the minimum

More information

A. Weather - the conditions of the variables of the atmosphere for any short period of time

A. Weather - the conditions of the variables of the atmosphere for any short period of time WEATHER & THE ATMOSPHERE A. Weather - the conditions of the variables of the atmosphere for any short period of time Meteorology - the study of weather and weather related variables - the variables: Topic

More information

CHAPTER 2. HVAC FUNDAMENTALS

CHAPTER 2. HVAC FUNDAMENTALS CHAPTER. HVAC FUNDAMENTALS. Human Thermal Comfort. Basic Physics.3 Properties of Moist Air.4 Energy Transport in HVAC Systems.5 HVAC Load Estimation. HUMAN THERMAL COMFORT.. Variables Affecting Thermal

More information

1. INTRODUCTION TO REFRIGERATION AND AIR CONDITION

1. INTRODUCTION TO REFRIGERATION AND AIR CONDITION CHAPTER ONE 1. INTRODUCTION TO REFRIGERATION AND AIR CONDITION Refrigeration may be defined as the process of reducing and maintaining a temperature of a space or material below that of the surroundings.

More information

Dew Point and Cloud Formation

Dew Point and Cloud Formation Name: Date: ES: 1 2 3 4 Dew Point and Cloud Formation Part A: Run some water over your hands. After shaking off the excess, wave them back and forth until they are dry. 1. Describe the change in temperature

More information

Content. Climate Parameters used for the measurement and recording of weather phenomena The Psychrometric Chart

Content. Climate Parameters used for the measurement and recording of weather phenomena The Psychrometric Chart Climate Content Climate Parameters used for the measurement and recording of weather phenomena The Psychrometric Chart Climate Climate is a measure of the average pattern of variation in temperature, humidity,

More information