-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
93d971b
commit 0c1d22c
Showing
12 changed files
with
128 additions
and
32,549 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,102 @@ | ||
""" | ||
This file contains a design example with the Separatus probe, in comparison with a single and double U-tube. | ||
A borehole diameter of DN90 was chosen for the Separatus probe whereas for the single and double U-tube a DN140 was assumed. | ||
A mass flow rate of 0.3 kg/s was assumed for all cases and no glycol was taken into account. | ||
The grout thermal conductivity is 2 W/(mK), and the borehole dimensions where 1x4 with a depth of 110m. | ||
The building heating and cooling demand was obtained from a residential building in Belgium. | ||
It is shown that both single U and Separatus have similar performance, whilst the double U-tube has a somewhat better | ||
performance. These results have to be placed next to an economic evaluation of the different borefield designs. | ||
""" | ||
|
||
import numpy as np | ||
import pygfunction as gt | ||
|
||
from GHEtool import * | ||
|
||
# set general parameters | ||
ground_data = GroundFluxTemperature(1.9, 9.6, flux=0.07) | ||
fluid_data = FluidData(mfr=0.3) | ||
fluid_data.import_fluid_from_pygfunction(gt.media.Fluid('MPG', 0, 6)) | ||
|
||
# set building load | ||
load = MonthlyBuildingLoadAbsolute( | ||
baseload_heating=np.array([2105, 2081, 1686, 1196, 550, 0, 0, 0, 144, 777, 1471, 1961]), | ||
baseload_cooling=np.array([0, 0, 0, 0, 682, 1248, 1650, 1608, 907, 0, 0, 0]), | ||
peak_heating=np.array([9.2, 9.12, 7.38, 5.21, 2.43, 0, 0, 0, 0.61, 3.39, 6.42, 8.59]), | ||
peak_cooling=np.array([0, 0, 0, 0, 3.61, 6.58, 8.7, 8.49, 4.78, 0, 0, 0]), | ||
simulation_period=40, | ||
dhw=2800, | ||
efficiency_heating=5.03, | ||
efficiency_cooling=20, | ||
efficiency_dhw=3.93 | ||
) | ||
|
||
|
||
def design_with_single_U(): | ||
""" | ||
This function plots the temperature profile for a system with a single U-tube. | ||
Returns | ||
------- | ||
None | ||
""" | ||
pipe_data = SingleUTube(2, 0.013, 0.016, 0.42, 0.035) | ||
|
||
borefield = Borefield(load=load) | ||
borefield.set_ground_parameters(ground_data) | ||
borefield.set_fluid_parameters(fluid_data) | ||
borefield.set_pipe_parameters(pipe_data) | ||
borefield.set_min_avg_fluid_temperature(6) | ||
borefield.set_max_avg_fluid_temperature(17) | ||
|
||
borefield.create_rectangular_borefield(1, 4, 6, 6, 110, 0.7, 0.07) | ||
borefield.print_temperature_profile() | ||
|
||
|
||
def design_with_double_U(): | ||
""" | ||
This function plots the temperature profile for a system with a double U-tube. | ||
Returns | ||
------- | ||
None | ||
""" | ||
pipe_data = DoubleUTube(2, 0.013, 0.016, 0.42, 0.035) | ||
|
||
borefield = Borefield(load=load) | ||
borefield.set_ground_parameters(ground_data) | ||
borefield.set_fluid_parameters(fluid_data) | ||
borefield.set_pipe_parameters(pipe_data) | ||
borefield.set_min_avg_fluid_temperature(6) | ||
borefield.set_max_avg_fluid_temperature(17) | ||
|
||
borefield.create_rectangular_borefield(1, 4, 6, 6, 110, 0.7, 0.07) | ||
borefield.print_temperature_profile() | ||
|
||
|
||
def design_with_separatus(): | ||
""" | ||
This function plots the temperature profile for a system with a Separatus probe. | ||
Returns | ||
------- | ||
None | ||
""" | ||
pipe_data = Separatus(2) | ||
|
||
borefield = Borefield(load=load) | ||
borefield.set_ground_parameters(ground_data) | ||
borefield.set_fluid_parameters(fluid_data) | ||
borefield.set_pipe_parameters(pipe_data) | ||
borefield.set_min_avg_fluid_temperature(6) | ||
borefield.set_max_avg_fluid_temperature(17) | ||
|
||
borefield.create_rectangular_borefield(1, 4, 6, 6, 110, 0.7, 0.045) | ||
borefield.print_temperature_profile() | ||
|
||
|
||
if __name__ == "__main__": | ||
design_with_single_U() | ||
design_with_double_U() | ||
design_with_separatus() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
*********************************************************** | ||
Separatus | ||
*********************************************************** | ||
|
||
.. literalinclude:: ../../../../GHEtool/Examples/separatus.py | ||
:language: python | ||
:linenos: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters