AccumulatedL
(read only)
This property returns the accumulated failure rate for the active branch on down line.
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;
% Handler for PDelements interface
DSSPDE = DSSObject.PDElements;
% Activates the first PDE on the list
i = DSSPDE.First;
% Gets the accumulated failure rate
myFR = DSSPDE.AccumulatedL;