Wdg
(read/write)
This property sets/gets the active Winding Number from 1..NumWindings. Update this before reading or setting a sequence of winding properties (R, Tap, kV, kVA, etc.).
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';
DSSXfmr = DSSCircuit.Transformers;
% Activates the first transformer on the list
i = DSSXfmr.First;
% gets the Rneut for the active transformer
for j = 1:DSSXfmr.NumWindings,
DSSXfmr.Wdg = j;
disp(['Winding ', num2str(j),' Tap = ', num2str(DSSXfmr.Tap)]);
end;