Class FixedTroposphericDelay
- java.lang.Object
-
- org.orekit.models.earth.troposphere.FixedTroposphericDelay
-
- All Implemented Interfaces:
DiscreteTroposphericModel,ParameterDriversProvider
public class FixedTroposphericDelay extends Object implements DiscreteTroposphericModel
A static tropospheric model that interpolates the actual tropospheric delay based on values read from a configuration file (tropospheric-delay.txt) via theDataProvidersManager.- Author:
- Thomas Neidhart
-
-
Constructor Summary
Constructors Constructor Description FixedTroposphericDelay(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
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static FixedTroposphericDelaygetDefaultModel()Returns the default model, loading delay values from the file "tropospheric-delay.txt" via thedefault data context.List<ParameterDriver>getParametersDrivers()Get the drivers for parameters.doublepathDelay(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>>
TpathDelay(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.-
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
-
-
-
-
Constructor Detail
-
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
@DefaultDataContext public FixedTroposphericDelay(String supportedName)
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(String, DataProvidersManager)
-
FixedTroposphericDelay
public FixedTroposphericDelay(String supportedName, DataProvidersManager dataProvidersManager)
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 Detail
-
getDefaultModel
@DefaultDataContext public static FixedTroposphericDelay 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 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.- Specified by:
pathDelayin 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)
Calculates the tropospheric path delay for the signal path from a ground station to a satellite.- Specified by:
pathDelayin 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
-
getParametersDrivers
public List<ParameterDriver> getParametersDrivers()
Get the drivers for parameters.- Specified by:
getParametersDriversin interfaceParameterDriversProvider- Returns:
- drivers for parameters
-
-