Skip to content

Commit

Permalink
change steam turbine can_serve_process_heat default to True
Browse files Browse the repository at this point in the history
  • Loading branch information
zolanaj committed May 10, 2024
1 parent 44e4027 commit 7415e8a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion reoptjl/migrations/0059_processheatloadinputs_and_more.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ class Migration(migrations.Migration):
migrations.AddField(
model_name='steamturbineinputs',
name='can_serve_process_heat',
field=models.BooleanField(blank=True, default=False, help_text='Boolean indicator if steam turbine can serve process heat load', null=True),
field=models.BooleanField(blank=True, default=True, help_text='Boolean indicator if steam turbine can serve process heat load', null=True),
),
migrations.AddField(
model_name='steamturbineinputs',
Expand Down
2 changes: 1 addition & 1 deletion reoptjl/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -5572,7 +5572,7 @@ class SIZE_CLASS_LIST(models.IntegerChoices):
help_text="Boolean indicator if steam turbine can serve space heating load"
)
can_serve_process_heat = models.BooleanField(
default=False,
default=True,
null=True,
blank=True,
help_text="Boolean indicator if steam turbine can serve process heat load"
Expand Down

0 comments on commit 7415e8a

Please sign in to comment.