GroundInst
(read/write)
This property sets/gets the ground (3I0) instantaneous trip setting - curve multiplier or actual amps. This is the actual amps for instantaneous ground trip which is assumed to happen in 0.01 sec + Delay Time.Default is 0.0, which signifies no inst trip.
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';
DSSReclosers = DSSCircuit.Reclosers;
% Activates the first recloser on the list
i = DSSReclosers.First;
% gets the instantaneous ground trip of the active recloser
myGInst = DSSReclosers.GroundInst;