Class FixedTroposphericDelay
java.lang.Object
org.orekit.models.earth.troposphere.FixedTroposphericDelay
- All Implemented Interfaces:
TroposphericModel,ParameterDriversProvider
A static tropospheric model that interpolates the actual tropospheric delay
based on values read from a configuration file (tropospheric-delay.txt) via
the
DataProvidersManager.- Author:
- Thomas Neidhart
-
Constructor Summary
ConstructorsConstructorDescriptionFixedTroposphericDelay(double[] xArr, double[] yArr, double[][] fArr) Creates a newFixedTroposphericDelayinstance.FixedTroposphericDelay(String supportedName) Creates a newFixedTroposphericDelayinstance, and loads the delay values from the given resource via thedefault data context.FixedTroposphericDelay(String supportedName, DataProvidersManager dataProvidersManager) Creates a newFixedTroposphericDelayinstance, and loads the delay values from the given resource via the specified data manager. -
Method Summary
Modifier and TypeMethodDescriptionstatic FixedTroposphericDelayReturns the default model, loading delay values from the file "tropospheric-delay.txt" via thedefault data context.Get 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
-
Constructor Details
-
FixedTroposphericDelay
public FixedTroposphericDelay(double[] xArr, double[] yArr, double[][] fArr) Creates a newFixedTroposphericDelayinstance.- Parameters:
xArr- abscissa grid for the interpolation functionyArr- ordinate grid for the interpolation functionfArr- values samples for the interpolation function
-
FixedTroposphericDelay
Creates a newFixedTroposphericDelayinstance, and loads the delay values from the given resource via thedefault data context.- Parameters:
supportedName- a regular expression for supported resource names- See Also:
-
FixedTroposphericDelay
Creates a newFixedTroposphericDelayinstance, and loads the delay values from the given resource via the specified data manager.- Parameters:
supportedName- a regular expression for supported resource namesdataProvidersManager- provides access to auxiliary data.- Since:
- 10.1
-
-
Method Details
-
getDefaultModel
Returns the default model, loading delay values from the file "tropospheric-delay.txt" via thedefault data context.This method uses the
default data context.- Returns:
- the default model
-
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.All delays are affected to
hydrostatic zenithandhydrostatic slanteddelays, the wet delays are arbitrarily set to 0.- 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.All delays are affected to
hydrostatic zenithandhydrostatic slanteddelays, the wet delays are arbitrarily set to 0.- 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
-
getParametersDrivers
Get the drivers for parameters.- Specified by:
getParametersDriversin interfaceParameterDriversProvider- Returns:
- drivers for parameters
-