Record Coverage in Parallel Simulations by Using Parsim
This example shows how to record coverage in multiple parallel Simulink® simulations corresponding to different test cases by using SimulationInput
objects and the parsim
command. If Parallel Computing Toolbox is installed on your system, the parsim
command runs simulations in parallel. Otherwise, the simulations are run in serial.
Model Overview
The slvnvdemo_powerwindow_parsim
model contains a power window controller and a low-order plant model. The component slvnvdemo_powerwindow_parsim/power_window_control_system/control
is a Model block that references the model slvnvdemo_powerwindow_controller
, which implements the controller with a Stateflow® chart.
mdl = 'slvnvdemo_powerwindow_parsim';
isModelOpen = bdIsLoaded(mdl);
open_system(mdl);
Set Up Data for Multiple Simulations
Determine the number of test cases in the Signal Editor block by using the NumberOfScenarios
parameter. The number of test cases determines the number of iterations to run.
sigEditBlk = [mdl '/Input']; numCases = str2double(get_param(sigEditBlk,'NumberOfScenarios'));
Create an array of
objects to define the set of simulations to run. Each Simulink.SimulationInput
SimulationInput
object corresponds to one simulation and is stored in array simIn
. For each simulation, set these parameters:
ActiveScenario
to indicate which scenario of the Signal Editor block to executeCovEnable
to turn on coverage analysisCovSaveSingleToWokspaceVar
to save the coverage results to a workspace variableCovSaveName
to specify the name of the variable.
for idx = numCases:-1:1 simIn(idx) = Simulink.SimulationInput(mdl); simIn(idx) = setBlockParameter(simIn(idx),... sigEditBlk,'ActiveScenario',idx); simIn(idx) = setModelParameter(simIn(idx),... 'CovEnable','on'); simIn(idx) = setModelParameter(simIn(idx),... 'CovIncludeTopModel','off'); simIn(idx) = setModelParameter(simIn(idx),... 'CovSaveSingleToWorkspaceVar','on'); simIn(idx) = setModelParameter(simIn(idx),... 'CovSaveName','covdata'); end
Run Simulations in Parallel by Using Parsim
Use the
function to execute the simulations in parallel. Pass the array of parsim
SimulationInput
objects, simIn
, into the parsim
function as the first argument. Set the ShowProgress
option to on
to display the progress of the simulations in the MATLAB Command Window. The output from the parsim
command is simOut
, an array of Simulink.SimulationOutput
objects.
simOut = parsim(simIn, 'ShowProgress', 'on');
[06-Sep-2024 01:18:57] Checking for availability of parallel pool... Starting parallel pool (parpool) using the 'Processes' profile ... Connected to parallel pool with 4 workers. [06-Sep-2024 01:19:36] Starting Simulink on parallel workers... [06-Sep-2024 01:20:13] Configuring simulation cache folder on parallel workers... [06-Sep-2024 01:20:13] Loading model on parallel workers... [06-Sep-2024 01:20:52] Running simulations... [06-Sep-2024 01:21:15] Completed 1 of 2 simulation runs [06-Sep-2024 01:21:15] Received simulation output (size: 16.16 KB) for run 1 from parallel worker. [06-Sep-2024 01:21:15] Completed 2 of 2 simulation runs [06-Sep-2024 01:21:15] Received simulation output (size: 16.16 KB) for run 2 from parallel worker. [06-Sep-2024 01:21:15] Cleaning up parallel workers...
Each
object contains logged coverage results stored as Simulink.SimulationInput
. These coverage results are stored in a field named cv.cvdatagroup
objectscovdata
, as previously specified by the CovSaveName
parameter. Using parsim
to run multiple simulations means that errors are captured so that subsequent simulations can continue to run. Any errors are recorded in the ErrorMessage
property of the SimulationOutput
object.
covdata
references a file containing the coverage results. The coverage data from the referenced file is automatically loaded into memory when covdata
is used by a coverage function.
simOut(1).covdata
ans = ... cvdata file: /tmp/Bdoc24b_2725827_4120716/tpe07562ab/slcoverage-ex16619798/slcov_output/slvnvdemo_powerwindow_parsim/slvnvdemo_powerwindow_parsim_cvdata_1.cvt date: 06-Sep-2024 01:21:14
Compute Cumulative Coverage
Obtain the coverage data from each element of simOut
and cumulate the results.
coverageData = simOut(1).covdata; for i = 2 : numCases coverageData = coverageData + simOut(i).covdata; end
View the cumulative coverage results on the model by using coverage highlighting.
open(Simulink.BlockPath(... 'slvnvdemo_powerwindow_parsim/power_window_control_system/control')); cvmodelview(coverageData);
Generate a cumulative coverage report.
cvhtml('cummulative_cov_report.html', coverageData);