drasil-code-0.1.9.0: A framework for code and document generation for scientific software - Code SubPackage
Safe HaskellSafe-Inferred
LanguageHaskell2010

Language.Drasil.Data.ODEInfo

Description

Defines a structure to contain scientifically-relevant information about an ODE.

Synopsis

Documentation

data ODEInfo Source #

Structure to hold ODE information.

Constructors

ODEInfo 

Fields

odeInfo' :: [CodeVarChunk] -> ODEOptions -> DifferentialModel -> InitialValueProblem -> ODEInfo Source #

Create ODEInfo with Other variables, ODEOptions, DifferentialModel, and InitialValueProblem

data ODEOptions Source #

Other parameters for solving the ODE numerically

Constructors

ODEOpts 

Fields

data ODEMethod Source #

Methods for solving ODEs. Includes Runge-Kutta 4-5, Backwards Differentiation Formula, or Adams' method.

Constructors

RK45 
BDF 
Adams