You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am curious if I can only relax branch capacity constraints, but not generators' capacities. Is there anyway to do that?
Toggle_softlims(MPC, "on") will relax both of them together...
Best,
Yanda
The text was updated successfully, but these errors were encountered:
I'm not sure. My best guess is it probably means you have a VMAX entry (with invalid content) in the softlims field of your case struct. Try changing the second line in the loop from ...
temp_case.softlims.RATE_A=struct();
... to ...
temp_case.softlims = struct('RATE_A', struct());
That should make sure you there aren't any other soft limits besides the branch flow constraints.
Dear Dr. Zimmerman,
I am curious if I can only relax branch capacity constraints, but not generators' capacities. Is there anyway to do that?
Toggle_softlims(MPC, "on") will relax both of them together...
Best,
Yanda
The text was updated successfully, but these errors were encountered: