MinTap
(read/write)
This property sets/gets the minimum tap for the active Winding in per-unit of the winding voltage rating. Default is 0.90.
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;
% Activates the first winding of the active transformer
DSSXfmr.Wdg = 1;
% sets the min Tap for the active winding of the active transformer
DSSXfmr.MinTap = 0.88;