Uses of Class
org.hipparchus.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.hipparchus.ode
Methods in org.hipparchus.ode that return FieldExpandableODEModifier and TypeMethodDescriptionprotected FieldExpandableODE
<T> AbstractFieldIntegrator.getEquations()
Get the differential equations to integrate.Methods in org.hipparchus.ode with parameters of type FieldExpandableODEModifier 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
Methods in org.hipparchus.ode.nonstiff with parameters of type FieldExpandableODEModifier 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> FixedStepRungeKuttaFieldIntegrator.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.FixedStepRungeKuttaFieldIntegrator.integrate
(FieldExpandableODE<T> equations, FieldODEState<T> initialState, T finalTime) Integrate the differential equations up to the given time.