Uses of Class
org.hipparchus.ode.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.hipparchus.ode
Modifier and TypeMethodDescriptionprotected FieldExpandableODE<T>
AbstractFieldIntegrator.getEquations()
Get the differential equations to integrate.Modifier and TypeMethodDescriptionprotected FieldODEStateAndDerivative<T>
AbstractFieldIntegrator.initIntegration
(FieldExpandableODE<T> eqn, FieldODEState<T> s0, T t) Prepare the start of an integration.FieldODEIntegrator.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.hipparchus.ode.nonstiff
Modifier and TypeMethodDescriptionstatic <T extends CalculusFieldElement<T>>
voidFieldExplicitRungeKuttaIntegrator.applyInternalButcherWeights
(FieldExpandableODE<T> equations, T t0, T[] y0, T h, double[][] a, double[] c, T[][] yDotK) Apply internal weights of Butcher array, with corresponding times.static <T extends CalculusFieldElement<T>>
voidFieldExplicitRungeKuttaIntegrator.applyInternalButcherWeights
(FieldExpandableODE<T> equations, T t0, T[] y0, T h, T[][] a, T[] c, T[][] yDotK) Apply internal weights of Butcher array, with corresponding times.protected FieldODEStateAndDerivative<T>
EmbeddedRungeKuttaFieldIntegrator.initIntegration
(FieldExpandableODE<T> eqn, FieldODEState<T> s0, T t) Prepare the start of an integration.protected FieldODEStateAndDerivative<T>
RungeKuttaFieldIntegrator.initIntegration
(FieldExpandableODE<T> eqn, FieldODEState<T> s0, T t) Prepare the start of an integration.AdamsFieldIntegrator.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.