0001 function t_testglobalopt(quiet)
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020
0021
0022
0023
0024
0025
0026
0027
0028
0029
0030
0031
0032
0033
0034 if nargin < 1
0035 quiet = 0;
0036 end
0037
0038 num_tests = 6;
0039
0040 t_begin(num_tests, quiet);
0041
0042 [PQ, PV, REF, NONE, BUS_I, BUS_TYPE, PD, QD, GS, BS, BUS_AREA, VM, ...
0043 VA, BASE_KV, ZONE, VMAX, VMIN, LAM_P, LAM_Q, MU_VMAX, MU_VMIN] = idx_bus;
0044 [GEN_BUS, PG, QG, QMAX, QMIN, VG, MBASE, GEN_STATUS, PMAX, PMIN, ...
0045 MU_PMAX, MU_PMIN, MU_QMAX, MU_QMIN, PC1, PC2, QC1MIN, QC1MAX, ...
0046 QC2MIN, QC2MAX, RAMP_AGC, RAMP_10, RAMP_30, RAMP_Q, APF] = idx_gen;
0047 [F_BUS, T_BUS, BR_R, BR_X, BR_B, RATE_A, RATE_B, RATE_C, ...
0048 TAP, SHIFT, BR_STATUS, PF, QF, PT, QT, MU_SF, MU_ST, ...
0049 ANGMIN, ANGMAX, MU_ANGMIN, MU_ANGMAX] = idx_brch;
0050 [PW_LINEAR, POLYNOMIAL, MODEL, STARTUP, SHUTDOWN, NCOST, COST] = idx_cost;
0051
0052 casefile = 't_case9mod_opf';
0053 if quiet
0054 verbose = 0;
0055 else
0056 verbose = 0;
0057 end
0058
0059 t0 = 'TESTGLOALOPT : ';
0060
0061
0062 load soln9mod_opf;
0063
0064 res = loadcase(casefile);
0065 res.bus = bus_soln;
0066 res.gen = gen_soln;
0067 res.branch = branch_soln;
0068
0069 mpopt = mpoption('out.all', 0, 'verbose', verbose);
0070
0071
0072 t = t0;
0073 [globalopt,comp,Apsd] = testGlobalOpt(res, mpopt);
0074 t_ok(globalopt, [t 'global optimum verification']);
0075 t_is(comp, comp_soln, 3, [t 'complimentarity conditions']);
0076 t_ok(Apsd, [t 'A is positive semidefinite']);
0077
0078
0079 load soln9mod_opf_Plim;
0080
0081 res = loadcase(casefile);
0082 res.bus = bus_soln;
0083 res.gen = gen_soln;
0084 res.branch = branch_soln;
0085
0086 mpopt1 = mpoption(mpopt, 'opf.flow_lim', 'P');
0087
0088
0089 t = [t0 '(P line lim) : '];
0090 [globalopt,comp,Apsd] = testGlobalOpt(res, mpopt1);
0091 t_ok(globalopt, [t 'global optimum verification']);
0092 t_is(comp, comp_soln, 3, [t 'complimentarity conditions']);
0093 t_ok(Apsd, [t 'A is positive semidefinite']);
0094
0095 t_end;