Class EstimatedModel
java.lang.Object
org.orekit.models.earth.troposphere.EstimatedModel
- All Implemented Interfaces:
TroposphericModel,ParameterDriversProvider
An estimated tropospheric model. The tropospheric delay is computed according to the formula:
δ = δh * mh + (δt - δh) * mw
With:
- δh: Tropospheric zenith hydro-static delay.
- δt: Tropospheric total zenith delay.
- mh: Hydro-static mapping function.
- mw: Wet mapping function.
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
tropospheric model
while the tropospheric total zenith delay δt is estimated as a ParameterDriver,
hence the wet part is the difference between the two.
- Since:
- 12.1
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringName of the parameter of this model: the total zenith delay. -
Constructor Summary
ConstructorsConstructorDescriptionEstimatedModel(double h0, double t0, double p0, TroposphereMappingFunction model, double totalDelay) Build a new instance using the given environmental conditions.EstimatedModel(TroposphereMappingFunction model, double totalDelay) Build a new instance using a standard atmosphere model.EstimatedModel(TroposphericModel hydrostatic, TroposphereMappingFunction model, double totalDelay) Build a new instance using the given environmental conditions. -
Method Summary
Modifier and TypeMethodDescriptionGet the drivers for parameters.<T extends CalculusFieldElement<T>>
FieldTroposphericDelay<T> pathDelay(FieldTrackingCoordinates<T> trackingCoordinates, FieldGeodeticPoint<T> point, T[] parameters, FieldAbsoluteDate<T> date) Calculates the tropospheric path delay for the signal path from a ground station to a satellite.pathDelay(TrackingCoordinates trackingCoordinates, GeodeticPoint point, double[] parameters, AbsoluteDate 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, waitMethods inherited from interface org.orekit.utils.ParameterDriversProvider
getNbParametersDriversValue, getParameterDriver, getParameters, getParameters, getParameters, getParameters, getParametersAllValues, getParametersAllValues, isSupported
-
Field Details
-
TOTAL_ZENITH_DELAY
Name of the parameter of this model: the total zenith delay.- See Also:
-
-
Constructor Details
-
EstimatedModel
@DefaultDataContext public EstimatedModel(double h0, double t0, double p0, TroposphereMappingFunction model, double totalDelay) Build a new instance using the given environmental conditions.This constructor uses a
ModifiedSaastamoinenModelfor the hydrostatic contribution.- Parameters:
h0- altitude of the station [m]t0- the temperature at the station [K]p0- the atmospheric pressure at the station [mbar]model- mapping function model.totalDelay- initial value for the tropospheric zenith total delay [m]
-
EstimatedModel
public EstimatedModel(TroposphericModel hydrostatic, TroposphereMappingFunction model, double totalDelay) Build a new instance using the given environmental conditions.- Parameters:
hydrostatic- model for hydrostatic componentmodel- mapping function model.totalDelay- initial value for the tropospheric zenith total delay [m]- Since:
- 12.1
-
EstimatedModel
Build a new instance using a standard atmosphere model.- altitude: 0m
- temperature: 18 degree Celsius
- pressure: 1013.25 mbar
- Parameters:
model- mapping function model.totalDelay- initial value for the tropospheric zenith total delay [m]
-
-
Method Details
-
getParametersDrivers
Get the drivers for parameters.- Specified by:
getParametersDriversin interfaceParameterDriversProvider- Returns:
- drivers for parameters
-
pathDelay
public TroposphericDelay pathDelay(TrackingCoordinates trackingCoordinates, GeodeticPoint point, double[] parameters, AbsoluteDate date) Calculates the tropospheric path delay for the signal path from a ground station to a satellite.- Specified by:
pathDelayin interfaceTroposphericModel- Parameters:
trackingCoordinates- tracking coordinates of the satellitepoint- station locationparameters- tropospheric model parametersdate- current date- Returns:
- the path delay due to the troposphere
-
pathDelay
public <T extends CalculusFieldElement<T>> FieldTroposphericDelay<T> pathDelay(FieldTrackingCoordinates<T> trackingCoordinates, FieldGeodeticPoint<T> point, T[] parameters, FieldAbsoluteDate<T> date) Calculates the tropospheric path delay for the signal path from a ground station to a satellite.- Specified by:
pathDelayin interfaceTroposphericModel- Type Parameters:
T- type of the elements- Parameters:
trackingCoordinates- tracking coordinates of the satellitepoint- station locationparameters- tropospheric model parameters at current datedate- current date- Returns:
- the path delay due to the troposphere
-