AllLoopedPairs
(read only)
This property returns a variant array of all looped element names, by pairs.
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';
DSSTopology = DSSCircuit.Topology;
% Activate first branch on the list (closer to the substation)
i = DSSTopology.Fist;
% gets the names of the isolated branches in the model
myIsolatedBr = DSSTopology.AllIsolatedBranches;
% gets the names of the isolated loads in the model
myIsolatedBr = DSSTopology.AllIsolatedLoads;
% gets the names of the looped pairs in the model
myIsolatedBr = DSSTopology.AllLoopedPairs;