Qbase
(read/write)
This property sets/gets the Base Q value for normalization. Default is zero, meaning the peak will be used.
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';
DSSLoadShapes = DSSCircuit.LoadShapes;
% Activates the first LoadShape of the list
i = DSSLoadShapes.First;
% gets the base Q of the active LoadShape
myQBase = DSSLoadShapes.Qbase;