Skip to content

Commit

Permalink
500 iterations max in ACOPF solving (#76)
Browse files Browse the repository at this point in the history
Signed-off-by: p-arvy <[email protected]>
  • Loading branch information
p-arvy authored Jul 31, 2024
1 parent ae78bb3 commit b325e58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion open-reac/src/main/resources/openreac/acopf.run
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ let tempstr := ctime();
printf{LOG_KNITRO} "\n######################################################################\n";
printf{LOG_KNITRO} "** ACopf solve: start (%s)\n\n",ctime();

option knitro_options ("opttol=1 opttolabs=1e-1 feastol=1 feastolabs=1e-3 maxit=300 outlev=3");
option knitro_options ("opttol=1 opttolabs=1e-1 feastol=1 feastolabs=1e-3 maxit=1000 outlev=3");

let {i in 1.._nvars} _var[i].xscalefactor := default_variable_scaling_factor;
let {i in 1.._ncons} _con[i].cscalefactor := default_constraint_scaling_factor;
Expand Down

0 comments on commit b325e58

Please sign in to comment.