20 lines
366 B
Mathematica
20 lines
366 B
Mathematica
|
|
function [ this ] = init( this,Volt0,PDi,QDi,wPD,wQD,PD0,QD0,Y,Angel,r,c,PG,QG,Balance )
|
||
|
|
%INIT Summary of this function goes here
|
||
|
|
% Detailed explanation goes here
|
||
|
|
this.PDi=PDi;
|
||
|
|
this.QDi=QDi;
|
||
|
|
this.wPD=wPD;
|
||
|
|
this.wQD=wQD;
|
||
|
|
this.PD0=PD0;
|
||
|
|
this.QD0=QD0;
|
||
|
|
this.Y=Y;
|
||
|
|
this.Angel=Angel;
|
||
|
|
this.r=r;
|
||
|
|
this.c=c;
|
||
|
|
this.PG=PG;
|
||
|
|
this.QG=QG;
|
||
|
|
this.Balance=Balance;
|
||
|
|
this.Volt0=Volt0;
|
||
|
|
end
|
||
|
|
|