Class PolynomialThrustSegment
- java.lang.Object
-
- org.orekit.forces.maneuvers.propulsion.PolynomialThrustSegment
-
public class PolynomialThrustSegment extends Object
One polynomial segment of a thrust profile.- Since:
- 12.0
- Author:
- Luc Maisonobe
-
-
Constructor Summary
Constructors Constructor Description PolynomialThrustSegment(AbsoluteDate referenceDate, PolynomialFunction xThrust, PolynomialFunction yThrust, PolynomialFunction zThrust)
Simple constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Vector3D
getThrustVector(AbsoluteDate date)
Get thrust vector at a specified date.<T extends CalculusFieldElement<T>>
FieldVector3D<T>getThrustVector(FieldAbsoluteDate<T> date)
Get thrust vector at a specified date.
-
-
-
Constructor Detail
-
PolynomialThrustSegment
public PolynomialThrustSegment(AbsoluteDate referenceDate, PolynomialFunction xThrust, PolynomialFunction yThrust, PolynomialFunction zThrust)
Simple constructor.- Parameters:
referenceDate
- reference date of the polynomialsxThrust
- thrust along X direction (N)yThrust
- thrust along Y direction (N)zThrust
- thrust along Z direction (N)
-
-
Method Detail
-
getThrustVector
public Vector3D getThrustVector(AbsoluteDate date)
Get thrust vector at a specified date.- Parameters:
date
- date to consider- Returns:
- thrust at
date
(N)
-
getThrustVector
public <T extends CalculusFieldElement<T>> FieldVector3D<T> getThrustVector(FieldAbsoluteDate<T> date)
Get thrust vector at a specified date.- Type Parameters:
T
- type of the field elements- Parameters:
date
- date to consider- Returns:
- thrust at
date
(N)
-
-