kva
(read/write)
This property sets/gets the active Winding kVA rating. On winding 1, this also determines normal and emergency current ratings for all windings.
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;
% get the nominal kVA of the active transformer
mykVA = DSSXfmr.kva;