Skip to content
Snippets Groups Projects
Select Git revision
  • f7f55e634dac6e60e25599e45cfbcff06a3ae5a2
  • main default protected
  • ravaflow3g
  • docs
  • v0.1.2
  • v0.1.1
  • v0.1.0
7 results

run_simulator.rst

Blame
  • run_simulator.rst 1.05 KiB

    Run Simulator

    A simulator which describes certain real-world system is often subject to uncertainties. Uncertainty-related analyses require running the simulator multiple times at different variable input points. Class :class:`.RunSimulator` implemented in this module provides functionality to sequentially or parallelly execute simulator at a number of varaible input points.

    The user needs to define their simulator, implement an interface (essentially a Python function) to call the simulator from within Python and return output of interest, and inform :class:`.RunSimulator` the signature of the interface.

    RunSimulator Class

    The :class:`.RunSimulator` class is imported by:

    from psimpy.simulator.run_simulator import RunSimulator

    Methods

    Attributes