GeometricSolutions
Documentation for GeometricSolutions.
GeometricSolutions.EnsembleSolution
โ TypeEnsembleSolution
: Collection of all solutions of an EnsembleProblem
.
GeometricSolutions.GeometricSolution
โ TypeGeometricSolution
: Solution of a geometric differential equation
Contains all fields necessary to store the solution of a GeometricProblem.
Fields
t
: time stepss
: NamedTuple of DataSeries for each solution componentstep
: store every step'th time step (default: 1)nstore
: number of time steps to storeoffset
: offset of current time step
Constructors
GeometricSolution(problem, step = 1)
The usual way to initialise a Solution
is by passing a GeometricProblem
, which can for example be an ODEProblem
or PODEProblem
. The optional parameter step
determines the intervals for storing the solution, i.e., if step > 1
only every step
'th solution is actually stored.