Uses of Class
org.apache.commons.math3.ode.FieldExpandableODE
Packages that use FieldExpandableODE
Package
Description
This package provides classes to solve Ordinary Differential Equations problems.
This package provides classes to solve non-stiff Ordinary Differential Equations problems.
-
Uses of FieldExpandableODE in org.apache.commons.math3.ode
Methods in org.apache.commons.math3.ode that return FieldExpandableODEModifier and TypeMethodDescriptionprotected FieldExpandableODE
<T> AbstractFieldIntegrator.getEquations()
Get the differential equations to integrate.Methods in org.apache.commons.math3.ode with parameters of type FieldExpandableODEModifier and TypeMethodDescriptionprotected FieldODEStateAndDerivative
<T> AbstractFieldIntegrator.initIntegration
(FieldExpandableODE<T> eqn, T t0, T[] y0, T t) Prepare the start of an integration.FirstOrderFieldIntegrator.integrate
(FieldExpandableODE<T> equations, FieldODEState<T> initialState, T finalTime) Integrate the differential equations up to the given time.protected void
MultistepFieldIntegrator.start
(FieldExpandableODE<T> equations, FieldODEState<T> initialState, T t) Start the integration. -
Uses of FieldExpandableODE in org.apache.commons.math3.ode.nonstiff
Methods in org.apache.commons.math3.ode.nonstiff with parameters of type FieldExpandableODEModifier and TypeMethodDescriptionAdamsBashforthFieldIntegrator.integrate
(FieldExpandableODE<T> equations, FieldODEState<T> initialState, T finalTime) Integrate the differential equations up to the given time.abstract FieldODEStateAndDerivative
<T> AdamsFieldIntegrator.integrate
(FieldExpandableODE<T> equations, FieldODEState<T> initialState, T finalTime) Integrate the differential equations up to the given time.AdamsMoultonFieldIntegrator.integrate
(FieldExpandableODE<T> equations, FieldODEState<T> initialState, T finalTime) Integrate the differential equations up to the given time.EmbeddedRungeKuttaFieldIntegrator.integrate
(FieldExpandableODE<T> equations, FieldODEState<T> initialState, T finalTime) Integrate the differential equations up to the given time.RungeKuttaFieldIntegrator.integrate
(FieldExpandableODE<T> equations, FieldODEState<T> initialState, T finalTime) Integrate the differential equations up to the given time.