ICoSimulatorResuming Method |
Simulation resuming with a negotiated speed.
Or simulation negotiated speed changed.
Namespace: Demo3D.Time.CoSimulationAssembly: Demo3D.Time (in Demo3D.Time.dll) Version: 19.00.00
SyntaxCoSimulatorAction Resuming(
double speed
)
Parameters
- speed Double
- The speed factor.
Return Value
CoSimulatorActionReturns an action for the co-simulation master to apply.
Remarks
Resuming is always called in the simulation thread.
It's typically called first, followed by a sequence of BeforeStep, Step, AfterStep, and ending with a call to Paused. But:
- It's possible for Resuming also to be called in the middle of a sequence of steps if the simulation speed changes while running.
- It's possible for Resuming to be called while Step is running, if your configuration requires Step to be run in a separate thread.
See Also