-
Notifications
You must be signed in to change notification settings - Fork 0
/
jacobiano.asv
139 lines (126 loc) · 7.3 KB
/
jacobiano.asv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
% <ESTIMADOR DE ESTADOS MQP NÃO LINEAR - NON LINEAR WMS STATE ESTIMATION V1.0.
% This is the main source of this software that estimates the sates of a power network (complex voltages at nodes) described using an excel input data file >
% Copyright (C) <2017> <Sebastián de Jesús Manrique Machado> <e-mail:[email protected]>
%
% This program is free software: you can redistribute it and/or modify
% it under the terms of the GNU General Public License as published by
% the Free Software Foundation, either version 3 of the License, or
% (at your option) any later version.
%
% This program is distributed in the hope that it will be useful,
% but WITHOUT ANY WARRANTY; without even the implied warranty of
% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
% GNU General Public License for more details.
%
% You should have received a copy of the GNU General Public License
% along with this program. If not, see <http://www.gnu.org/licenses/>.
%ESTIMADOR DE ESTADOS NÃO LINEAR MQP
% Sebastián de Jesús Manrique Machado
% Estudante_Doutorado Em Engenharia Elétrica
% EESC/USP - 2017.
%Função para achar Jacobiano.
function [ J_Pt, J_Pv, J_Qt, J_Qv, J_Vt, J_Vv, JT, n_p, n_q ] = jacobiano( v_barras, delt_barras, G_barras, B_barras, b_shunt, P_calc, Q_calc, tipo_m, no_m_i, no_m_j, num_medidas, num_tipo_m, num_barras, index_bs )
%UNTITLED Summary of this function goes here
% Detailed explanation goes here
J_Pt = zeros(num_tipo_m(2) , num_barras-1);
J_Pv = zeros(num_tipo_m(2) , num_barras);
J_Qt = zeros(num_tipo_m(4) , num_barras-1);
J_Qv = zeros(num_tipo_m(4) , num_barras);
J_Vt = zeros(num_tipo_m(5) , num_barras-1);
J_Vv = zeros(num_tipo_m(5) , num_barras);
JT = zeros(num_medidas , 2*num_barras-1);
a = num_barras - 1;
%|| Derivada de P respeito a Theta ||
%=====================================
for i = 1 : num_medidas
if tipo_m(i) == 1 % MEDIDAS DE POTÊNCIA ATIVA PELAS LINHAS
%|| Derivada de Plin respeito a Theta/V ||
%=======================================
for j = 1 : num_barras
if (no_m_i(i) == j)
if j>1
%P_ij/theta_i
JT(i , j-1) = (v_barras( j ) * v_barras( no_m_j(i) ) ) * ( G_barras(j, no_m_j(i)) * sin(delt_barras(j)-delt_barras(no_m_j(i))) - B_barras(j, no_m_j(i)) * cos(delt_barras(j)-delt_barras(no_m_j(i))));
end
%P_ij/V_i
JT(i , j+a) = ( ( -v_barras( no_m_j(i) ) ) * ( G_barras(j, no_m_j(i)) * cos(delt_barras(j)-delt_barras(no_m_j(i))) + B_barras(j, no_m_j(i)) * sin(delt_barras(j)-delt_barras(no_m_j(i))) ) + 2*v_barras(j)*( G_barras(j, no_m_j(i)) ) );
elseif(no_m_j(i) == j)
if j>1
%P_ij/theta_j
JT(i , j-1) = (-v_barras( no_m_i(i) ) * v_barras( j ) ) * ( G_barras(no_m_i(i),j) * sin(delt_barras(no_m_i(i))-delt_barras(j)) - B_barras(no_m_i(i),j) * cos(delt_barras(no_m_i(i))-delt_barras(j)));
end
%P_ij/V_j
JT(i , j+a) = ( -v_barras( no_m_i(i) ) ) * ( G_barras(no_m_i(i), j) * cos(delt_barras(no_m_i(i))-delt_barras(j)) + B_barras(no_m_i(i), j) * sin(delt_barras(no_m_i(i))-delt_barras(j)) );
end
end
elseif tipo_m(i) == 2 % MEDIDAS DE POTÊNCIA ATIVA injetada
%|| Derivada de Pinj respeito a Theta ||
%=======================================
for j = 1 : num_barras
if ( no_m_i(i) == j )
if j>1
JT(i , j-1) = ( -(v_barras( j )^2 ) * -B_barras(j , j)) - Q_calc(no_m_i(i)); %COmo se esta passando 0G_barras e -Y barras é necessário retornar o sinal
end
JT(i , j+a) = ( v_barras(j) * -G_barras(j , j)) + (1/v_barras(j))*P_calc(j);
else
if j>1
JT(i , j-1) = v_barras(no_m_i(i)) * v_barras(j) * ( (-G_barras(no_m_i(i),j)*sin(delt_barras(no_m_i(i))-delt_barras(j)) ) - (-B_barras(no_m_i(i),j)*cos(delt_barras(no_m_i(i))-delt_barras(j)) ) );
end
JT(i , j+a) = v_barras(no_m_i(i)) * ( (-G_barras(no_m_i(i),j)*cos(delt_barras(no_m_i(i))-delt_barras(j)) ) + (-B_barras(no_m_i(i),j)*sin(delt_barras(no_m_i(i))-delt_barras(j)) ) );
end
end
elseif tipo_m(i) == 3 % MEDIDAS DE POTÊNCIA REATIVA PELAS LINHAS
%|| Derivada de Qlin respeito a theta/Tensão ||
%=======================================
for j = 1 : num_barras
if( no_m_i(i) == j )
if j>1
%Q_ij/\theta_i
JT(i , j-1) = (-v_barras( j ) * v_barras( no_m_j(i) ) ) * ( G_barras(j, no_m_j(i)) * cos(delt_barras(j)-delt_barras(no_m_j(i))) + B_barras(j, no_m_j(i)) * sin(delt_barras(j)-delt_barras(no_m_j(i))));
end
%Q_ij/\V_i
JT(i , j+a) =( ( -v_barras( no_m_j(i) ) ) * ( G_barras(j, no_m_j(i)) * sin(delt_barras(j)-delt_barras(no_m_j(i))) - B_barras(j, no_m_j(i)) * cos(delt_barras(j)-delt_barras(no_m_j(i))) ) - 2*v_barras(j)*( B_barras(j, no_m_j(i)) + b_shunt(index_bs(i)) ) );
elseif( no_m_j(i) == j )
if j>1
%Q_ij/\theta_j
JT(i , j-1) = (v_barras( no_m_i(i) ) * v_barras( j ) ) * ( G_barras(no_m_i(i),j) * cos(delt_barras(no_m_i(i))-delt_barras(j)) + B_barras(no_m_i(i),j) * sin(delt_barras(no_m_i(i))-delt_barras(j)));
end
%Q_ij/\V_j
JT(i , j+a) = ( -v_barras( no_m_i(i) ) ) * ( G_barras(no_m_i(i), j) * sin(delt_barras(no_m_i(i))-delt_barras(j)) - B_barras(no_m_i(i), j) * cos(delt_barras(no_m_i(i))-delt_barras(j)) );
end
end
elseif tipo_m(i) == 4 % MEDIDAS DE POTÊNCIA REATIVA injetada
%|| Derivada de Qinj respeito a Tensão ||
%=======================================
for j = 1 : num_barras
if ( no_m_i(i) == j )
if j>1
JT(i , j-1) = P_calc(j)-(v_barras(j)^2*-G_barras(j,j)); %COmo se esta passando 0G_barras e -Y barras é necessário retornar o sinal
end
JT(i , j+a) = ( -(v_barras(j)) * -B_barras(j , j)) + (1/v_barras(j))*Q_calc(j);
else
if j>1
JT(i , j-1) = -v_barras(no_m_i(i)) * v_barras(j) *( (-G_barras(no_m_i(i),j)*cos(delt_barras(no_m_i(i))-delt_barras(j)) ) + (-B_barras(no_m_i(i),j)*sin(delt_barras(no_m_i(i))-delt_barras(j)) ) );
end
JT(i , j+a) = v_barras(no_m_i(i)) * ( (-G_barras(no_m_i(i),j)*sin(delt_barras(no_m_i(i))-delt_barras(j)) ) - (-B_barras(no_m_i(i),j)*cos(delt_barras(no_m_i(i))-delt_barras(j)) ) );
end
end
elseif tipo_m(i) == 5 % MEDIDAS DE TENSÃO
for j = 1 : num_barras
if no_m_i(i) == j
JT(i , j+a) = 1;
end
end
end
end
b = num_tipo_m(1)+num_tipo_m(2);
n_p = b
c = b + num_tipo_m(3)+num_tipo_m(4);
d = c + num_tipo_m(5);
J_Pt = JT(1:b , 1:a);
J_Pv = JT(1:b , a+1:2*num_barras-1);
J_Qt = JT(b+1:c , 1:a);
J_Qv = JT(b+1:c , a+1:2*num_barras-1);
J_Vt = JT(c+1:d , 1:a);
J_Vv = JT(c+1:d , a+1:2*num_barras-1);
end