Class ConstantAzimuthalGradientProvider
- java.lang.Object
-
- org.orekit.models.earth.troposphere.ConstantAzimuthalGradientProvider
-
- All Implemented Interfaces:
AzimuthalGradientProvider
public class ConstantAzimuthalGradientProvider extends Object implements AzimuthalGradientProvider
Constant provider forAzimuthalGradientCoefficients
andFieldAzimuthalGradientCoefficients
.- Since:
- 12.1
- Author:
- Luc Maisonobe
-
-
Constructor Summary
Constructors Constructor Description ConstantAzimuthalGradientProvider(AzimuthalGradientCoefficients a)
Simple constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <T extends CalculusFieldElement<T>>
FieldAzimuthalGradientCoefficients<T>getGradientCoefficients(FieldGeodeticPoint<T> location, FieldAbsoluteDate<T> date)
Get azimuthal asymmetry gradients.AzimuthalGradientCoefficients
getGradientCoefficients(GeodeticPoint location, AbsoluteDate date)
Get azimuthal asymmetry gradients.
-
-
-
Constructor Detail
-
ConstantAzimuthalGradientProvider
public ConstantAzimuthalGradientProvider(AzimuthalGradientCoefficients a)
Simple constructor.- Parameters:
a
- constant parameters (may be null if no gradients are available)
-
-
Method Detail
-
getGradientCoefficients
public AzimuthalGradientCoefficients getGradientCoefficients(GeodeticPoint location, AbsoluteDate date)
Get azimuthal asymmetry gradients.- Specified by:
getGradientCoefficients
in interfaceAzimuthalGradientProvider
- Parameters:
location
- location at which parameters are requesteddate
- date at which parameters are requested- Returns:
- azimuthal asymmetry gradients or null if no gradients are available
-
getGradientCoefficients
public <T extends CalculusFieldElement<T>> FieldAzimuthalGradientCoefficients<T> getGradientCoefficients(FieldGeodeticPoint<T> location, FieldAbsoluteDate<T> date)
Get azimuthal asymmetry gradients.- Specified by:
getGradientCoefficients
in interfaceAzimuthalGradientProvider
- Type Parameters:
T
- type of the field elements- Parameters:
location
- location at which parameters are requesteddate
- date at which parameters are requested- Returns:
- azimuthal asymmetry gradients or null if no gradients are available
-
-