This interface is the Top interface at the OpenDSSEngine. It is the object reference delivered after connecting to the COM interface and it gives access to the other interfaces in OpenDSSEngine.


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;

DSSCtrlQueue = DSSCircuit.CtrlQueue;