Skip to content

Commit a1a80d6

Browse files
authored
Merge pull request #623 from NREL/develop
Normalize and Scale Load Profiles
2 parents 05bed60 + bd79024 commit a1a80d6

11 files changed

Lines changed: 543 additions & 289 deletions

ghpghx/models.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,16 +26,16 @@ class GHPGHXInputs(models.Model):
2626

2727
# Single value inputs
2828
borehole_depth_ft = models.FloatField(blank=True,
29-
default=400.0, validators=[MinValueValidator(10.0), MaxValueValidator(600.0)],
29+
default=443.0, validators=[MinValueValidator(10.0), MaxValueValidator(600.0)],
3030
help_text="Vertical depth of each borehole [ft]")
3131
ghx_header_depth_ft = models.FloatField(blank=True,
32-
default=4.0, validators=[MinValueValidator(0.1), MaxValueValidator(50.0)],
32+
default=6.6, validators=[MinValueValidator(0.1), MaxValueValidator(50.0)],
3333
help_text="Depth under the ground of the GHX header pipe [ft]")
3434
borehole_spacing_ft = models.FloatField(blank=True,
3535
default=20.0, validators=[MinValueValidator(1.0), MaxValueValidator(100.0)],
3636
help_text="Distance from the centerline of each borehole to the centerline of its adjacent boreholes [ft]")
3737
borehole_diameter_inch = models.FloatField(blank=True,
38-
default=5.0, validators=[MinValueValidator(0.25), MaxValueValidator(24.0)],
38+
default=6.0, validators=[MinValueValidator(0.25), MaxValueValidator(24.0)],
3939
help_text="Diameter of the borehole/well drilled in the ground [in]")
4040
borehole_choices = [("rectangular", "rectangular"),
4141
("hexagonal", "hexagonal")]
@@ -49,10 +49,10 @@ class GHPGHXInputs(models.Model):
4949
default=0.16, validators=[MinValueValidator(0.01), MaxValueValidator(5.0)],
5050
help_text="Wall thickness of the GHX pipe [in]")
5151
ghx_pipe_thermal_conductivity_btu_per_hr_ft_f = models.FloatField(blank=True,
52-
default=0.25, validators=[MinValueValidator(0.01), MaxValueValidator(10.0)],
52+
default=0.23, validators=[MinValueValidator(0.01), MaxValueValidator(10.0)],
5353
help_text="Thermal conductivity of the GHX pipe [Btu/(hr-ft-degF)]")
5454
ghx_shank_space_inch = models.FloatField(blank=True,
55-
default=2.5, validators=[MinValueValidator(0.5), MaxValueValidator(100.0)],
55+
default=1.27, validators=[MinValueValidator(0.5), MaxValueValidator(100.0)],
5656
help_text="Distance between the centerline of the upwards and downwards u-tube legs [in]")
5757
# Default for ground_thermal_conductivity_btu_per_hr_ft_f varies by ASHRAE climate zone
5858
ground_thermal_conductivity_btu_per_hr_ft_f = models.FloatField(blank=True,
@@ -65,7 +65,7 @@ class GHPGHXInputs(models.Model):
6565
default=0.211, validators=[MinValueValidator(0.01), MaxValueValidator(5.0)],
6666
help_text="Specific heat of the ground surrounding the borehole field")
6767
grout_thermal_conductivity_btu_per_hr_ft_f = models.FloatField(blank=True,
68-
default=1.0, validators=[MinValueValidator(0.01), MaxValueValidator(10.0)],
68+
default=0.75, validators=[MinValueValidator(0.01), MaxValueValidator(10.0)],
6969
help_text="Thermal conductivity of the grout material in a borehole [Btu/(hr-ft-degF)]")
7070
ghx_fluid_specific_heat_btu_per_lb_f = models.FloatField(blank=True,
7171
default=1.0, validators=[MinValueValidator(0.1), MaxValueValidator(10.0)],

0 commit comments

Comments
 (0)