NewCircuit
(method)
This method makes a new circuit and return interface to active circuit.
Example
% Create DSS object
DSSObject = actxserver('OpenDSSEngine.DSS')
if ~DSSObject.Start(0),
disp('Unable to start openDSS');
return
end;
% Clears the existing model from memory
DSSObject.ClearAll();
% Creates a new one and gets the handler
DSSCircuit = DSSObject.NewCircuit(My_Circuit');