Main Content

Improve Simulation Performance by Using Local Solvers

This example shows how using a local solver can improve simulation performance for a model hierarchy that contains components that operate on different time scales. The model in this example simulates the step response of a DC motor that drives a mechanical load.

A DC Motor is represented as an electrical and mechanical diagram. The electrical diagram includes a voltage source driving a resistor and inductor in series

Subcomponents of some dynamic systems operate on different time scales. For example, in this DC motor model, the electrical physics of the motor step response operate on a much faster time scale than the resulting mechanical motion. When you use referenced models to represent system components, you can configure one or more of the referenced models that represent each system component to use a local solver. This example analyzes the performance benefit of using a local solver for the electrical model of the DC motor.

Analyze System Dynamics

To determine whether your system might benefit from using a local solver, analyze the dynamics of your system. Consider using local solvers to improve simulation performance when:

  • The dynamics of one or more components are much faster or slower compared to the dynamics of other components in the system.

  • The solver best suited for the overall system is not ideal or well suited for one or more components.

Open the model DCMotorLocalSolver. The model implements the system using two referenced models:

  • The model DCMotorElectrical models the electrical response of the motor.

  • The model DCMotorMechanical models the mechanical response of the motor.

The electrical and mechanical models are coupled by the motor current and the angular speed of the motor and load. The block diagram represents the coupling using signals that connect the model references in the top model.

mdltop = "DCMotorLocalSolver";
open_system(mdltop)

The model DCMotorLocalSolver contains two Model blocks, named Electrical and Mechanical. A Step block provides input to the Electrical Model block, which sends a signal named Current to the Mechanical Model block. A Record block logs and plots data for the Angular Position and Angular Speed signals.

To analyze the electrical component, open the referenced model named DCMotorElectrical in the Simulink Editor by double-clicking the Model block named Electrical. Alternatively, open the model in the context of the model hierarchy by using a Simulink.BlockPath object.

mdlblkelec = mdltop + "/Electrical";
elecblk = Simulink.BlockPath(mdlblkelec);
open(elecblk)

The block diagram models the electrical dynamics of the motor using the motor electrical constant, resistance, and inductance. The inputs are the input voltage and angular speed, and the output is the motor current.

The electrical response of the motor is modeled as a series RL circuit. Using Kirchoff's Voltage Law, you can express the input voltage v as the sum of the voltage on the motor resistance iR, the voltage on the motor inductance Ldidt, and the voltage due to the motor electrical constant Ke and the angular velocity dθdt.

v=iR+Ldidt+Kedθdt

The electrical model of the motor calculates the value of the current, which the mechanical system uses to calculate the speed of the motor and load. Rearrange the equation to match the implementation in the model.

i=vR-LRdidt-KeRdθdt

The motor inductance and resistance determine the electrical time constant te of the motor.

te= LR

The motor in this example has an inductance of 2.5 μH and a resistance of 3 Ω, which results in an electrical time constant of approximately 800 ns.

To analyze the mechanical component, navigate back to the top model by clicking the back arrow . Then, open the referenced model named DCMotorMechanical in the Simulink Editor by double-clicking the Model block named Mechanical. Alternatively, open the model in the context of the model hierarchy by using a Simulink.BlockPath object.

mdlblkmech = mdltop + "/Mechanical";
mechblk = Simulink.BlockPath(mdlblkmech);
open(mechblk)

Tthe block diagram models the mechanical motion of the motor using the motor viscous friction constant, motor torque constant, and the combined inertia of the motor and the load. The input is the motor current, and the outputs are the angular position and angular speed.

The mechanical component models the rotational motion that results from the torque produced by the motor current. The total rotational moment of inertia from the motor and the load J times the angular acceleration dθdt2 is equal to the sum of the forces in the system. The motor current i and the magnetic field in the armature coil create a force scaled by the motor torque constant KT. For this example, assume the magnetic field is constant. The angular speed dƟdt creates a force that is scaled by the viscous friction of the motor b.

Jdθdt2=KTi- bdƟdt

The mechanical model of the motor integrates the angular acceleration to calculate the angular speed of the motor and load, which the electrical system uses to calculate the current.

dθdt2=KTJi- bJdƟdt

The motor resistance, the inertia of the motor and load, the electrical constant, and the torque constant for the motor determine the mechanical time constant tm [1].

tm= RJKeKT

The motor in this model has a resistance of 3 Ω, an electrical constant of 0.025 Vsrad, and a torque constant of 0.25 NmA. The total moment of inertia for the system is 3.2 μNms2, resulting in a mechanical time constant of approximately 15 ms.

The Model DCMotorLocalSolver can likely benefit from using local solvers because the dynamics of the electrical component, which has a time constant of 800 ns, differ significantly, by several orders of magnitude, from the dynamics of the mechanical component, which has a time constant of 15 ms.

Run Baseline Simulation

To confirm that using a local solver for the electrical component improves simulation performance without affecting the simulation results more than desired, create a baseline for the outputs and timing of a simulation that uses a single solver.

When you simulate the model using a single solver, the whole system must run using the same time step. Because the electrical time constant is much smaller than the mechanical time constant, the dynamics of the electrical component constrain the choice of the step size. The step size must be small enough to capture the dynamics of the electrical response.

For this example, the model uses the fixed-step solver ode3 with a step size of 200 ns. Before running the baseline simulation, ensure that neither referenced model uses a local solver by disabling the UseModelRefSolver parameter of each referenced model.

set_param(mdltop,SolverType="Fixed-step",Solver="ode3",FixedStep="2e-7")

mechmdl = "DCMotorMechanical";
set_param(mechmdl,UseModelRefSolver="off")

elecmdl = "DCMotorElectrical";
set_param(elecmdl,UseModelRefSolver="off")

Simulate the model to create a baseline for the simulation results and execution time.

baseout = sim(mdltop);

To see the amount of time required to execute the simulation, check the ExecutionElaspedWallTime field of the TimingInfo structure in the simulation metadata. The Simulink.SimulationOutput object baseout contains a Simulink.SimulationMetadata object with information about the model and simulation, including the structure TimingInfo. When you simulate the entire system using the ode3 solver with a step size of 200 ns, the execution phase of the simulation runs for several seconds.

exbase = baseout.SimulationMetadata.TimingInfo.ExecutionElapsedWallTime
exbase = 2.9576

To capture a baseline for the simulation results, the Record block in the model logs the position and speed data to the Simulation Data Inspector. Access the run created in the Simulation Data Inspector and change the name to Baseline: DCMotorLocalSolver.

baserun = Simulink.sdi.Run.getLatest;
baserun.Name = "Baseline";

Simulate Using Local Solver

To see the performance benefit and impact on the model outputs, configure the electrical model to use a local solver. When the electrical model uses a local solver, the top solver for the model DCMotorLocalSolver does not need to consider the dynamics of the electrical system. Only the much larger mechanical time constant and the communication step size, which specifies the rate at which the top and local solvers exchange data, constrain the top solver step size. The top solver can take much larger steps and compute results for many fewer time steps in the simulation, which can improve simulation performance.

Configure the top solver to use a step size of 2 ms.

set_param(mdltop,FixedStep="2e-3")

Configure the model DCMotorElectrical to use the solver ode3 as a local solver with a step size of 200 ns. You can specify the configuration parameters of the referenced model from the top model, by using the Property Inspector or the Block Parameters dialog box.

  1. Open the Property Inspector. On the Modeling tab, expand the Design section and select Property Inspector, or press Ctrl+Shift+I.

  2. To open the Configuration Parameters dialog box for the referenced model, select the Model block named Electrical. Then, in the Property Inspector, expand the Solver section, and click the hyperlink next to the Use local solver parameter.

  3. Configure the model to use a local solver when referenced in a model hierarchy. In the Configuration Parameters dialog box for the model DCMotorElectrical, on the Model Referencing pane, select Use local solver when referencing model.

  4. Select the fixed-step solver ode3 as the local solver. In the Configuration Parameters dialog box, on the Solver pane, from the Type list, select Fixed-step. Then, from the Solver list, select ode3 (Bogacki-Shampine).

  5. Set the local solver step size to 200ns. On the Solver pane, expand Solver details. Then, in the Fixed-step size (fundamental sample time) box, enter 2e-7.

  6. Apply the settings to the model. In the Configuration Parameters dialog box, click OK.

Alternatively, you can specify the configuration parameters of the referenced model programmatically using the set_param function.

elecmdl = "DCMotorElectrical";
set_param(elecmdl, ...
    UseModelRefSolver="on", ...
    SolverType="Fixed-step", ...
    Solver="ode3", ...
    FixedStep="2e-7");

In the top model, the Model block that references the electrical model of the motor indicates that the referenced model uses a local solver by displaying the name of the selected solver on the block icon.

The Model block icon has a label that says ode3.

Finally, specify the communication step size for the Model block that references the electrical model of the motor. The communication step size is registered as a discrete sample time for the Model block in the parent model and must be an integer multiple of both the parent solver step size and the local solver step size. Because the communication step size specifies when the parent and local solvers exchange data, the value you choose might affect the accuracy of the simulation results.

For this example, set the communication step size for the Model block named Electrical to the smallest possible value of 2 ms, equal to the top solver step size.

set_param(mdlblkelec,CommunicationStepSize="2e-3")

Simulate the model using the local solver to simulate the electrical model of the motor.

localout = sim(mdltop);

Check the simulation metadata to see the amount of time the simulation spent in the execution phase. When you use a local solver for the much faster electrical dynamics, the simulation runs much faster, spending less than a second in the execution phase compared to several seconds with a single solver.

exlocal = localout.SimulationMetadata.TimingInfo.ExecutionElapsedWallTime
exlocal = 0.6861

Calculate the performance improvement as a percentage of the baseline simulation execution time.

pctimprovement = (exbase - exlocal)/exbase * 100
pctimprovement = 76.8005

Access the run created in the Simulation Data Inspector. Change the name to Local Solver: DCMotorLocalSolver.

localrun = Simulink.sdi.Run.getLatest;
localrun.Name = "LocalSolver";

Analyze Simulation Results

To see whether using a local solver affected the simulation results, plot the position and speed data from both simulations in the Simulation Data Inspector. On the Simulation tab, under Review Results, click Data Inspector.

Alternatively, open the Simulation Data Inspector using the Simulink.sdi.view function.

Simulink.sdi.view

In the Simulation Data Inspector, plot the speed and position signals from the two runs. Alternatively, use the Simulink.sdi.loadView function to load the view named DCMotorLocalSolver1, which was created for this example.

Simulink.sdi.loadView("DCMotorLocalSolver1.mldatx");

The results from the local solver simulation are nearly the same as the results from the baseline simulation that used a single solver. The solid line shows the baseline result. The dotted line shows the local solver result.

A two-by-one plot in the Simulation Data Inspector shows the angular speed signals from the baseline and local solver simulations on the top plot and the angular position signals from the two simulations on the bottom plot.

The biggest difference occurs in the Angular Speed signal at the start of the simulation. The local solver results start to match the single solver results more closely after the first major time hit that corresponds to the communication step size, which is the first time top solver receives updated information from the local solver about the electrical response.

To evaluate whether the configuration of the local solver satisfies accuracy requirements, compare the runs using the Simulation Data Inspector.

  1. To navigate to the Compare pane in the Simulation Data Inspector, click Compare.

  2. From the Baseline list, select Baseline: DCMotorLocalSolver.

  3. From the Compare to list, select LocalSolver: DCMotorLocalSolver.

  4. To run the comparison, click Compare.

Alternatively, compare the runs programmatically using the Simulink.sdi.compareRuns function.

compresults = Simulink.sdi.compareRuns(baserun.ID,localrun.ID);

The comparison results indicate that neither signal matches within the default tolerance of 0 between the baseline simulation and the simulation that used the local solver. The table in the Simulation Data Inspector shows that the maximum difference computed for the angular speed signals is much larger than the maximum difference computed for the angular position signals.

The comparison results table in the Simulation Data Inspector shows that the maximum difference computed for the angular position signals is 0.03 and the maximum difference computed for the angular speed signals is 4.88.

To view plots of the angular speed signals and the computed difference signal, select the row in the table for the angular speed signals. The plot of the difference signal shows that the maximum difference occurs at the start of the simulation and that the difference in the signal value is significantly smaller than the maximum difference for most of the simulation.

Two subplots in the Compare pane of the Simulation Data Inspector display the comparison results for the signal named Angular Speed. The top plot shows the signal from each run, and the bottom plot shows the difference signal computed in the comparison.

When you have specific accuracy requirements for your system, you can incorporate those requirements into the comparison by specifying a combination of absolute, relative, and time tolerance values for the comparison.

Several aspects of the local solver configuration can affect the accuracy of the simulation results. Because the local solver in this example uses a step size that is smaller than the communication step size, the only option available to improve the simulation results is decreasing the communication step size. However, in this example, decreasing the communication step size requires also decreasing the top solver step size, which results in a smaller performance improvement.

Reference

[1] Younkin, George W. "Electric Servo Motor Equations and Time Constants." https://support.controltechnologycorp.com/customer/elearning/younkin/driveMotorEquations.pdf.

See Also

Blocks

Model Settings

Tools

Related Topics