IsDelta
(read/write)
This property sets/gets if the load is delta connected.
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';
DSSLoads = DSSCircuit.Loads;
% activates the first load on the list
i = DSSLoads.First;
% Checks if the active load is delta connected, if not, makes it delta
if ~DSSLoads.IsDelta,
DSSLoads.IsDelta = true;
end;