Iterations
(read only)
This property returns the number of iterations taken for last solution. (Same as TotalIterations).
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';
DSSSolution = DSSCircuit.Solution;
% Initialize snap solution
DSSSolution.InitSnap();
% solves the circuit without control actions
DSSSolution.SolveNoControl();
% Do control actions
DSSSolution.DoControlActions();
% get the number of iterations required for the latest solution
myNumIter = DSSSolution.Iterations;