(read/write)


This property sets/gets the Name of the GrowthShape curve for yearly load growth factors. Must be previously defined as a GrowthShape object. Defaults to circuit default growth factor (see Set Growth command).


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 name of the GrowthShape for the active load

myGrowth = DSSLoads.Growth;