Question-and-Answer Resource for the Building Energy Modeling Community
Get started with the Help page
Ask Your Question
4

Do weather files have an impact on the ground temperature of a vertical heat exchanger (boreholes)?

asked 2021-05-22 08:56:33 -0500

Pieter_Proot's avatar

updated 2021-05-23 09:26:05 -0500

We evaluate the ​impact of future climate scenarios on the performance (cooling potential & thermal comfort) of a floor cooling system coupled to a (fluid to fluid) heat exchanger that is connected to a heat pump (compressor is not active during summer = passive cooling). This whole system is connected to ​a vertical ground source heat exchanger (2 boreholes​).

Our supervisor developed typical weather files for the future climate scenario's. (parameters: outdoor temperature, solar radiation, wind ...) But no specific parameter for the ground temperature ( in future) has made and put into those epw files. We filled in a ground temperature of 13°C (for the vertical ground heat exchanger) for the current climate and validation of our model.

So our question is whether OpenStudio takes into consideration the weather files ( incl. outside temperature, solar radiation, wind ...) to adapt the ground temperature (to 100m deep) of the simulation/model or not? Or do we have to enter a new ground (probably higher) temperature for the future scenarios.

Kind regards, Pieter

edit retag flag offensive close merge delete

1 Answer

Sort by » oldest newest most voted
1

answered 2021-05-25 04:12:51 -0500

updated 2021-05-25 04:17:30 -0500

For clarity, your question actually pertains to how EnergyPlus, which is the simulation engine used by OpenStudio, is handling the ground temperature, not really OpenStudio.

There is a question of how OpenStudio translates the object you are using, which has to be GroundHeatExchangerVertical, is actually translated to the related EnergyPlus objects though.

I suggest your look at the resulting in.idf that OpenStudio generates during ForwardTranslation, in the model companion folder. (so if your model file is model.osm, look next to it into model/run/in.idf to inspect it), but I will give you the lay of land anyways.

Your OpenStudio GroundHeatExchangerVertical will be translated into (links point to the E+ 9.5 Input/Output Reference)

(Note: the reason it differs between OpenStudio and E+ is that this object was added to OpenStudio a long time ago, and at that point EnergyPlus had this structure. The refactor with the introduction of the new GroundHeatExchanger:System was done in E+ 8.9)

The Source for the ForwardTranslator method for this object can be found in ForwardTranslateGroundHeatExchangerVertical.cpp, and that is the definitive source of which fields map to the various E+ objects.

Anyways, the key point is the Site:GroundTemperature:Undisturbed:KusudaAchenbach object, which is used to calculate the ground temperatures at varying depth. The model and its equation is described in the Engineering reference here. How these fields are populated can be easily read ForwardTranslateGroundHeatExchangerVertical.cpp#L193-L214

  • The OpenStudioGroundHeatExchangerVertical'sGround Thermal Conductivityfield is mapped to E+Soil Thermal Conductivity`.
  • The OpenStudio GroundHeatExchangerVertical Ground Temperature field is mapped to the E+ Average Annual Ground Surface Temperature for example,
  • The E+ Average Amplitude of Annual Ground Surface Temperature and Phase Shift of Minimum Surface Temperature are defaulted to 3.2. and 8.0 respectivaly
  • Density and Specific Heat in E+ are derived from the OpenStudio Ground Thermal Heat Capacity.

In summary: No, it does not take into account the EPW weather file you pass in. The minimum effort to tweak the ground calculation would be the change the GroundHeatExchangerVertical Ground Temperature field. If you wanted to modify the phase shift and average amplitude, you will need an EnergyPlus measure for that. So, start changing the Ground Temperature field, and look at the impact is actually has on your results. If your borehole is going down to 100m, it might not represent a strong effect.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Careers

Question Tools

2 followers

Stats

Asked: 2021-05-22 08:56:33 -0500

Seen: 186 times

Last updated: May 25 '21