ZIPV
(read/write)
This property sets/gets an array of 7 doubles with values for ZIPV property of the active load object:
First 3 are ZIP weighting factors for real power (should sum to 1).
Next 3 are ZIP weighting factors for reactive power (should sum to 1).
Last 1 is cut-off voltage in p.u. of base kV; load is 0 below this cut-off.
No defaults; all coefficients must be specified if using model=8.
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;
% gets the ZIPV coefficients for the active load
myZIPV = DSSLoads.ZIPV;