Package org.orekit.files.iirv.terms
Class DragCoefficientTerm
- java.lang.Object
-
- org.orekit.files.iirv.terms.base.IIRVVectorTerm<Double>
-
- org.orekit.files.iirv.terms.base.DoubleValuedIIRVTerm
-
- org.orekit.files.iirv.terms.DragCoefficientTerm
-
- All Implemented Interfaces:
Comparable<IIRVVectorTerm<?>>
public class DragCoefficientTerm extends DoubleValuedIIRVTerm
4-character dimensionless drag coefficient.Assumed decimal point is two places from the right. Must contain all zeros if not used.
Units: dimensionless
Valid values:
- 0 to 99.99
- "
xxxx
",x
: Any integer 0-9
- Since:
- 13.0
- Author:
- Nick LaFarge
-
-
Field Summary
Fields Modifier and Type Field Description static int
DRAG_COEFFICIENT_TERM_LENGTH
The length of the IIRV term within the message.static String
DRAG_COEFFICIENT_TERM_PATTERN
Regular expression that ensures the validity of string values for this term.static DragCoefficientTerm
UNUSED
DragCoefficientTerm contains all zeros when not used.
-
Constructor Summary
Constructors Constructor Description DragCoefficientTerm(double value)
Constructor.DragCoefficientTerm(String value)
Constructor.
-
Method Summary
-
Methods inherited from class org.orekit.files.iirv.terms.base.DoubleValuedIIRVTerm
computeValueFromString, toEncodedString
-
Methods inherited from class org.orekit.files.iirv.terms.base.IIRVVectorTerm
compareTo, equals, hashCode, length, toEncodedString, validateString, value
-
-
-
-
Field Detail
-
UNUSED
public static final DragCoefficientTerm UNUSED
DragCoefficientTerm contains all zeros when not used.
-
DRAG_COEFFICIENT_TERM_LENGTH
public static final int DRAG_COEFFICIENT_TERM_LENGTH
The length of the IIRV term within the message.- See Also:
- Constant Field Values
-
DRAG_COEFFICIENT_TERM_PATTERN
public static final String DRAG_COEFFICIENT_TERM_PATTERN
Regular expression that ensures the validity of string values for this term.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
DragCoefficientTerm
public DragCoefficientTerm(String value)
Constructor.- Parameters:
value
- value of the drag coefficient term (dimensionless)
-
DragCoefficientTerm
public DragCoefficientTerm(double value)
Constructor.- Parameters:
value
- value of the drag coefficient term (dimensionless)
-
-