Uses of Class
org.hipparchus.ode.ExpandableODE
Package
Description
This package provides migration classes from Apache Commons Math to Hipparchus.
This package provides classes to solve Ordinary Differential Equations problems.
This package provides classes to solve non-stiff Ordinary Differential Equations problems.
-
Uses of ExpandableODE in org.hipparchus.migration.ode
Modifier and TypeMethodDescriptionvoid
JacobianMatrices.registerVariationalEquations
(ExpandableODE expandable) Deprecated.Register the variational equations for the Jacobians matrices to the expandable set. -
Uses of ExpandableODE in org.hipparchus.ode
Modifier and TypeMethodDescriptionprotected ExpandableODE
AbstractIntegrator.getEquations()
Get the differential equations to integrate.Modifier and TypeMethodDescriptionprotected ODEStateAndDerivative
AbstractIntegrator.initIntegration
(ExpandableODE eqn, ODEState s0, double t) Prepare the start of an integration.ODEIntegrator.integrate
(ExpandableODE equations, ODEState initialState, double finalTime) Integrate the differential equations up to the given time.protected void
MultistepIntegrator.start
(ExpandableODE equations, ODEState initialState, double finalTime) Start the integration.ModifierConstructorDescriptionVariationalEquation
(ExpandableODE expandable, ODEJacobiansProvider jode) Build variational equation using analytical local partial derivatives.VariationalEquation
(ExpandableODE expandable, OrdinaryDifferentialEquation ode, double[] hY, ParametersController controller, ParameterConfiguration... paramsAndSteps) Build variational equation using finite differences for local partial derivatives. -
Uses of ExpandableODE in org.hipparchus.ode.nonstiff
Modifier and TypeMethodDescriptionstatic void
ExplicitRungeKuttaIntegrator.applyInternalButcherWeights
(ExpandableODE equations, double t0, double[] y0, double h, double[][] a, double[] c, double[][] yDotK) Apply internal weights of Butcher array, with corresponding times.AdamsIntegrator.integrate
(ExpandableODE equations, ODEState initialState, double finalTime) Integrate the differential equations up to the given time.EmbeddedRungeKuttaIntegrator.integrate
(ExpandableODE equations, ODEState initialState, double finalTime) Integrate the differential equations up to the given time.GraggBulirschStoerIntegrator.integrate
(ExpandableODE equations, ODEState initialState, double finalTime) Integrate the differential equations up to the given time.RungeKuttaIntegrator.integrate
(ExpandableODE equations, ODEState initialState, double finalTime) Integrate the differential equations up to the given time.