ConcatenateReports
(read/write)
This property activates/deactivates the concatenate reports option. With this option, the user can put together all the individual reports for the actors automatically.
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;
% Handler for Parallel processing functions
DSSParallel = DSSCircuit.Parallel;
% Gets the number of CPUs this PC has
CPUs = DSSParallel.NumCPUs;
% Checks if concatenate reports is enabled, if not, enables it
if ~DSSParallel.ConcatenateReports,
DSSParallel.ConcatenateReports = 1;
end;