Class TimeSpanEstimatedTroposphericModel
- java.lang.Object
-
- org.orekit.models.earth.troposphere.TimeSpanEstimatedTroposphericModel
-
- All Implemented Interfaces:
DiscreteTroposphericModel
,ParameterDriversProvider
@Deprecated public class TimeSpanEstimatedTroposphericModel extends Object implements DiscreteTroposphericModel
Deprecated.as of 12.1, replaced byTimeSpanEstimatedModel
Time span estimated tropospheric model.This class is closely related to
EstimatedTroposphericModel
class.
The difference is that it has aTimeSpanMap
ofEstimatedTroposphericModel
objects as attribute.
The idea behind this model is to allow the user to design a tropospheric model that can see its physical parameters (total zenith delay) change with time, at dates chosen by the user.
- Since:
- 10.2
- Author:
- Bryan Cazabonne
-
-
Field Summary
Fields Modifier and Type Field Description static String
DATE_AFTER
Deprecated.Prefix for dates after in the tropospheric parameter drivers' name.static String
DATE_BEFORE
Deprecated.Prefix for dates before in the tropospheric parameter drivers' name.
-
Constructor Summary
Constructors Constructor Description TimeSpanEstimatedTroposphericModel(EstimatedTroposphericModel model)
Deprecated.Constructor with default UTC time scale.TimeSpanEstimatedTroposphericModel(EstimatedTroposphericModel model, TimeScale timeScale)
Deprecated.Constructor with default UTC time scale.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description void
addTroposphericModelValidAfter(EstimatedTroposphericModel model, AbsoluteDate earliestValidityDate)
Deprecated.Add a EstimatedTroposphericModel entry valid after a limit date.
UsingaddTroposphericModelValidAfter(entry, t)
will makeentry
valid in [t, +∞[ (note the closed bracket).void
addTroposphericModelValidBefore(EstimatedTroposphericModel model, AbsoluteDate latestValidityDate)
Deprecated.Add an EstimatedTroposphericModel entry valid before a limit date.
UsingaddTroposphericValidBefore(entry, t)
will makeentry
valid in ]-∞, t[ (note the open bracket).double[]
extractParameters(double[] parameters, AbsoluteDate date)
Deprecated.Extract the proper parameter drivers' values from the array in input of thepathDelay
method.<T extends CalculusFieldElement<T>>
T[]extractParameters(T[] parameters, FieldAbsoluteDate<T> date)
Deprecated.Extract the proper parameter drivers' values from the array in input of thepathDelay
method.TimeSpanMap.Span<EstimatedTroposphericModel>
getFirstSpan()
Deprecated.Get the firsttime span
of the tropospheric model time span map.List<ParameterDriver>
getParametersDrivers()
Deprecated.Get the drivers for parameters.EstimatedTroposphericModel
getTroposphericModel(AbsoluteDate date)
Deprecated.Get theEstimatedTroposphericModel
model valid at a date.double
pathDelay(double elevation, GeodeticPoint point, double[] parameters, AbsoluteDate date)
Deprecated.Calculates the tropospheric path delay for the signal path from a ground station to a satellite.<T extends CalculusFieldElement<T>>
TpathDelay(T elevation, FieldGeodeticPoint<T> point, T[] parameters, FieldAbsoluteDate<T> date)
Deprecated.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.utils.ParameterDriversProvider
getNbParametersDriversValue, getParameterDriver, getParameters, getParameters, getParameters, getParameters, getParametersAllValues, getParametersAllValues, isSupported
-
-
-
-
Field Detail
-
DATE_BEFORE
public static final String DATE_BEFORE
Deprecated.Prefix for dates before in the tropospheric parameter drivers' name.- See Also:
- Constant Field Values
-
DATE_AFTER
public static final String DATE_AFTER
Deprecated.Prefix for dates after in the tropospheric parameter drivers' name.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
TimeSpanEstimatedTroposphericModel
@DefaultDataContext public TimeSpanEstimatedTroposphericModel(EstimatedTroposphericModel model)
Deprecated.Constructor with default UTC time scale.- Parameters:
model
- the initial model which going to be used for all the models initialization.
-
TimeSpanEstimatedTroposphericModel
public TimeSpanEstimatedTroposphericModel(EstimatedTroposphericModel model, TimeScale timeScale)
Deprecated.Constructor with default UTC time scale.- Parameters:
model
- the initial model which going to be used for all the models initialization.timeScale
- timeScale Time scale used for the default names of the tropospheric parameter drivers
-
-
Method Detail
-
getParametersDrivers
public List<ParameterDriver> getParametersDrivers()
Deprecated.Get the drivers for parameters.All the parameter drivers of all Estimated models are returned in an array. Models are ordered chronologically.
- Specified by:
getParametersDrivers
in interfaceParameterDriversProvider
- Returns:
- drivers for parameters
-
addTroposphericModelValidBefore
public void addTroposphericModelValidBefore(EstimatedTroposphericModel model, AbsoluteDate latestValidityDate)
Deprecated.Add an EstimatedTroposphericModel entry valid before a limit date.
UsingaddTroposphericValidBefore(entry, t)
will makeentry
valid in ]-∞, t[ (note the open bracket).- Parameters:
model
- EstimatedTroposphericModel entrylatestValidityDate
- date before which the entry is valid (must be different from all dates already used for transitions)
-
addTroposphericModelValidAfter
public void addTroposphericModelValidAfter(EstimatedTroposphericModel model, AbsoluteDate earliestValidityDate)
Deprecated.Add a EstimatedTroposphericModel entry valid after a limit date.
UsingaddTroposphericModelValidAfter(entry, t)
will makeentry
valid in [t, +∞[ (note the closed bracket).- Parameters:
model
- EstimatedTroposphericModel entryearliestValidityDate
- date after which the entry is valid (must be different from all dates already used for transitions)
-
getTroposphericModel
public EstimatedTroposphericModel getTroposphericModel(AbsoluteDate date)
Deprecated.Get theEstimatedTroposphericModel
model valid at a date.- Parameters:
date
- the date of validity- Returns:
- the EstimatedTroposphericModel model valid at date
-
getFirstSpan
public TimeSpanMap.Span<EstimatedTroposphericModel> getFirstSpan()
Deprecated.Get the firsttime span
of the tropospheric model time span map.- Returns:
- the first
time span
of the tropospheric model time span map - Since:
- 11.1
-
extractParameters
public double[] extractParameters(double[] parameters, AbsoluteDate date)
Deprecated.Extract the proper parameter drivers' values from the array in input of thepathDelay
method. Parameters are filtered given an input date.- Parameters:
parameters
- the input parameters arraydate
- the date- Returns:
- the parameters given the date
-
extractParameters
public <T extends CalculusFieldElement<T>> T[] extractParameters(T[] parameters, FieldAbsoluteDate<T> date)
Deprecated.Extract the proper parameter drivers' values from the array in input of thepathDelay
method. Parameters are filtered given an input date.- Type Parameters:
T
- extends CalculusFieldElements- Parameters:
parameters
- the input parameters arraydate
- the date- Returns:
- the parameters given the date
-
pathDelay
public double pathDelay(double elevation, GeodeticPoint point, double[] parameters, AbsoluteDate date)
Deprecated.Calculates the tropospheric path delay for the signal path from a ground station to a satellite.- Specified by:
pathDelay
in interfaceDiscreteTroposphericModel
- Parameters:
elevation
- the elevation of the satellite, in radianspoint
- station locationparameters
- tropospheric model parametersdate
- current date- Returns:
- the path delay due to the troposphere in m
-
pathDelay
public <T extends CalculusFieldElement<T>> T pathDelay(T elevation, FieldGeodeticPoint<T> point, T[] parameters, FieldAbsoluteDate<T> date)
Deprecated.Calculates the tropospheric path delay for the signal path from a ground station to a satellite.- Specified by:
pathDelay
in interfaceDiscreteTroposphericModel
- Type Parameters:
T
- type of the elements- Parameters:
elevation
- the elevation of the satellite, in radianspoint
- station locationparameters
- tropospheric model parameters at current datedate
- current date- Returns:
- the path delay due to the troposphere in m
-
-