Class FieldAzimuthalGradientCoefficients<T extends CalculusFieldElement<T>>
- java.lang.Object
-
- org.orekit.models.earth.troposphere.FieldAzimuthalGradientCoefficients<T>
-
- Type Parameters:
T
- type of the field elements
public class FieldAzimuthalGradientCoefficients<T extends CalculusFieldElement<T>> extends Object
Container for the azimuthal gradient coefficients gnh, geh, gnw and gew.- Since:
- 12.1
- Author:
- Luc Maisonobe
-
-
Constructor Summary
Constructors Constructor Description FieldAzimuthalGradientCoefficients(T gnh, T geh, T gnw, T gew)
Simple constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description T
getGeh()
Get East hydrostatic coefficient.T
getGew()
Get East wet coefficient.T
getGnh()
Get North hydrostatic coefficient.T
getGnw()
Get North wet coefficient.
-
-
-
Method Detail
-
getGnh
public T getGnh()
Get North hydrostatic coefficient.- Returns:
- North hydrostatic coefficient
-
getGeh
public T getGeh()
Get East hydrostatic coefficient.- Returns:
- East hydrostatic coefficient
-
getGnw
public T getGnw()
Get North wet coefficient.- Returns:
- North wet coefficient
-
getGew
public T getGew()
Get East wet coefficient.- Returns:
- East wet coefficient
-
-