User Manual 4.14 Numerical ordinary differential equations : Différence entre versions
(Page créée avec « __NOTOC__ == Introduction == === Scope === This library can compute solutions for ordinary differential equations, as numerical approximations. The problems are usually in... ») |
|||
Ligne 19 : | Ligne 19 : | ||
|- | |- | ||
|Patrius | |Patrius | ||
− | |[{{JavaDoc4. | + | |[{{JavaDoc4.14}}/fr/cnes/sirius/patrius/math/ode/package-summary.html Package fr.cnes.sirius.patrius.math.ode] |
|- | |- | ||
|Patrius | |Patrius | ||
− | |[{{JavaDoc4. | + | |[{{JavaDoc4.14}}/fr/cnes/sirius/patrius/math/ode/nonstiff/package-summary.html Package fr.cnes.sirius.patrius.math.ode.nonstiff] |
|- | |- | ||
|Patrius | |Patrius | ||
− | |[{{JavaDoc4. | + | |[{{JavaDoc4.14}}/fr/cnes/sirius/patrius/math/ode/sampling/package-summary.html Package fr.cnes.sirius.patrius.math.ode.sampling] |
|} | |} | ||
Ligne 38 : | Ligne 38 : | ||
|- | |- | ||
|Patrius | |Patrius | ||
− | |[{{JavaDoc4. | + | |[{{JavaDoc4.14}}/fr/cnes/sirius/patrius/math/ode/events/package-summary.html Package fr.cnes.sirius.patrius.math.ode.events] |
|} | |} | ||
Ligne 109 : | Ligne 109 : | ||
|'''FirstOrderIntegrator''' | |'''FirstOrderIntegrator''' | ||
|This interface represents a first order integrator for differential equations. | |This interface represents a first order integrator for differential equations. | ||
− | |[{{JavaDoc4. | + | |[{{JavaDoc4.14}}/fr/cnes/sirius/patrius/math/ode/FirstOrderIntegrator.html ...] |
|- | |- | ||
|'''ODEIntegrator''' | |'''ODEIntegrator''' | ||
|This interface defines the common parts shared by integrators for first and second order differential equations. | |This interface defines the common parts shared by integrators for first and second order differential equations. | ||
− | |[{{JavaDoc4. | + | |[{{JavaDoc4.14}}/fr/cnes/sirius/patrius/math/ode/ODEIntegrator.html ...] |
|} | |} | ||
Ligne 124 : | Ligne 124 : | ||
|'''EventHandler''' | |'''EventHandler''' | ||
|This interface represents a handler for discrete events triggered during ODE integration. | |This interface represents a handler for discrete events triggered during ODE integration. | ||
− | |[{{JavaDoc4. | + | |[{{JavaDoc4.14}}/fr/cnes/sirius/patrius/math/ode/events/EventHandler.html ...] |
|} | |} | ||
Ligne 137 : | Ligne 137 : | ||
|'''AbstractIntegrator''' | |'''AbstractIntegrator''' | ||
|Base class managing common boilerplate for all integrators. | |Base class managing common boilerplate for all integrators. | ||
− | |[{{JavaDoc4. | + | |[{{JavaDoc4.14}}/fr/cnes/sirius/patrius/math/ode/AbstractIntegrator.html ...] |
|- | |- | ||
|'''AdaptiveStepsizeIntegrator''' | |'''AdaptiveStepsizeIntegrator''' | ||
|This abstract class holds the common part of all adaptive stepsize integrators for Ordinary Differential Equations. | |This abstract class holds the common part of all adaptive stepsize integrators for Ordinary Differential Equations. | ||
− | |[{{JavaDoc4. | + | |[{{JavaDoc4.14}}/fr/cnes/sirius/patrius/math/ode/nonstiff/AdaptiveStepsizeIntegrator.html ...] |
|- | |- | ||
|'''ClassicalRungeKuttaIntegrator''' | |'''ClassicalRungeKuttaIntegrator''' | ||
|This class implements the classical fourth order Runge-Kutta integrator for Ordinary Differential Equations (it is the most often used Runge-Kutta method). | |This class implements the classical fourth order Runge-Kutta integrator for Ordinary Differential Equations (it is the most often used Runge-Kutta method). | ||
− | |[{{JavaDoc4. | + | |[{{JavaDoc4.14}}/fr/cnes/sirius/patrius/math/ode/nonstiff/ClassicalRungeKuttaIntegrator.html ...] |
|- | |- | ||
|'''RungeKutta6Integrator''' | |'''RungeKutta6Integrator''' | ||
|This class implements the sixth order Runge-Kutta integrator for Ordinary Differential Equations (it is used as the default Stela Integrator). This integrator currently has an second order interpolator. | |This class implements the sixth order Runge-Kutta integrator for Ordinary Differential Equations (it is used as the default Stela Integrator). This integrator currently has an second order interpolator. | ||
− | |[{{JavaDoc4. | + | |[{{JavaDoc4.14}}/fr/cnes/sirius/patrius/math/ode/nonstiff/RungeKutta6Integrator.html ...] |
|- | |- | ||
|'''DormandPrince54Integrator''' | |'''DormandPrince54Integrator''' | ||
|This class implements the 5(4) Dormand-Prince integrator for Ordinary Differential Equations. | |This class implements the 5(4) Dormand-Prince integrator for Ordinary Differential Equations. | ||
− | |[{{JavaDoc4. | + | |[{{JavaDoc4.14}}/fr/cnes/sirius/patrius/math/ode/nonstiff/DormandPrince54Integrator.html ...] |
|- | |- | ||
|'''DormandPrince853Integrator''' | |'''DormandPrince853Integrator''' | ||
|This class implements the 8(5,3) Dormand-Prince integrator for Ordinary Differential Equations. | |This class implements the 8(5,3) Dormand-Prince integrator for Ordinary Differential Equations. | ||
− | |[{{JavaDoc4. | + | |[{{JavaDoc4.14}}/fr/cnes/sirius/patrius/math/ode/nonstiff/DormandPrince853Integrator.html ...] |
|- | |- | ||
|'''GraggBulirschStoerIntegrator''' | |'''GraggBulirschStoerIntegrator''' | ||
|This class implements a Gragg-Bulirsch-Stoer integrator for Ordinary Differential Equations. | |This class implements a Gragg-Bulirsch-Stoer integrator for Ordinary Differential Equations. | ||
− | |[{{JavaDoc4. | + | |[{{JavaDoc4.14}}/fr/cnes/sirius/patrius/math/ode/nonstiff/GraggBulirschStoerIntegrator.html ...] |
|- | |- | ||
|'''RungeKuttaIntegrator''' | |'''RungeKuttaIntegrator''' | ||
|This class implements the common part of all fixed step Runge-Kutta integrators for Ordinary Differential Equations. | |This class implements the common part of all fixed step Runge-Kutta integrators for Ordinary Differential Equations. | ||
− | |[{{JavaDoc4. | + | |[{{JavaDoc4.14}}/fr/cnes/sirius/patrius/math/ode/nonstiff/RungeKuttaIntegrator.html ...] |
|- | |- | ||
|'''CowellIntegrator''' | |'''CowellIntegrator''' | ||
|This class implements the 2nd order Stormer-Cowell integrator for Ordinary Differential Equations. | |This class implements the 2nd order Stormer-Cowell integrator for Ordinary Differential Equations. | ||
− | |[{{JavaDoc4. | + | |[{{JavaDoc4.14}}/fr/cnes/sirius/patrius/math/ode/nonstiff/cowell/CowellIntegrator.html ...] |
|} | |} | ||
Ligne 180 : | Ligne 180 : | ||
|'''EventState''' | |'''EventState''' | ||
|This class handles the state for one EventHandler during integration steps. | |This class handles the state for one EventHandler during integration steps. | ||
− | |[{{JavaDoc4. | + | |[{{JavaDoc4.14}}/fr/cnes/sirius/patrius/math/ode/events/EventState.html ...] |
|} | |} | ||
[[Category:User_Manual_4.14_Mathematics]] | [[Category:User_Manual_4.14_Mathematics]] |
Version actuelle en date du 5 septembre 2024 à 15:16
Introduction
Scope
This library can compute solutions for ordinary differential equations, as numerical approximations. The problems are usually in the form of : Compute an estimate of y(t) from t=t0 to t=t1, knowing the derivative y'=f(t,y), and y(t0)=y0.
The library can also handle multiple discrete events detection based on the results of the ongoing estimation, which can be used to dynamically alter the conditions of the problem being solved, or even stop the integration (for instance : when the function y reaches an expected value, the value of t at this point being the information needed, there is no need to go on).
Javadoc
Integrators
The ODE integrators are provided in the following packages :
Library | Javadoc |
---|---|
Patrius | Package fr.cnes.sirius.patrius.math.ode |
Patrius | Package fr.cnes.sirius.patrius.math.ode.nonstiff |
Patrius | Package fr.cnes.sirius.patrius.math.ode.sampling |
Event handling
The events are managed in the following package :
Library | Javadoc |
---|---|
Patrius | Package fr.cnes.sirius.patrius.math.ode.events |
Links
None as of now.
Useful Documents
A general purpose explanation of this section can be found here :
http://en.wikipedia.org/wiki/Numerical_ordinary_differential_equations
Package Overview
Please note that not all implementations are present in the following diagram for the sake of clarity.
Integrators :
Events package :
Features Description
Integrators
The provided integrators include :
- the Classical Runge Kutta integrator,
- the Dormand Prince 8(5, 3) integrator,
- the Gragg Bulirsch Stoer integrator,
- the 6th order Runge-Kutta integretor.
- the Stormer-Cowell integrator
The ODE package documentation can be found here .
Events
Event handling during an integrator run is a core functionality of the math package, therefore this is already well-documented in the Javadoc (please see the relevant section). This here is a short summary of how event handling works.
How to monitor events
- create an EventHandler implementation
You need to create an EventHandler implementation for the event you want to trace.
The most important method here is the g() method :double g(double t, double[] y) throws EventException;
This method (which takes as input a solution of the integration problem at a given "time" t) should be designed so that when the event occurs, the sign of the method changes. It should also be continuous.
The other methods of the interface are :-
int eventOccurred(double t, double[] y, boolean increasing, boolean forward) throws EventException
This method is called when an event happens. It should return :- STOP if the integration computation should stop
- RESET_STATE if the event handler wants to change the state vector before the integration resumes (the resetState method will be called)
- RESET_DERIVATIVES if the state vector's derivatives need to be recomputed before the integration resumes
- CONTINUE if the integration should continue as if nothing happened
-
void resetState(double t, double[] y) throws EventException
This method is called when eventOccured has returned RESET_STATE. This method should modify the y array, which will change the way the integration performs.
-
- add the EventHandler to an appropriate integrator
Using an EventHandler on a given integration problem is simple : just add it to the integrator instance before computing the solution.integrator.addEventHandler(eventHandler, maxCheckInterval, convergence, maxIterationCount);
Aside from the EventHandler itself, the other parameters are :
- maxCheckInterval : Maximal time interval between events handler checks.
- convergence : precision needed for the event "time" value.
- iterationCount : maximum number of iterations to find the event "time" value when an event has been identified. Reaching this number means there is a problem with finding the event quickly enough (so, this counter is a way to interrupt an event search that takes too long, since finding an event should be fast if the g() function is continuous).
- run the integrator
Please see the relevant section.
About the EventState class
The EventState class is a very important class for event detection (one EventState instance is needed for each EventHandler to work), but since the integrator instantiates EventStates when needed, a regular user never needs to interact directy with an EventState object. Therefore, describing the EventState class is out of the scope of this document; all relevant information can be found in the Javadoc if needed.
Getting Started
Contents
Interfaces
Interface | Summary | Javadoc |
---|---|---|
FirstOrderIntegrator | This interface represents a first order integrator for differential equations. | ... |
ODEIntegrator | This interface defines the common parts shared by integrators for first and second order differential equations. | ... |
Interface | Summary | Javadoc |
---|---|---|
EventHandler | This interface represents a handler for discrete events triggered during ODE integration. | ... |
Classes
Class | Summary | Javadoc |
---|---|---|
AbstractIntegrator | Base class managing common boilerplate for all integrators. | ... |
AdaptiveStepsizeIntegrator | This abstract class holds the common part of all adaptive stepsize integrators for Ordinary Differential Equations. | ... |
ClassicalRungeKuttaIntegrator | This class implements the classical fourth order Runge-Kutta integrator for Ordinary Differential Equations (it is the most often used Runge-Kutta method). | ... |
RungeKutta6Integrator | This class implements the sixth order Runge-Kutta integrator for Ordinary Differential Equations (it is used as the default Stela Integrator). This integrator currently has an second order interpolator. | ... |
DormandPrince54Integrator | This class implements the 5(4) Dormand-Prince integrator for Ordinary Differential Equations. | ... |
DormandPrince853Integrator | This class implements the 8(5,3) Dormand-Prince integrator for Ordinary Differential Equations. | ... |
GraggBulirschStoerIntegrator | This class implements a Gragg-Bulirsch-Stoer integrator for Ordinary Differential Equations. | ... |
RungeKuttaIntegrator | This class implements the common part of all fixed step Runge-Kutta integrators for Ordinary Differential Equations. | ... |
CowellIntegrator | This class implements the 2nd order Stormer-Cowell integrator for Ordinary Differential Equations. | ... |
Class | Summary | Javadoc |
---|---|---|
EventState | This class handles the state for one EventHandler during integration steps. | ... |