From ade3ec7dd87697a8c8d31e39bab9ca3a18d0a3df Mon Sep 17 00:00:00 2001 From: Zolan Date: Tue, 21 Jan 2025 12:49:45 -0700 Subject: [PATCH] minor updates to ASHP forced dispatch notes --- .../0076_ashpspaceheaterinputs_force_dispatch_and_more.py | 4 ++-- reoptjl/models.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/reoptjl/migrations/0076_ashpspaceheaterinputs_force_dispatch_and_more.py b/reoptjl/migrations/0076_ashpspaceheaterinputs_force_dispatch_and_more.py index a4135ef47..ba9831f00 100644 --- a/reoptjl/migrations/0076_ashpspaceheaterinputs_force_dispatch_and_more.py +++ b/reoptjl/migrations/0076_ashpspaceheaterinputs_force_dispatch_and_more.py @@ -15,12 +15,12 @@ class Migration(migrations.Migration): migrations.AddField( model_name='ashpspaceheaterinputs', name='force_dispatch', - field=models.BooleanField(default=True, help_text='Boolean indicator if ASHP space heater is forced to its maximize output if true', null=True), + field=models.BooleanField(default=True, help_text='Boolean indicator that ASHP space heater outputs either maximum capacity or site load if true', null=True), ), migrations.AddField( model_name='ashpwaterheaterinputs', name='force_dispatch', - field=models.BooleanField(default=True, help_text='Boolean indicator if ASHP water heater is forced to its maximize output if true', null=True), + field=models.BooleanField(default=True, help_text='Boolean indicator that ASHP water heater outputs either maximum capacity or site load if true', null=True), ), migrations.AlterField( model_name='ashpwaterheaterinputs', diff --git a/reoptjl/models.py b/reoptjl/models.py index a74475f63..97dbfd835 100644 --- a/reoptjl/models.py +++ b/reoptjl/models.py @@ -5480,7 +5480,7 @@ class ASHPSpaceHeaterInputs(BaseModel, models.Model): force_dispatch = models.BooleanField( null=True, default=True, - help_text="Boolean indicator if ASHP space heater is forced to its maximize output if true" + help_text="Boolean indicator that ASHP space heater outputs either maximum capacity or site load if true" ) avoided_capex_by_ashp_present_value = models.FloatField( @@ -5775,7 +5775,7 @@ class ASHPWaterHeaterInputs(BaseModel, models.Model): force_dispatch = models.BooleanField( null=True, default=True, - help_text="Boolean indicator if ASHP water heater is forced to its maximize output if true" + help_text="Boolean indicator that ASHP water heater outputs either maximum capacity or site load if true" ) def clean(self):