(read only)


This property returns a variant array of strings containing the names of the nodes in the same order as the Y matrix.


Example


% Create DSS object

DSSObject = actxserver('OpenDSSEngine.DSS')

if ~DSSObject.Start(0),

                    disp('Unable to start openDSS');

                    return

end;

DSSText = DSSObject.Text;

DSSSolution = DSSCircuit.Solution;

DSSSolution.Solve();

% Gets the names of the nodes as assigned in the Y bus matrix

myYNodes = DSSCircuit.YNodeOrder;