Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update help text for hybrid GHP options #618

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ghpghx/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ def clean(self):

# Hybrid flag
hybrid_ghx_sizing_method = models.TextField(null=True, blank=True, default="None",
help_text="Possible values: 'Fractional' (user inputs fraction of full GHX size), 'Automatic' (REopt determines based on the smaller heating or cooling load), 'None' (non-hybrid)")
help_text="Possible values: 'Fractional' (user inputs fraction of full GHX size), 'Automatic' (REopt determines based on the smaller heating or cooling load), 'Heater' (an auxiliary heating unit is sized), 'Cooler' (an auxiliary cooling unit is sized), 'None' (non-hybrid)")
hybrid_auto_ghx_sizing_flag = models.BooleanField(blank=True, null=True, default=False)
hybrid_sizing_flag = models.FloatField(null=True, blank=True, default=1.0,
help_text="Possible values: -2 (size for heating), -1.0 (size for cooling), 1.0 (non-hybrid), value between 0-1 (fraction of full GHX size)")
Expand Down
Loading