org.apache.commons.math3.ode.nonstiff
Class MidpointFieldIntegrator<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.MidpointFieldIntegrator<T>
-
- Type Parameters:
T- the type of the field elements
- All Implemented Interfaces:
- FirstOrderFieldIntegrator<T>, FieldButcherArrayProvider<T>
public class MidpointFieldIntegrator<T extends RealFieldElement<T>> extends RungeKuttaFieldIntegrator<T>
This class implements a second order Runge-Kutta integrator for Ordinary Differential Equations.This method is an explicit Runge-Kutta method, its Butcher-array is the following one :
0 | 0 0 1/2 | 1/2 0 |---------- | 0 1
-
-
Constructor Summary
Constructors Constructor and Description MidpointFieldIntegrator(Field<T> field, T step)Simple constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method and Description 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 org.apache.commons.math3.ode.nonstiff.RungeKuttaFieldIntegrator
integrate, singleStep
-
Methods inherited from class org.apache.commons.math3.ode.AbstractFieldIntegrator
addEventHandler, addEventHandler, addStepHandler, clearEventHandlers, clearStepHandlers, computeDerivatives, getCurrentSignedStepsize, getCurrentStepStart, getEvaluations, getEventHandlers, getField, getMaxEvaluations, getName, getStepHandlers, setMaxEvaluations
-
-
-
-
Method Detail
-
getC
public T[] getC()
Get the time steps from Butcher array (without the first zero).- Returns:
- time steps from Butcher array (without the first zero
-
getA
public T[][] 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
public T[] getB()
Get the external weights for the high order method from Butcher array.- Returns:
- external weights for the high order method from Butcher array
-
-
DMelt 3.0 © DataMelt by jWork.ORG