Skip to content

Commit

Permalink
Change default value of allow_startup_shutdown param to 1
Browse files Browse the repository at this point in the history
Setting this parameter to 0, which is also its default value, could
result in an infeasibility since max_shutdown_power_constraint_rule
(which only allows Provide_Power_Shutdown_MW = 0) is incompatible with
ramp_during_shutdown_constraint_rule (which enforces the
Shutdown_Ramp_Rate_MW_Per_Tmp).
  • Loading branch information
sriharid committed Dec 8, 2023
1 parent 8b9b997 commit 3702549
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1182,7 +1182,7 @@ def get_startup_types_by_project(mod, g):
Param(
getattr(m, "GEN_COMMIT_{}".format(BIN_OR_LIN)),
within=Boolean,
default=0,
default=1,
),
)

Expand Down

0 comments on commit 3702549

Please sign in to comment.