Skip to content

Commit

Permalink
All testing done, results can be found in newly added spreadsheet
Browse files Browse the repository at this point in the history
  • Loading branch information
LoneMeertens committed May 20, 2024
1 parent 1fb248d commit 54c31a1
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 11 deletions.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@
- Ahmadfard, M., and M. Bernier. 2019. A review of vertical ground heat exchanger sizing tools including an inter-model
comparison [in eng]. Renewable sustainable energy reviews (OXFORD) 110:247–265.
"""
import sys
sys.path.append("C:\Workdir\Develop\ghetool")

from GHEtool import *
import numpy as np
import time
Expand Down Expand Up @@ -46,7 +43,7 @@ def test_4_sensitivity():

# load the hourly profile
load = HourlyGeothermalLoad(simulation_period=20)
load.load_hourly_profile("C:\Workdir\Develop\ghetool\GHEtool\Validation\comparison_with_other_sizing_tools\\test4\\test4.csv", header=True, separator=",", col_heating=1, col_cooling=0)
load.load_hourly_profile("test4.csv", header=True, separator=",", col_heating=1, col_cooling=0)
borefield.load = load

# convert inlet fluid temperature to heap pump constraints to constraints on average fluid temperature
Expand Down Expand Up @@ -98,7 +95,7 @@ def test_4_sensitivity():

# load the hourly profile
load = HourlyGeothermalLoad(simulation_period=20)
load.load_hourly_profile("C:\Workdir\Develop\ghetool\GHEtool\Validation\comparison_with_other_sizing_tools\\test4\\test4.csv", header=True, separator=",", col_heating=1, col_cooling=0)
load.load_hourly_profile("test4.csv", header=True, separator=",", col_heating=1, col_cooling=0)
borefield.load = load

# Sizing with constant Rb
Expand Down Expand Up @@ -143,7 +140,7 @@ def test_4_sensitivity():

# load the hourly profile
load = HourlyGeothermalLoad(simulation_period=20)
load.load_hourly_profile("C:\Workdir\Develop\ghetool\GHEtool\Validation\comparison_with_other_sizing_tools\\test4\\test4.csv", header=True, separator=",", col_heating=1, col_cooling=0)
load.load_hourly_profile("test4.csv", header=True, separator=",", col_heating=1, col_cooling=0)
borefield.load = load

# Sizing with constant Rb
Expand Down Expand Up @@ -188,7 +185,7 @@ def test_4_sensitivity():

# load the hourly profile
load = HourlyGeothermalLoad(simulation_period=20)
load.load_hourly_profile("C:\Workdir\Develop\ghetool\GHEtool\Validation\comparison_with_other_sizing_tools\\test4\\test4.csv", header=True, separator=",", col_heating=1, col_cooling=0)
load.load_hourly_profile("test4.csv", header=True, separator=",", col_heating=1, col_cooling=0)
borefield.load = load

# Sizing with constant Rb
Expand Down Expand Up @@ -233,7 +230,7 @@ def test_4_sensitivity():

# load the hourly profile
load = HourlyGeothermalLoad(simulation_period=20)
load.load_hourly_profile("C:\Workdir\Develop\ghetool\GHEtool\Validation\comparison_with_other_sizing_tools\\test4\\test4.csv", header=True, separator=",", col_heating=1, col_cooling=0)
load.load_hourly_profile("test4.csv", header=True, separator=",", col_heating=1, col_cooling=0)
borefield.load = load

# Sizing with constant Rb
Expand Down Expand Up @@ -278,7 +275,7 @@ def test_4_sensitivity():

# load the hourly profile
load = HourlyGeothermalLoad(simulation_period=20)
load.load_hourly_profile("C:\Workdir\Develop\ghetool\GHEtool\Validation\comparison_with_other_sizing_tools\\test4\\test4.csv", header=True, separator=",", col_heating=1, col_cooling=0)
load.load_hourly_profile("test4.csv", header=True, separator=",", col_heating=1, col_cooling=0)
borefield.load = load

# Sizing with constant Rb
Expand Down Expand Up @@ -323,7 +320,7 @@ def test_4_sensitivity():

# load the hourly profile
load = HourlyGeothermalLoad(simulation_period=20)
load.load_hourly_profile("C:\Workdir\Develop\ghetool\GHEtool\Validation\comparison_with_other_sizing_tools\\test4\\test4.csv", header=True, separator=",", col_heating=1, col_cooling=0)
load.load_hourly_profile("test4.csv", header=True, separator=",", col_heating=1, col_cooling=0)
borefield.load = load

# Sizing with constant Rb
Expand Down Expand Up @@ -368,7 +365,7 @@ def test_4_sensitivity():

# load the hourly profile
load = HourlyGeothermalLoad(simulation_period=20)
load.load_hourly_profile("C:\Workdir\Develop\ghetool\GHEtool\Validation\comparison_with_other_sizing_tools\\test4\\test4.csv", header=True, separator=",", col_heating=1, col_cooling=0)
load.load_hourly_profile("test4.csv", header=True, separator=",", col_heating=1, col_cooling=0)
borefield.load = load

# Sizing with constant Rb
Expand Down

0 comments on commit 54c31a1

Please sign in to comment.