Class ClassicalRungeKuttaFieldIntegrator<T extends RealFieldElement<T>>
java.lang.Object
org.apache.commons.math3.ode.AbstractFieldIntegrator<T>
org.apache.commons.math3.ode.nonstiff.RungeKuttaFieldIntegrator<T>
org.apache.commons.math3.ode.nonstiff.ClassicalRungeKuttaFieldIntegrator<T>
- Type Parameters:
T- the type of the field elements
- All Implemented Interfaces:
FirstOrderFieldIntegrator<T>, FieldButcherArrayProvider<T>
public class ClassicalRungeKuttaFieldIntegrator<T extends RealFieldElement<T>>
extends RungeKuttaFieldIntegrator<T>
This class implements the classical fourth order Runge-Kutta
integrator for Ordinary Differential Equations (it is the most
often used Runge-Kutta method).
This method is an explicit Runge-Kutta method, its Butcher-array is the following one :
0 | 0 0 0 0
1/2 | 1/2 0 0 0
1/2 | 0 1/2 0 0
1 | 0 0 1 0
|--------------------
| 1/6 1/3 1/3 1/6
- Since:
- 3.6
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionClassicalRungeKuttaFieldIntegrator(Field<T> field, T step) Simple constructor. -
Method Summary
Modifier and TypeMethodDescriptionprotected ClassicalRungeKuttaFieldStepInterpolator<T> createInterpolator(boolean forward, T[][] yDotK, FieldODEStateAndDerivative<T> globalPreviousState, FieldODEStateAndDerivative<T> globalCurrentState, FieldEquationsMapper<T> mapper) Create an interpolator.T[][]getA()Get the internal weights from Butcher array (without the first empty row).T[]getB()Get the external weights for the high order method from Butcher array.T[]getC()Get the time steps from Butcher array (without the first zero).Methods inherited from class RungeKuttaFieldIntegrator
fraction, integrate, singleStepMethods inherited from class AbstractFieldIntegrator
acceptStep, addEventHandler, addEventHandler, addStepHandler, clearEventHandlers, clearStepHandlers, computeDerivatives, getCurrentSignedStepsize, getCurrentStepStart, getEquations, getEvaluations, getEvaluationsCounter, getEventHandlers, getField, getMaxEvaluations, getName, getStepHandlers, getStepSize, getStepStart, initIntegration, isLastStep, resetOccurred, sanityChecks, setIsLastStep, setMaxEvaluations, setStateInitialized, setStepSize, setStepStart
-
Constructor Details
-
ClassicalRungeKuttaFieldIntegrator
-
-
Method Details
-
getC
Get the time steps from Butcher array (without the first zero).- Returns:
- time steps from Butcher array (without the first zero
-
getA
Get the internal weights from Butcher array (without the first empty row).- Returns:
- internal weights from Butcher array (without the first empty row)
-
getB
Get the external weights for the high order method from Butcher array.- Returns:
- external weights for the high order method from Butcher array
-
createInterpolator
protected ClassicalRungeKuttaFieldStepInterpolator<T> createInterpolator(boolean forward, T[][] yDotK, FieldODEStateAndDerivative<T> globalPreviousState, FieldODEStateAndDerivative<T> globalCurrentState, FieldEquationsMapper<T> mapper) Create an interpolator.- Specified by:
createInterpolatorin classRungeKuttaFieldIntegrator<T extends RealFieldElement<T>>- Parameters:
forward- integration direction indicatoryDotK- slopes at the intermediate pointsglobalPreviousState- start of the global stepglobalCurrentState- end of the global stepmapper- equations mapper for the all equations- Returns:
- external weights for the high order method from Butcher array
-