-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #514 from NREL/develop
v3.1.0 Defaults Updates and Hybrid+Central GHP
- Loading branch information
Showing
31 changed files
with
71,160 additions
and
208 deletions.
There are no files selected for viewing
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
18 changes: 18 additions & 0 deletions
18
ghpghx/migrations/0014_ghpghxoutputs_hybrid_auto_ghx_sizing_flag.py
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,18 @@ | ||
# Generated by Django 4.0.7 on 2023-09-28 17:54 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('ghpghx', '0013_alter_ghpghxinputs_init_sizing_factor_ft_per_peak_ton'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='ghpghxoutputs', | ||
name='hybrid_auto_ghx_sizing_flag', | ||
field=models.BooleanField(blank=True, default=False, null=True), | ||
), | ||
] |
22 changes: 22 additions & 0 deletions
22
ghpghx/migrations/0015_remove_ghpghxoutputs_hybrid_auto_ghx_sizing_flag_and_more.py
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,22 @@ | ||
# Generated by Django 4.0.7 on 2023-09-28 17:55 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('ghpghx', '0014_ghpghxoutputs_hybrid_auto_ghx_sizing_flag'), | ||
] | ||
|
||
operations = [ | ||
migrations.RemoveField( | ||
model_name='ghpghxoutputs', | ||
name='hybrid_auto_ghx_sizing_flag', | ||
), | ||
migrations.AddField( | ||
model_name='ghpghxinputs', | ||
name='hybrid_auto_ghx_sizing_flag', | ||
field=models.BooleanField(blank=True, default=False, null=True), | ||
), | ||
] |
18 changes: 18 additions & 0 deletions
18
ghpghx/migrations/0016_ghpghxoutputs_heat_pump_configuration.py
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,18 @@ | ||
# Generated by Django 4.0.7 on 2023-09-28 18:00 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('ghpghx', '0015_remove_ghpghxoutputs_hybrid_auto_ghx_sizing_flag_and_more'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='ghpghxoutputs', | ||
name='heat_pump_configuration', | ||
field=models.TextField(blank=True, help_text='Specifies if the auxiliary heat exchange unit is a heater or cooler', null=True), | ||
), | ||
] |
18 changes: 18 additions & 0 deletions
18
ghpghx/migrations/0017_ghpghxinputs_heat_pump_configuration.py
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,18 @@ | ||
# Generated by Django 4.0.7 on 2023-10-01 16:42 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('ghpghx', '0016_ghpghxoutputs_heat_pump_configuration'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='ghpghxinputs', | ||
name='heat_pump_configuration', | ||
field=models.TextField(blank=True, help_text='Specifies if the auxiliary heat exchange unit is a heater or cooler', null=True), | ||
), | ||
] |
82 changes: 82 additions & 0 deletions
82
...hx/migrations/0018_ghpghxinputs_wwhp_cooling_pump_fluid_flow_rate_gpm_per_ton_and_more.py
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,82 @@ | ||
# Generated by Django 4.0.7 on 2023-10-02 18:20 | ||
|
||
import django.contrib.postgres.fields | ||
import django.core.validators | ||
from django.db import migrations, models | ||
import ghpghx.models | ||
import picklefield.fields | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('ghpghx', '0017_ghpghxinputs_heat_pump_configuration'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='ghpghxinputs', | ||
name='wwhp_cooling_pump_fluid_flow_rate_gpm_per_ton', | ||
field=models.FloatField(blank=True, default=3.0, help_text='Volumetric flow rate of the fluid in the hydronic chilled water cooling loop per peak ton cooling [GPM/ton]', validators=[django.core.validators.MinValueValidator(0.1), django.core.validators.MaxValueValidator(10.0)]), | ||
), | ||
migrations.AddField( | ||
model_name='ghpghxinputs', | ||
name='wwhp_cooling_pump_min_speed_fraction', | ||
field=models.FloatField(blank=True, default=0.1, help_text='The minimum turndown fraction of the WWHP cooling pump. 1.0 is a constant speed pump.', validators=[django.core.validators.MinValueValidator(0.0), django.core.validators.MaxValueValidator(1.0)]), | ||
), | ||
migrations.AddField( | ||
model_name='ghpghxinputs', | ||
name='wwhp_cooling_pump_power_exponent', | ||
field=models.FloatField(blank=True, default=2.2, help_text='The WWHP cooling pump power curve exponent', validators=[django.core.validators.MinValueValidator(0.1), django.core.validators.MaxValueValidator(10.0)]), | ||
), | ||
migrations.AddField( | ||
model_name='ghpghxinputs', | ||
name='wwhp_cooling_pump_power_watt_per_gpm', | ||
field=models.FloatField(blank=True, default=15.0, help_text='Pumping power required for a given volumetric flow rate of the fluid through the cooling pump [Watt/GPM]', validators=[django.core.validators.MinValueValidator(0.0), django.core.validators.MaxValueValidator(100.0)]), | ||
), | ||
migrations.AddField( | ||
model_name='ghpghxinputs', | ||
name='wwhp_cooling_setpoint_f', | ||
field=models.FloatField(blank=True, default=55.0, help_text='Setpoint temperature of the chilled water cooling loop [degF]', validators=[django.core.validators.MinValueValidator(0.0), django.core.validators.MaxValueValidator(100.0)]), | ||
), | ||
migrations.AddField( | ||
model_name='ghpghxinputs', | ||
name='wwhp_cop_map_eft_cooling', | ||
field=django.contrib.postgres.fields.ArrayField(base_field=picklefield.fields.PickledObjectField(editable=False), default=ghpghx.models.GHPGHXInputs._get_wwhp_cooling_cop_map, help_text="WWHP cooling heat pump coefficient of performance (COP) map: list of dictionaries, each with the key 'EFT' followed by keys representing temperature setpoints", null=True, size=None), | ||
), | ||
migrations.AddField( | ||
model_name='ghpghxinputs', | ||
name='wwhp_cop_map_eft_heating', | ||
field=django.contrib.postgres.fields.ArrayField(base_field=picklefield.fields.PickledObjectField(editable=False), default=ghpghx.models.GHPGHXInputs._get_wwhp_heating_cop_map, help_text="WWHP heating heat pump coefficient of performance (COP) map: list of dictionaries, each with the key 'EFT' followed by keys representing temperature setpoints", null=True, size=None), | ||
), | ||
migrations.AddField( | ||
model_name='ghpghxinputs', | ||
name='wwhp_heating_pump_fluid_flow_rate_gpm_per_ton', | ||
field=models.FloatField(blank=True, default=3.0, help_text='Volumetric flow rate of the fluid in the hydronic space heating loop per peak ton heating [GPM/ton]', validators=[django.core.validators.MinValueValidator(0.1), django.core.validators.MaxValueValidator(10.0)]), | ||
), | ||
migrations.AddField( | ||
model_name='ghpghxinputs', | ||
name='wwhp_heating_pump_min_speed_fraction', | ||
field=models.FloatField(blank=True, default=0.1, help_text='The minimum turndown fraction of the WWHP heating pump. 1.0 is a constant speed pump.', validators=[django.core.validators.MinValueValidator(0.0), django.core.validators.MaxValueValidator(1.0)]), | ||
), | ||
migrations.AddField( | ||
model_name='ghpghxinputs', | ||
name='wwhp_heating_pump_power_exponent', | ||
field=models.FloatField(blank=True, default=2.2, help_text='The WWHP heating pump power curve exponent', validators=[django.core.validators.MinValueValidator(0.1), django.core.validators.MaxValueValidator(10.0)]), | ||
), | ||
migrations.AddField( | ||
model_name='ghpghxinputs', | ||
name='wwhp_heating_pump_power_watt_per_gpm', | ||
field=models.FloatField(blank=True, default=15.0, help_text='Pumping power required for a given volumetric flow rate of the fluid through the heating pump [Watt/GPM]', validators=[django.core.validators.MinValueValidator(0.0), django.core.validators.MaxValueValidator(100.0)]), | ||
), | ||
migrations.AddField( | ||
model_name='ghpghxinputs', | ||
name='wwhp_heating_setpoint_f', | ||
field=models.FloatField(blank=True, default=140.0, help_text='Setpoint temperature of the space heating hot water loop [degF]', validators=[django.core.validators.MinValueValidator(0.0), django.core.validators.MaxValueValidator(250.0)]), | ||
), | ||
migrations.AlterField( | ||
model_name='ghpghxinputs', | ||
name='heat_pump_configuration', | ||
field=models.TextField(blank=True, default='WSHP', help_text='Specifies if the GHP system is centralized (WWHP) or decentralized (WSHP)', null=True), | ||
), | ||
] |
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
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 @@ | ||
eft,40,50,60 | ||
50,6.9,8,9.1 | ||
60,6.2,7.2,8.3 | ||
70,5.6,6.5,7.4 | ||
80,4.9,5.8,6.6 | ||
90,4.3,5.1,5.8 | ||
100,3.6,4.4,5 |
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 @@ | ||
eft,120,130,140 | ||
30,2.7,2.3,2.2 | ||
40,3.2,2.8,2.7 | ||
50,3.7,3.2,3.1 | ||
60,4.2,3.7,3.5 | ||
70,4.7,4.1,4 | ||
80,5.2,4.6,4.4 |
Oops, something went wrong.