AllNames
(read only)
This property gets the names of all the reactors int he active circuit.
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;
DSSSolution = DSSCircuit.Solution;
DSSRc = DSSCircuit.Reactors;
% Compile a model
DSSText.Command = 'Compile C:\myPath\myModel.dss';
DSSSolution.Solve;
% gets the name of all the reactors in the model (if any)
myNames = DSSRc.AllNames;