Skip to content

Commit

Permalink
Add after-tax fuel cost for Generator
Browse files Browse the repository at this point in the history
  • Loading branch information
Bill-Becker committed Feb 19, 2025
1 parent 6deb3c5 commit 7a9439d
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Generated by Django 4.0.7 on 2025-02-19 14:15

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('reoptjl', '0077_boileroutputs_year_one_fuel_cost_after_tax_and_more'),
]

operations = [
migrations.AddField(
model_name='generatoroutputs',
name='year_one_fuel_cost_after_tax',
field=models.FloatField(blank=True, null=True),
),
migrations.AddField(
model_name='generatoroutputs',
name='year_one_fuel_cost_after_tax_bau',
field=models.FloatField(blank=True, null=True),
),
]
2 changes: 2 additions & 0 deletions reoptjl/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -3915,6 +3915,8 @@ class GeneratorOutputs(BaseModel, models.Model):
year_one_variable_om_cost_before_tax_bau = models.FloatField(null=True, blank=True)
year_one_fuel_cost_before_tax = models.FloatField(null=True, blank=True)
year_one_fuel_cost_before_tax_bau = models.FloatField(null=True, blank=True)
year_one_fuel_cost_after_tax = models.FloatField(null=True, blank=True)
year_one_fuel_cost_after_tax_bau = models.FloatField(null=True, blank=True)
year_one_fixed_om_cost_before_tax = models.FloatField(null=True, blank=True)
year_one_fixed_om_cost_before_tax_bau = models.FloatField(null=True, blank=True)
lifecycle_variable_om_cost_after_tax = models.FloatField(null=True, blank=True)
Expand Down

0 comments on commit 7a9439d

Please sign in to comment.