Skip to content

Commit

Permalink
Implement default value for surface plant properly
Browse files Browse the repository at this point in the history
  • Loading branch information
softwareengineerprogrammer committed Mar 1, 2024
1 parent 88d6774 commit 392be53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/geophires_x/SurfacePlant.py
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ def __init__(self, model: Model):
)
self.plant_type = self.ParameterDict[self.plant_type.Name] = intParameter(
"Power Plant Type",
value=PlantType.SUB_CRITICAL_ORC,
DefaultValue=PlantType.SUB_CRITICAL_ORC,
AllowableRange=[1, 2, 3, 4, 5, 6, 7, 8, 9],
UnitType=Units.NONE,
ErrMessage="assume default power plant type (1: subcritical ORC)",
Expand Down

0 comments on commit 392be53

Please sign in to comment.