Room heat loss to open door? - Program Idea

AI Thread Summary
A user is developing a C++ project to calculate heat loss in a room when a door or window is open, seeking a formula to assess the impact of ambient and outside air temperatures influenced by wind. Key mechanisms discussed include turbulence and convection, which affect how air enters and exits through openings. The complexity of accurately calculating heat loss due to varying ventilation rates is highlighted, suggesting that empirical data from real-world studies may be more useful than theoretical models. The conversation references specific studies on airflow through large openings and emphasizes the need to consider factors like temperature differences and wind speed in calculations. Overall, the challenge of quantifying heat loss through open doors is acknowledged as intricate and multifaceted.
mkjt88
Messages
1
Reaction score
0
Hello all. I've been teaching myself C++ programming and had an idea for a project. I am building a calculator for the heat loss of a room when an outside door/window is open. I'm currently writing out the functions I need to make this happen... Now what I need help with is this. I can't seem to stumble upon a formula I can use to test ambient air to outside air temps through the means of wind or just exposing the two through the door. I guess it's not the best explanation but do you get what I mean?? I plan to add in three variables if necessary to match if higher wind speeds were forcing more cold air in. Anyway any help on how to solve this would be much appreciated.
 
Science news on Phys.org
That's a tricky problem. Consider.. How does any air get in if there is no way for the air to get out? I can think of two mechanisims...

1) Turbulence - allowing air to enter one part of the door opening and exit via another.
2) Convection - cold air enters at the bottom and warm air leaves at the top.

I can see a host of factors altering the amount of ventilation an open door provides. I doubt it's going to be possible to calculate all this from first principles. Probably best see if you can google up data on energy lost from real world trials. Perhaps it's been done for retail stores that have open doors?

If you can find data on typical air flow rates through an open door its possible to caculate the implied heat loss..

The power lost to ventilation is given by:

Power = Temperature delta * Volumetric heat capacity of air * flow rate

If air conditioning is involved it's probably more complicated due to the water content to the air.
 
I haven't read it but a quick scan might give you an idea of the complexity...

http://www.ecbcs.org/docs/annex_20_air_flow_through_large.pdf

Selected quotes..

Airflow Through Large Openings on Buildings

New studies of interzonal airflow and single sided ventilation at seven laboratories in Europe and Canada, have then been canied out in this project's framework and have led to improved models.

The single sided ventilation studies (chapter 4) were designed to determine the effect of wind on the ventilation and/or heat loss rates through openings in one external wall only. Collaboration between four european laboratories led to the following conuibutions :

- CSTB test house at Bouin, France, with horizontal slit, to measure internal pressures and the effect of air compressibility
- BBRI attic test room at Gent, Belgium, with open window, to monitor long term ventilation rates and assess possible correlations with measured parameters including wind, temperature and surface pressures
- BRE office at Garston, England, with open window, to assess the time dependence of
ventilation rates following the opening of the window, due to the combined effect of the wind and the thermal properties of the room.
- EPFL offices at Lausanne, Switzerland, with open window, to study the energy consequences of user behaviour by measuring the time dependence of cooling induced by natural ventilation for rooms of different thermal mass.
 
Heat loss is a factor of conduction, convection, radiation. As noted already, with an open door it is VERY complicated.

You can find formulas for calculating heat losses in a closed room...In those, an air exchange flow with the outside, as through window and door frames is assumed.
And they have formulas for various temperature differences and outside wind speed.
 
I need to calculate the amount of water condensed from a DX cooling coil per hour given the size of the expansion coil (the total condensing surface area), the incoming air temperature, the amount of air flow from the fan, the BTU capacity of the compressor and the incoming air humidity. There are lots of condenser calculators around but they all need the air flow and incoming and outgoing humidity and then give a total volume of condensed water but I need more than that. The size of the...
Thread 'Why work is PdV and not (P+dP)dV in an isothermal process?'
Let's say we have a cylinder of volume V1 with a frictionless movable piston and some gas trapped inside with pressure P1 and temperature T1. On top of the piston lay some small pebbles that add weight and essentially create the pressure P1. Also the system is inside a reservoir of water that keeps its temperature constant at T1. The system is in equilibrium at V1, P1, T1. Now let's say i put another very small pebble on top of the piston (0,00001kg) and after some seconds the system...
Back
Top