Class AbstractFixedStepFieldIntegratorBuilder<T extends CalculusFieldElement<T>>
- java.lang.Object
-
- org.orekit.propagation.conversion.AbstractFixedStepFieldIntegratorBuilder<T>
-
- Type Parameters:
T
- Type of the field elements
- All Implemented Interfaces:
FieldODEIntegratorBuilder<T>
- Direct Known Subclasses:
ClassicalRungeKuttaFieldIntegratorBuilder
,EulerFieldIntegratorBuilder
,GillFieldIntegratorBuilder
,LutherFieldIntegratorBuilder
,MidpointFieldIntegratorBuilder
,ThreeEighthesFieldIntegratorBuilder
public abstract class AbstractFixedStepFieldIntegratorBuilder<T extends CalculusFieldElement<T>> extends Object implements FieldODEIntegratorBuilder<T>
Abstract class for integrator builder using fixed step size.- Author:
- Vincent Cucchietti
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
AbstractFixedStepFieldIntegratorBuilder(double step)
Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected void
checkStep(double stepToCheck)
Check that given step size is not equal to 0.protected T
getFieldStep(Field<T> field)
Get "fielded" step size (s).protected double
getStep()
Getter for the step size (s).-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.orekit.propagation.conversion.FieldODEIntegratorBuilder
buildIntegrator, buildIntegrator, buildIntegrator, buildIntegrator, toODEIntegratorBuilder
-
-
-
-
Method Detail
-
checkStep
protected void checkStep(double stepToCheck)
Check that given step size is not equal to 0.- Parameters:
stepToCheck
- step size (s) to check
-
getFieldStep
protected T getFieldStep(Field<T> field)
Get "fielded" step size (s).- Parameters:
field
- field to which the element belong- Returns:
- "fielded" step size (s)
-
getStep
protected double getStep()
Getter for the step size (s).- Returns:
- step size
- Since:
- 13.0
-
-