public class EstimatedTroposphericModel extends Object implements DiscreteTroposphericModel
δ = δh * mh + (δt - δh) * mw
With:
The mapping functions mh(e) and mw(e) are
computed thanks to a model
initialized by the user.
The user has the possibility to use several mapping function models for the computations:
the Global Mapping Function
, or
the Niell Mapping Function
The tropospheric zenith delay δh is computed empirically with a SaastamoinenModel
while the tropospheric total zenith delay δt is estimated as a ParameterDriver
Modifier and Type | Field and Description |
---|---|
static String |
TOTAL_ZENITH_DELAY
Name of the parameter of this model: the total zenith delay.
|
Constructor and Description |
---|
EstimatedTroposphericModel(double t0,
double p0,
MappingFunction model,
double totalDelay)
Build a new instance using the given environmental conditions.
|
EstimatedTroposphericModel(MappingFunction model,
double totalDelay)
Build a new instance using a standard atmosphere model.
|
Modifier and Type | Method and Description |
---|---|
List<ParameterDriver> |
getParametersDrivers()
Get the drivers for tropospheric model parameters.
|
double |
pathDelay(double elevation,
GeodeticPoint point,
double[] parameters,
AbsoluteDate date)
Calculates the tropospheric path delay for the signal path from a ground
station to a satellite.
|
<T extends CalculusFieldElement<T>> |
pathDelay(T elevation,
FieldGeodeticPoint<T> point,
T[] parameters,
FieldAbsoluteDate<T> date)
Calculates the tropospheric path delay for the signal path from a ground
station to a satellite.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
getParameters, getParameters
public static final String TOTAL_ZENITH_DELAY
public EstimatedTroposphericModel(double t0, double p0, MappingFunction model, double totalDelay)
t0
- the temperature at the station [K]p0
- the atmospheric pressure at the station [mbar]model
- mapping function model (NMF or GMF).totalDelay
- initial value for the tropospheric zenith total delay [m]public EstimatedTroposphericModel(MappingFunction model, double totalDelay)
model
- mapping function model (NMF or GMF).totalDelay
- initial value for the tropospheric zenith total delay [m]public List<ParameterDriver> getParametersDrivers()
getParametersDrivers
in interface DiscreteTroposphericModel
public double pathDelay(double elevation, GeodeticPoint point, double[] parameters, AbsoluteDate date)
pathDelay
in interface DiscreteTroposphericModel
elevation
- the elevation of the satellite, in radianspoint
- station locationparameters
- tropospheric model parametersdate
- current datepublic <T extends CalculusFieldElement<T>> T pathDelay(T elevation, FieldGeodeticPoint<T> point, T[] parameters, FieldAbsoluteDate<T> date)
pathDelay
in interface DiscreteTroposphericModel
T
- type of the elementselevation
- the elevation of the satellite, in radianspoint
- station locationparameters
- tropospheric model parametersdate
- current dateCopyright © 2002-2022 CS GROUP. All rights reserved.