VLL
(read only)
This property returns for 2- and 3-phase buses, a variant array of complex numbers representing L-L voltages in volts. Returns -1.0 for 1-phase bus. If more than 3 phases, returns only first 3.
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')
myVolt = DSSActiveBus.VLL;
mySize = size(myVolt);
myVMagAng = [];
% Converts from complex to polar
for i = 1:2:(mySize(2) - 1),
myVMagAng = [myVMagAng;[abs(myVolt(i) + j*myVolt(i + 1)),angle(myVolt(i) + j*myVolt(i + 1))*180/pi]];
end;