AbstractTimeDependentSimulation

class plasmapy.simulation.abstractions.AbstractTimeDependentSimulation[source]

Bases: AbstractSimulation

A prototype abstract interface for time-dependent numerical simulations.

Warning

This interface is unstable and is subject to change.

Methods Summary

finalize()

Perform the steps to close the simulation.

initialize()

Prepare the simulation to be run.

simulate()

Perform the simulation.

summarize()

Print a summary of the simulation parameters and status.

Methods Documentation

abstractmethod finalize() None

Perform the steps to close the simulation.

abstractmethod initialize() None

Prepare the simulation to be run.

abstractmethod simulate()

Perform the simulation.

abstractmethod summarize()

Print a summary of the simulation parameters and status.