Package org.orekit.models.earth
Class ViennaOneModel
- java.lang.Object
-
- org.orekit.models.earth.ViennaOneModel
-
- All Implemented Interfaces:
Serializable,DiscreteTroposphericModel,MappingFunction
public class ViennaOneModel extends Object implements DiscreteTroposphericModel
The Vienna1 tropospheric delay model for radio techniques. The Vienna model data are given with a time interval of 6 hours as well as on a global 2.5° * 2.0° grid. This version considered the height correction for the hydrostatic part developed by Niell, 1996.- Author:
- Bryan Cazabonne
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ViennaOneModel(double[] coefficientA, double[] zenithDelay, double latitude)Build a new instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description double[]computeZenithDelay(double height, double[] parameters, AbsoluteDate date)This method allows the computation of the zenith hydrostatic and zenith wet delay.<T extends org.hipparchus.RealFieldElement<T>>
T[]computeZenithDelay(T height, T[] parameters, FieldAbsoluteDate<T> date)This method allows the computation of the zenith hydrostatic and zenith wet delay.List<ParameterDriver>getParametersDrivers()Get the drivers for tropospheric model parameters.double[]mappingFactors(double elevation, double height, double[] parameters, AbsoluteDate date)This method allows the computation of the hydrostatic and wet mapping functions.<T extends org.hipparchus.RealFieldElement<T>>
T[]mappingFactors(T elevation, T height, T[] parameters, FieldAbsoluteDate<T> date)This method allows the computation of the hydrostatic and wet mapping functions.doublepathDelay(double elevation, double height, double[] parameters, AbsoluteDate date)Calculates the tropospheric path delay for the signal path from a ground station to a satellite.<T extends org.hipparchus.RealFieldElement<T>>
TpathDelay(T elevation, T height, T[] parameters, FieldAbsoluteDate<T> date)Calculates the tropospheric path delay for the signal path from a ground station to a satellite.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.orekit.models.earth.MappingFunction
getParameters, getParameters
-
-
-
-
Constructor Detail
-
ViennaOneModel
public ViennaOneModel(double[] coefficientA, double[] zenithDelay, double latitude)Build a new instance.- Parameters:
coefficientA- The a coefficients for the computation of the wet and hydrostatic mapping functions.zenithDelay- Values of hydrostatic and wet delayslatitude- geodetic latitude of the station, in radians
-
-
Method Detail
-
pathDelay
public double pathDelay(double elevation, double height, double[] parameters, AbsoluteDate date)Calculates the tropospheric path delay for the signal path from a ground station to a satellite.- Specified by:
pathDelayin interfaceDiscreteTroposphericModel- Parameters:
elevation- the elevation of the satellite, in radiansheight- the height of the station in m above sea levelparameters- tropospheric model parameters.date- current date- Returns:
- the path delay due to the troposphere in m
-
pathDelay
public <T extends org.hipparchus.RealFieldElement<T>> T pathDelay(T elevation, T height, T[] parameters, FieldAbsoluteDate<T> date)Calculates the tropospheric path delay for the signal path from a ground station to a satellite.- Specified by:
pathDelayin interfaceDiscreteTroposphericModel- Type Parameters:
T- type of the elements- Parameters:
elevation- the elevation of the satellite, in radiansheight- the height of the station in m above sea levelparameters- tropospheric model parameters.date- current date- Returns:
- the path delay due to the troposphere in m
-
computeZenithDelay
public double[] computeZenithDelay(double height, double[] parameters, AbsoluteDate date)This method allows the computation of the zenith hydrostatic and zenith wet delay. The resulting element is an array having the following form:- double[0] = Dhz → zenith hydrostatic delay
- double[1] = Dwz → zenith wet delay
- Specified by:
computeZenithDelayin interfaceDiscreteTroposphericModel- Parameters:
height- the height of the station in m above sea level.parameters- tropospheric model parameters.date- current date- Returns:
- a two components array containing the zenith hydrostatic and wet delays.
-
computeZenithDelay
public <T extends org.hipparchus.RealFieldElement<T>> T[] computeZenithDelay(T height, T[] parameters, FieldAbsoluteDate<T> date)This method allows the computation of the zenith hydrostatic and zenith wet delay. The resulting element is an array having the following form:- T[0] = Dhz → zenith hydrostatic delay
- T[1] = Dwz → zenith wet delay
- Specified by:
computeZenithDelayin interfaceDiscreteTroposphericModel- Type Parameters:
T- type of the elements- Parameters:
height- the height of the station in m above sea level.parameters- tropospheric model parameters.date- current date- Returns:
- a two components array containing the zenith hydrostatic and wet delays.
-
mappingFactors
public double[] mappingFactors(double elevation, double height, double[] parameters, 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:
mappingFactorsin interfaceMappingFunction- Parameters:
elevation- the elevation of the satellite, in radians.height- the height of the station in m above sea level.parameters- tropospheric model parameters.date- current date- Returns:
- a two components array containing the hydrostatic and wet mapping functions.
-
mappingFactors
public <T extends org.hipparchus.RealFieldElement<T>> T[] mappingFactors(T elevation, T height, T[] parameters, 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:
mappingFactorsin interfaceMappingFunction- Type Parameters:
T- type of the elements- Parameters:
elevation- the elevation of the satellite, in radians.height- the height of the station in m above sea level.parameters- tropospheric model parameters.date- current date- Returns:
- a two components array containing the hydrostatic and wet mapping functions.
-
getParametersDrivers
public List<ParameterDriver> getParametersDrivers()
Get the drivers for tropospheric model parameters.- Specified by:
getParametersDriversin interfaceMappingFunction- Returns:
- drivers for tropospheric model parameters
-
-