(Method)


This method returns the current state of the fuses. TRUE if any fuse on any phase is blown. Else FALSE..


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';

DSSFuses = DSSCircuit.Fuses;

% Selects the first fuse from the list

DSSFuses.First;

% Checks if the fuse is blown

if DSSFuses.IsBlown(),

                    disp('The fuse is blown');

end;