Initially you had 3 zones with two generators in each zone. You can add 6 new zones (one for each generator) for a total of 9 zones, the 3 originals and the 6 new ones. You will need to define 9 total reserve requirements.
Ray On Mar 25, 2020, at 9:10 AM, Yang <[email protected]<mailto:[email protected]>> wrote: Dear Ray, To set the situation, gen 1 and gen 2 are in zone 1, gen 5 and gen 6 are in zone 2, and gen 3 and gen 4 are in zone 3. So, I am supposed to set: " OutmailID: 124492692, List: 'matpower-l', MemberID: 6449049 SCRIPT: "reserve zones, element i, j is 1 if gen j is in zone i, 0 otherwise mpc.reserves.zones = [ 1 1 0 0 0 0; 0 0 0 0 1 1; 0 0 1 1 0 0; ]; " TCL MERGE ERROR ( 03/25/2020 11:11:22 ): "missing " reserve requirements for each zone in MW mpc.reserves.req = [20; 20; 20]; However, some generators'reserves are zero. I need to set tje limit of each reserve. If I set: " OutmailID: 124492692, List: 'matpower-l', MemberID: 6449049 SCRIPT: "reserve zones, element i, j is 1 if gen j is in zone i, 0 otherwise mpc.reserves.zones = [ 1 0 0 0 0 0; 0 1 0 0 0 0; 0 0 1 0 0 0; 0 0 0 1 0 0; 0 0 0 0 1 0; 0 0 0 0 0 1; ]; " TCL MERGE ERROR ( 03/25/2020 11:11:22 ): "missing " reserve requirements for each zone in MW mpc.reserves.req = [8; 8; 5; 5; 3; 4]; This is actually not match with the zones I said before. How can I solve this problem? Thanks. Yang. At 2020-03-18 23:45:45, "Ray Daniel Zimmerman" <[email protected]<mailto:[email protected]>> wrote: You can accomplish that goal by creating individual reserve zones for each generator with a requirement equal to the lower limit you want. Ray On Mar 18, 2020, at 9:23 AM, Yang <[email protected]<mailto:[email protected]>> wrote: Dear Ray, In t_case30_userfcns.m, may I set the low limit of each reserve to avoid situations where some generators' reserves are 0 ? Thanks. Yang.
