(read only)


This property returns a Complex array of pu L-L voltages for 2- and 3-phase buses. Returns -1.0 for 1-phase bus. If more than 3 phases, returns only 3 phases.


Example


% Create DSS object

DSSObject = actxserver('OpenDSSEngine.DSS')

if ~DSSObject.Start(0),

                    disp('Unable to start openDSS');

                    return

end;

DSSText = DSSObject.Text;

DSSCircuit = DSSObject.ActiveCircuit;

% Compile a model        

DSSText.Command = 'Compile C:\myPath\myModel.dss';

DSSActiveBus = DSSCircuit.ActiveBus;

% Sets bus "myBus" as the active Bus

DSSCircuit.SetActiveBus('myBus')

mypuVolt = DSSActiveBus.puVLL;

mySize = size(mypuVolt);

myVMagAng = [];

% Converts from complex to polar

for i = 1:2:(mySize(2) - 1),

                    myVMagAng = [myVMagAng;[abs(mypuVolt(i) + j*mypuVolt(i + 1)),angle(mypuVolt(i) + j*mypuVolt(i + 1))*180/pi]];

end;