Class AbstractChaoMappingFunction
- java.lang.Object
-
- org.orekit.models.earth.troposphere.AbstractChaoMappingFunction
-
- All Implemented Interfaces:
TroposphereMappingFunction
- Direct Known Subclasses:
ChaoMappingFunction
,RevisedChaoMappingFunction
public class AbstractChaoMappingFunction extends Object implements TroposphereMappingFunction
Chao mapping function for radio wavelengths.- Since:
- 12.1
- Author:
- Luc Maisonobe
- See Also:
- "C. C. Chao, A model for tropospheric calibration from delay surface and radiosonde ballon measurements, 1972"
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
AbstractChaoMappingFunction(double ad, double bd, double aw, double bw)
Builds a new instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <T extends CalculusFieldElement<T>>
T[]mappingFactors(FieldTrackingCoordinates<T> trackingCoordinates, FieldGeodeticPoint<T> point, FieldPressureTemperatureHumidity<T> weather, FieldAbsoluteDate<T> date)
This method allows the computation of the hydrostatic and wet mapping functions.double[]
mappingFactors(TrackingCoordinates trackingCoordinates, GeodeticPoint point, PressureTemperatureHumidity weather, AbsoluteDate date)
This method allows the computation of the hydrostatic and wet mapping functions.
-
-
-
Constructor Detail
-
AbstractChaoMappingFunction
protected AbstractChaoMappingFunction(double ad, double bd, double aw, double bw)
Builds a new instance.- Parameters:
ad
- first coefficient for hydrostatic (dry) componentbd
- second coefficient for hydrostatic (dry) componentaw
- first coefficient for wet componentbw
- second coefficient for wet component
-
-
Method Detail
-
mappingFactors
public double[] mappingFactors(TrackingCoordinates trackingCoordinates, GeodeticPoint point, PressureTemperatureHumidity weather, AbsoluteDate date)
This method allows the computation of the hydrostatic and wet mapping functions. The resulting element is an array having the following form:- double[0] = mh(e) → hydrostatic mapping function
- double[1] = mw(e) → wet mapping function
- Specified by:
mappingFactors
in interfaceTroposphereMappingFunction
- Parameters:
trackingCoordinates
- tracking coordinates of the satellitepoint
- station locationweather
- weather parametersdate
- current date- Returns:
- a two components array containing the hydrostatic and wet mapping functions.
-
mappingFactors
public <T extends CalculusFieldElement<T>> T[] mappingFactors(FieldTrackingCoordinates<T> trackingCoordinates, FieldGeodeticPoint<T> point, FieldPressureTemperatureHumidity<T> weather, FieldAbsoluteDate<T> date)
This method allows the computation of the hydrostatic and wet mapping functions. The resulting element is an array having the following form:- T[0] = mh(e) → hydrostatic mapping function
- T[1] = mw(e) → wet mapping function
- Specified by:
mappingFactors
in interfaceTroposphereMappingFunction
- Type Parameters:
T
- type of the elements- Parameters:
trackingCoordinates
- tracking coordinates of the satellitepoint
- station locationweather
- weather parametersdate
- current date- Returns:
- a two components array containing the hydrostatic and wet mapping functions.
-
-