IsZ1Z0
(read only)
Invoking this property returns a flag denoting whether impedance data were entered in symmetrical components.
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';
DSSLineCodes = DSSCircuit.LinesCodes;
% activates the first line code on the list
i = DSSLineCodes.First;
% Checks if the impedance data was entered in symm components
if DSSLineCodes.IsZ1Z0,
disp('The impedance data was entered in symmetrical components');
else
disp('The impedance data was not entered in symmetrical components');
end;