Package org.orekit.models.earth
Class FixedTroposphericDelay
- java.lang.Object
-
- org.orekit.models.earth.FixedTroposphericDelay
-
- All Implemented Interfaces:
Serializable,DiscreteTroposphericModel,MappingFunction,TroposphericModel
public class FixedTroposphericDelay extends Object implements TroposphericModel
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
- See Also:
- Serialized Form
-
-
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 theDataProvidersManager.
-
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".doublepathDelay(double elevation, double height)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.models.earth.MappingFunction
getParameters, getParameters
-
Methods inherited from interface org.orekit.models.earth.TroposphericModel
computeZenithDelay, computeZenithDelay, getParametersDrivers, mappingFactors, mappingFactors, pathDelay, pathDelay, pathDelay
-
-
-
-
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
public FixedTroposphericDelay(String supportedName)
Creates a newFixedTroposphericDelayinstance, and loads the delay values from the given resource via theDataProvidersManager.- Parameters:
supportedName- a regular expression for supported resource names
-
-
Method Detail
-
getDefaultModel
public static FixedTroposphericDelay getDefaultModel()
Returns the default model, loading delay values from the file "tropospheric-delay.txt".- Returns:
- the default model
-
pathDelay
public double pathDelay(double elevation, double height)Calculates the tropospheric path delay for the signal path from a ground station to a satellite.- Specified by:
pathDelayin interfaceTroposphericModel- Parameters:
elevation- the elevation of the satellite, in radiansheight- the height of the station in m above sea level- Returns:
- the path delay due to the troposphere in m
-
-