Class ModifiedSaastamoinenModel

  • All Implemented Interfaces:
    DiscreteTroposphericModel, ParameterDriversProvider
    Direct Known Subclasses:
    SaastamoinenModel

    public class ModifiedSaastamoinenModel
    extends Object
    implements DiscreteTroposphericModel
    The modified Saastamoinen model. Estimates the path delay imposed to electro-magnetic signals by the troposphere according to the formula:
     δ = 2.277e-3 / cos z * (P + (1255 / T + 0.05) * e - B * tan²
     z) + δR
     
    with the following input data provided to the model:
    • z: zenith angle
    • P: atmospheric pressure
    • T: temperature
    • e: partial pressure of water vapour
    • B, δR: correction terms

    The model supports custom δR correction terms to be read from a configuration file (saastamoinen-correction.txt) via the DataProvidersManager.

    Author:
    Thomas Neidhart
    See Also:
    "Guochang Xu, GPS - Theory, Algorithms and Applications, Springer, 2007"
    • Field Detail

      • DELTA_R_FILE_NAME

        public static final String DELTA_R_FILE_NAME
        Default file name for δR correction term table.
        See Also:
        Constant Field Values
      • DEFAULT_LOW_ELEVATION_THRESHOLD

        public static final double DEFAULT_LOW_ELEVATION_THRESHOLD
        Default lowest acceptable elevation angle [rad].
        See Also:
        Constant Field Values
    • Constructor Detail

      • ModifiedSaastamoinenModel

        public ModifiedSaastamoinenModel​(double t0,
                                         double p0,
                                         double r0)
        Create a new Saastamoinen model for the troposphere using the given environmental conditions and table from the reference book.
        Parameters:
        t0 - the temperature at the station [K]
        p0 - the atmospheric pressure at the station [mbar]
        r0 - the humidity at the station [fraction] (50% -> 0.5)
        Since:
        10.1
        See Also:
        ModifiedSaastamoinenModel(double, double, double, String, DataProvidersManager)
      • ModifiedSaastamoinenModel

        @DefaultDataContext
        public ModifiedSaastamoinenModel​(double t0,
                                         double p0,
                                         double r0,
                                         String deltaRFileName)
        Create a new Saastamoinen model for the troposphere using the given environmental conditions. This constructor uses the default data context if deltaRFileName != null.
        Parameters:
        t0 - the temperature at the station [K]
        p0 - the atmospheric pressure at the station [mbar]
        r0 - the humidity at the station [fraction] (50% -> 0.5)
        deltaRFileName - regular expression for filename containing δR correction term table (typically DELTA_R_FILE_NAME), if null default values from the reference book are used
        Since:
        7.1
        See Also:
        ModifiedSaastamoinenModel(double, double, double, String, DataProvidersManager)
      • ModifiedSaastamoinenModel

        public ModifiedSaastamoinenModel​(double t0,
                                         double p0,
                                         double r0,
                                         String deltaRFileName,
                                         DataProvidersManager dataProvidersManager)
        Create a new Saastamoinen model for the troposphere using the given environmental conditions. This constructor allows the user to specify the source of of the δR file.
        Parameters:
        t0 - the temperature at the station [K]
        p0 - the atmospheric pressure at the station [mbar]
        r0 - the humidity at the station [fraction] (50% -> 0.5)
        deltaRFileName - regular expression for filename containing δR correction term table (typically DELTA_R_FILE_NAME), if null default values from the reference book are used
        dataProvidersManager - provides access to auxiliary data.
        Since:
        10.1