Uses of Interface
org.apache.commons.math4.legacy.ode.FirstOrderDifferentialEquations
-
Packages that use FirstOrderDifferentialEquations Package Description org.apache.commons.math4.legacy.ode This package provides classes to solve Ordinary Differential Equations problems.org.apache.commons.math4.legacy.ode.nonstiff This package provides classes to solve non-stiff Ordinary Differential Equations problems. -
-
Uses of FirstOrderDifferentialEquations in org.apache.commons.math4.legacy.ode
Subinterfaces of FirstOrderDifferentialEquations in org.apache.commons.math4.legacy.ode Modifier and Type Interface Description interface
MainStateJacobianProvider
Interface expandingfirst order differential equations
in order to compute exactly the main state jacobian matrix forpartial derivatives equations
.Classes in org.apache.commons.math4.legacy.ode that implement FirstOrderDifferentialEquations Modifier and Type Class Description class
FirstOrderConverter
This class converts second order differential equations to first order ones.Methods in org.apache.commons.math4.legacy.ode that return FirstOrderDifferentialEquations Modifier and Type Method Description FirstOrderDifferentialEquations
ExpandableStatefulODE. getPrimary()
Get the primary set of differential equations.Methods in org.apache.commons.math4.legacy.ode with parameters of type FirstOrderDifferentialEquations Modifier and Type Method Description double
AbstractIntegrator. integrate(FirstOrderDifferentialEquations equations, double t0, double[] y0, double t, double[] y)
Integrate the differential equations up to the given time.double
FirstOrderIntegrator. integrate(FirstOrderDifferentialEquations equations, double t0, double[] y0, double t, double[] y)
Integrate the differential equations up to the given time.Constructors in org.apache.commons.math4.legacy.ode with parameters of type FirstOrderDifferentialEquations Constructor Description ExpandableStatefulODE(FirstOrderDifferentialEquations primary)
Build an expandable set from its primary ODE set.JacobianMatrices(FirstOrderDifferentialEquations fode, double[] hY, String... parameters)
Simple constructor for a secondary equations set computing Jacobian matrices. -
Uses of FirstOrderDifferentialEquations in org.apache.commons.math4.legacy.ode.nonstiff
Methods in org.apache.commons.math4.legacy.ode.nonstiff with parameters of type FirstOrderDifferentialEquations Modifier and Type Method Description double[]
RungeKuttaIntegrator. singleStep(FirstOrderDifferentialEquations equations, double t0, double[] y0, double t)
Fast computation of a single step of ODE integration.
-