I am trying to develop the UC example to simulate large power system consisting of hundreds of generation unit. However, as the number of units increases, the solution time of course increases. Can you suggest me a way to minimize the computational time (for example do you think some of the solver limits can be relaxed?)
Best regards
Mohamed
ops = sdpsettings('solver','cplex');
ops = sdpsettings('solver','cplex','cplex.maxIteration',1000);
The Matlab response is:
Error using sdpsettings (line 281)
Unrecognized property name 'cplex.maxIteration'.
What do you suggest to solve this?
Best regards
Mohamed
>> ops = sdpsettings;>> ops.cplex
ans =
advance: 1 barrier: [1x1 struct] clocktype: 2 conflict: [1x1 struct] dettimelimit: 1.0000e+75 distmip: [1x1 struct] emphasis: [1x1 struct] feasopt: [1x1 struct] lpmethod: 0 mip: [1x1 struct] network: [1x1 struct] output: [1x1 struct] parallel: 0 preprocessing: [1x1 struct] qpmethod: 0 randomseed: 201409043 read: [1x1 struct] sifting: [1x1 struct] simplex: [1x1 struct] solutiontarget: 0 threads: 0 timelimit: 1.0000e+75 tune: [1x1 struct] workdir: '.' workmem: 2048 display: 'off' exportmodel: ''