public class TroposphericModelUtils extends Object
Modifier and Type | Method and Description |
---|---|
static double |
computeHeightCorrection(double elevation,
double height)
This method computes the height correction for the hydrostatic
component of the mapping function.
|
static <T extends CalculusFieldElement<T>> |
computeHeightCorrection(T elevation,
T height,
Field<T> field)
This method computes the height correction for the hydrostatic
component of the mapping function.
|
static double |
mappingFunction(double a,
double b,
double c,
double elevation)
Compute the mapping function related to the coefficient values and the elevation.
|
static <T extends CalculusFieldElement<T>> |
mappingFunction(T a,
T b,
T c,
T elevation)
Compute the mapping function related to the coefficient values and the elevation.
|
public static double mappingFunction(double a, double b, double c, double elevation)
a
- a coefficientb
- b coefficientc
- c coefficientelevation
- the elevation of the satellite, in radians.public static <T extends CalculusFieldElement<T>> T mappingFunction(T a, T b, T c, T elevation)
T
- type of the elementsa
- a coefficientb
- b coefficientc
- c coefficientelevation
- the elevation of the satellite, in radians.public static double computeHeightCorrection(double elevation, double height)
Niell A. E. (1996) "Global mapping functions for the atmosphere delay of radio wavelengths,” J. Geophys. Res., 101(B2), pp. 3227–3246, doi: 10.1029/95JB03048.
elevation
- the elevation of the satellite, in radians.height
- the height of the station in m above sea level.public static <T extends CalculusFieldElement<T>> T computeHeightCorrection(T elevation, T height, Field<T> field)
Niell A. E. (1996) "Global mapping functions for the atmosphere delay of radio wavelengths,” J. Geophys. Res., 101(B2), pp. 3227–3246, doi: 10.1029/95JB03048.
T
- type of the elementselevation
- the elevation of the satellite, in radians.height
- the height of the station in m above sea level.field
- field to which the elements belongCopyright © 2002-2022 CS GROUP. All rights reserved.