25 lines
515 B
Matlab
25 lines
515 B
Matlab
function [ this ] = init( this,Volt0,PDi,QDi,wPD,wQD,wVolt,wLoadCurrent,PD0,QD0,rPD,rQD,Y,Angel,r,c,PG,QG,Balance,mLoadCurrent)
|
|
%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;
|
|
this.rPD=rPD;
|
|
this.rQD=rQD;
|
|
this.wVolt=wVolt;
|
|
this.wLoadCurrent=wLoadCurrent;
|
|
this.mLoadCurrent=mLoadCurrent;
|
|
end
|
|
|