0001 function t_pf(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 if nargin < 1
0034 quiet = 0;
0035 end
0036
0037 t_begin(33, quiet);
0038
0039 casefile = 't_case9_pf';
0040 if quiet
0041 verbose = 0;
0042 else
0043 verbose = 1;
0044 end
0045 if have_fcn('octave')
0046 s1 = warning('query', 'Octave:load-file-in-path');
0047 warning('off', 'Octave:load-file-in-path');
0048 end
0049 mpopt = mpoption('OUT_ALL', 0, 'VERBOSE', verbose);
0050
0051
0052 [PQ, PV, REF, NONE, BUS_I, BUS_TYPE, PD, QD, GS, BS, BUS_AREA, VM, ...
0053 VA, BASE_KV, ZONE, VMAX, VMIN, LAM_P, LAM_Q, MU_VMAX, MU_VMIN] = idx_bus;
0054 [F_BUS, T_BUS, BR_R, BR_X, BR_B, RATE_A, RATE_B, RATE_C, ...
0055 TAP, SHIFT, BR_STATUS, PF, QF, PT, QT, MU_SF, MU_ST, ...
0056 ANGMIN, ANGMAX, MU_ANGMIN, MU_ANGMAX] = idx_brch;
0057 [GEN_BUS, PG, QG, QMAX, QMIN, VG, MBASE, GEN_STATUS, PMAX, PMIN, ...
0058 MU_PMAX, MU_PMIN, MU_QMAX, MU_QMIN, PC1, PC2, QC1MIN, QC1MAX, ...
0059 QC2MIN, QC2MAX, RAMP_AGC, RAMP_10, RAMP_30, RAMP_Q, APF] = idx_gen;
0060
0061
0062 load soln9_pf;
0063
0064
0065 t = 'Newton PF : ';
0066 mpopt = mpoption(mpopt, 'PF_ALG', 1);
0067 [baseMVA, bus, gen, branch, success, et] = runpf(casefile, mpopt);
0068 t_ok(success, [t 'success']);
0069 t_is(bus, bus_soln, 6, [t 'bus']);
0070 t_is(gen, gen_soln, 6, [t 'gen']);
0071 t_is(branch, branch_soln, 6, [t 'branch']);
0072
0073
0074 t = 'Fast Decoupled (XB) PF : ';
0075 mpopt = mpoption(mpopt, 'PF_ALG', 2);
0076 [baseMVA, bus, gen, branch, success, et] = runpf(casefile, mpopt);
0077 t_ok(success, [t 'success']);
0078 t_is(bus, bus_soln, 6, [t 'bus']);
0079 t_is(gen, gen_soln, 6, [t 'gen']);
0080 t_is(branch, branch_soln, 6, [t 'branch']);
0081
0082
0083 t = 'Fast Decoupled (BX) PF : ';
0084 mpopt = mpoption(mpopt, 'PF_ALG', 3);
0085 [baseMVA, bus, gen, branch, success, et] = runpf(casefile, mpopt);
0086 t_ok(success, [t 'success']);
0087 t_is(bus, bus_soln, 6, [t 'bus']);
0088 t_is(gen, gen_soln, 6, [t 'gen']);
0089 t_is(branch, branch_soln, 6, [t 'branch']);
0090
0091
0092 t = 'Gauss-Seidel PF : ';
0093 mpopt = mpoption(mpopt, 'PF_ALG', 4);
0094 [baseMVA, bus, gen, branch, success, et] = runpf(casefile, mpopt);
0095 t_ok(success, [t 'success']);
0096 t_is(bus, bus_soln, 5, [t 'bus']);
0097 t_is(gen, gen_soln, 5, [t 'gen']);
0098 t_is(branch, branch_soln, 5, [t 'branch']);
0099
0100
0101 load soln9_dcpf;
0102
0103
0104 t = 'DC PF : ';
0105 [baseMVA, bus, gen, branch, success, et] = rundcpf(casefile, mpopt);
0106 t_ok(success, [t 'success']);
0107 t_is(bus, bus_soln, 6, [t 'bus']);
0108 t_is(gen, gen_soln, 6, [t 'gen']);
0109 t_is(branch, branch_soln, 6, [t 'branch']);
0110
0111
0112 t = 'check Qg : ';
0113 mpopt = mpoption(mpopt, 'PF_ALG', 1, 'VERBOSE', 0);
0114 mpc = loadcase(casefile);
0115 mpc.gen(1, [QMIN QMAX]) = [20 20];
0116 [baseMVA, bus, gen, branch, success, et] = runpf(mpc, mpopt);
0117 t_is(gen(1, QG), 24.07, 2, [t 'single gen, Qmin = Qmax']);
0118
0119 mpc.gen = [mpc.gen(1, :); mpc.gen];
0120 mpc.gen(1, [QMIN QMAX]) = [10 10];
0121 mpc.gen(2, [QMIN QMAX]) = [0 50];
0122 [baseMVA, bus, gen, branch, success, et] = runpf(mpc, mpopt);
0123 t_is(gen(1:2, QG), [10; 14.07], 2, [t '2 gens, Qmin = Qmax for one']);
0124
0125 mpc.gen(1, [QMIN QMAX]) = [10 10];
0126 mpc.gen(2, [QMIN QMAX]) = [-50 -50];
0127 [baseMVA, bus, gen, branch, success, et] = runpf(mpc, mpopt);
0128 t_is(gen(1:2, QG), [12.03; 12.03], 2, [t '2 gens, Qmin = Qmax for both']);
0129
0130 mpc.gen(1, [QMIN QMAX]) = [0 50];
0131 mpc.gen(2, [QMIN QMAX]) = [0 100];
0132 [baseMVA, bus, gen, branch, success, et] = runpf(mpc, mpopt);
0133 t_is(gen(1:2, QG), [8.02; 16.05], 2, [t '2 gens, proportional']);
0134
0135 mpc.gen(1, [QMIN QMAX]) = [-50 0];
0136 mpc.gen(2, [QMIN QMAX]) = [50 150];
0137 [baseMVA, bus, gen, branch, success, et] = runpf(mpc, mpopt);
0138 t_is(gen(1:2, QG), [-50+8.02; 50+16.05], 2, [t '2 gens, proportional']);
0139
0140
0141 t = 'network w/islands : DC PF : ';
0142 mpc0 = loadcase(casefile);
0143 mpc0.gen(1, PG) = 60;
0144 mpc0.gen(1, [PMIN PMAX QMIN QMAX PG QG]) = mpc0.gen(1, [PMIN PMAX QMIN QMAX PG QG]) / 2;
0145 mpc0.gen = [mpc0.gen(1, :); mpc0.gen];
0146 mpc1 = mpc0;
0147 mpc = mpc0;
0148 nb = size(mpc.bus, 1);
0149 mpc1.bus(:, BUS_I) = mpc1.bus(:, BUS_I) + nb;
0150 mpc1.branch(:, F_BUS) = mpc1.branch(:, F_BUS) + nb;
0151 mpc1.branch(:, T_BUS) = mpc1.branch(:, T_BUS) + nb;
0152 mpc1.gen(:, GEN_BUS) = mpc1.gen(:, GEN_BUS) + nb;
0153 mpc.bus = [mpc.bus; mpc1.bus];
0154 mpc.branch = [mpc.branch; mpc1.branch];
0155 mpc.gen = [mpc.gen; mpc1.gen];
0156
0157 mpopt = mpoption(mpopt, 'VERBOSE', verbose);
0158 r = rundcpf(mpc, mpopt);
0159 t_is(r.bus( 1:9, VA), bus_soln(:, VA), 8, [t 'voltage angles 1']);
0160 t_is(r.bus(10:18, VA), bus_soln(:, VA), 8, [t 'voltage angles 2']);
0161 Pg = [gen_soln(1, PG)-30; 30; gen_soln(2:3, PG)];
0162 t_is(r.gen(1:4, PG), Pg, 8, [t 'active power generation 1']);
0163 t_is(r.gen(5:8, PG), Pg, 8, [t 'active power generation 1']);
0164
0165 t = 'network w/islands : AC PF : ';
0166
0167 load soln9_pf;
0168 r = runpf(mpc, mpopt);
0169 t_is(r.bus( 1:9, VA), bus_soln(:, VA), 8, [t 'voltage angles 1']);
0170 t_is(r.bus(10:18, VA), bus_soln(:, VA), 8, [t 'voltage angles 2']);
0171 Pg = [gen_soln(1, PG)-30; 30; gen_soln(2:3, PG)];
0172 t_is(r.gen(1:4, PG), Pg, 8, [t 'active power generation 1']);
0173 t_is(r.gen(5:8, PG), Pg, 8, [t 'active power generation 1']);
0174
0175 if have_fcn('octave')
0176 warning(s1.state, 'Octave:load-file-in-path');
0177 end
0178
0179 t_end;