original.not modified.

This commit is contained in:
facat
2012-05-22 11:33:21 +08:00
commit cb34aec845
83 changed files with 13475 additions and 0 deletions

20
FormG.m Normal file
View File

@@ -0,0 +1,20 @@
function Mat_G=FormG(Volt,PVi,PGi,PG,QG)
%t1=PG(PVi);
%GP=t1;%P
%GP=[4.5 4.5]';
%%线
%Q
% t1=Volt'*Volt;
% t2=real(GB).*sin(AngleIJMat)-imag(GB).*cos(AngleIJMat);
% t3=t1.*t2;
% t4=sum(t3,2);%Q
%GQ=t4;
Mat_G=[
%GP;
PG(PGi);
QG(PVi);
%GQ(PVi);
%[0 1.45]';
Volt';
];
end