-
Notifications
You must be signed in to change notification settings - Fork 46
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 #521 from NREL/ghp-thermal-updates
Add GHP proforma metrics and BAU thermal results Redo
- Loading branch information
Showing
5 changed files
with
84 additions
and
3 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
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
23 changes: 23 additions & 0 deletions
23
...tjl/migrations/0047_existingboileroutputs_annual_thermal_production_mmbtu_bau_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,23 @@ | ||
# Generated by Django 4.0.7 on 2023-10-03 22:40 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('reoptjl', '0046_ghpinputs_aux_cooler_installed_cost_per_ton_and_more'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='existingboileroutputs', | ||
name='annual_thermal_production_mmbtu_bau', | ||
field=models.FloatField(blank=True, null=True), | ||
), | ||
migrations.AddField( | ||
model_name='existingboileroutputs', | ||
name='year_one_fuel_cost_before_tax_bau', | ||
field=models.FloatField(blank=True, null=True), | ||
), | ||
] |
38 changes: 38 additions & 0 deletions
38
reoptjl/migrations/0048_existingboileroutputs_annual_fuel_consumption_mmbtu_bau_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,38 @@ | ||
# Generated by Django 4.0.7 on 2023-10-04 02:38 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('reoptjl', '0047_existingboileroutputs_annual_thermal_production_mmbtu_bau_and_more'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='existingboileroutputs', | ||
name='annual_fuel_consumption_mmbtu_bau', | ||
field=models.FloatField(blank=True, null=True), | ||
), | ||
migrations.AddField( | ||
model_name='existingchilleroutputs', | ||
name='annual_electric_consumption_kwh_bau', | ||
field=models.FloatField(blank=True, help_text='Annual chiller electric consumption for BAU case [kWh]', null=True), | ||
), | ||
migrations.AddField( | ||
model_name='existingchilleroutputs', | ||
name='annual_thermal_production_tonhour_bau', | ||
field=models.FloatField(blank=True, help_text='Annual chiller thermal production for BAU case [Ton Hour]', null=True), | ||
), | ||
migrations.AddField( | ||
model_name='financialoutputs', | ||
name='lifecycle_fuel_costs_after_tax_bau', | ||
field=models.FloatField(blank=True, help_text='Component of lifecycle costs (LCC). This value is the present value of all fuel costs over the analysis period, after tax in the BAU case.', null=True), | ||
), | ||
migrations.AlterField( | ||
model_name='existingchilleroutputs', | ||
name='annual_thermal_production_tonhour', | ||
field=models.FloatField(blank=True, help_text='Annual chiller thermal production [Ton Hour]', 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