Package org.orekit.models.earth
Interface DiscreteTroposphericModel
-
- All Superinterfaces:
MappingFunction,Serializable
- All Known Subinterfaces:
TroposphericModel
- All Known Implementing Classes:
EstimatedTroposphericModel,FixedTroposphericDelay,MariniMurrayModel,MendesPavlisModel,SaastamoinenModel,ViennaOneModel,ViennaThreeModel
public interface DiscreteTroposphericModel extends MappingFunction
Defines a tropospheric model, used to calculate the path delay imposed to electro-magnetic signals between an orbital satellite and a ground station.Models that implement this interface split the delay into hydrostatic and non-hydrostatic part:
δ = δh + δnh
With:- δh = hydrostatic delay
- δnh = non-hydrostatic (or wet) delay
- Author:
- Bryan Cazabonne
-
-
Method Summary
All Methods Instance Methods Abstract 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.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 interface org.orekit.models.earth.MappingFunction
getParameters, getParameters, getParametersDrivers, mappingFactors, mappingFactors
-
-
-
-
Method Detail
-
pathDelay
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.- 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
<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.- 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
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
- 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
<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
- 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.
-
-