Class HouseholderParameters
java.lang.Object
org.orekit.control.heuristics.lambert.HouseholderParameters
Class holding parameters for a Householder solver.
- Since:
- 14.0
- Author:
- Rafael Ayala
-
Constructor Summary
ConstructorsConstructorDescriptionHouseholderParameters(int maxIterations, double atol, double rtol) Constructor. -
Method Summary
Modifier and TypeMethodDescriptiondoubleGet the absolute tolerance.intGet the maximum number of iterations.doubleGet the relative tolerance.
-
Constructor Details
-
HouseholderParameters
public HouseholderParameters(int maxIterations, double atol, double rtol) Constructor.- Parameters:
maxIterations- maximum number of iterationsatol- absolute tolerance for convergence criterionrtol- relative tolerance for convergence criterion
-
-
Method Details
-
getMaxIterations
public int getMaxIterations()Get the maximum number of iterations.- Returns:
- maximum number of iterations
-
getAbsoluteTolerance
public double getAbsoluteTolerance()Get the absolute tolerance.- Returns:
- absolute tolerance
-
getRelativeTolerance
public double getRelativeTolerance()Get the relative tolerance.- Returns:
- relative tolerance
-