stateestimateionyalmip-lu9-.../@Opti/init.m

26 lines
545 B
Mathematica
Raw Normal View History

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