AbstractTimeDependentSimulation¶
-
class
plasmapy.simulation.
AbstractTimeDependentSimulation
¶ Bases:
plasmapy.simulation.abstractions.AbstractSimulation
A prototype abstract interface for time-dependent numerical simulations.
Notes
This interface is incomplete and unstable, and is thus subject to change at any time.
Methods Summary
finalize
()Perform the steps to close the simulation and output data.
Prepare the simulation to be run.
simulate
()Perform the actual simulation.
Print out a summary of the simulation parameters and status.
Methods Documentation
-
abstract
finalize
() → NoReturn¶ Perform the steps to close the simulation and output data.
-
abstract
initialize
() → NoReturn¶ Prepare the simulation to be run.
-
abstract
simulate
()¶ Perform the actual simulation.
-
abstract
summarize
()¶ Print out a summary of the simulation parameters and status.
-
abstract