Vminpu
(read/write)
This property sets/gets the minimum per unit voltage for which the Model is assumed to apply. Below this value, the load model reverts to a constant impedance model. For model 7, the current is limited to the value computed for constant power at Vminpu. Default = 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';
DSSGen = DSSCircuit.Generators;
% Selects the first Generator from the list
DSSGen.First;
% gets the minimum pu voltage for the active Generator
myVmax = DSSGen.Vminpu;