Interface DiscreteTroposphericModel

    • Method Detail

      • pathDelay

        double pathDelay​(double elevation,
                         double height,
                         double[] parameters,
                         AbsoluteDate date)
        Calculates the tropospheric path delay for the signal path from a ground station to a satellite.
        Parameters:
        elevation - the elevation of the satellite, in radians
        height - the height of the station in m above sea level
        parameters - tropospheric model parameters.
        date - current date
        Returns:
        the path delay due to the troposphere in m
      • pathDelay

        <T extends org.hipparchus.RealFieldElement<T>> T pathDelay​(T elevation,
                                                                   T height,
                                                                   T[] parameters,
                                                                   FieldAbsoluteDate<T> date)
        Calculates the tropospheric path delay for the signal path from a ground station to a satellite.
        Type Parameters:
        T - type of the elements
        Parameters:
        elevation - the elevation of the satellite, in radians
        height - the height of the station in m above sea level
        parameters - tropospheric model parameters.
        date - current date
        Returns:
        the path delay due to the troposphere in m
      • computeZenithDelay

        double[] computeZenithDelay​(double height,
                                    double[] parameters,
                                    AbsoluteDate date)
        This method allows the computation of the zenith hydrostatic and zenith wet delay. The resulting element is an array having the following form:
        • double[0] = Dhz → zenith hydrostatic delay
        • double[1] = Dwz → zenith wet delay
        Parameters:
        height - the height of the station in m above sea level.
        parameters - tropospheric model parameters.
        date - current date
        Returns:
        a two components array containing the zenith hydrostatic and wet delays.
      • computeZenithDelay

        <T extends org.hipparchus.RealFieldElement<T>> T[] computeZenithDelay​(T height,
                                                                              T[] parameters,
                                                                              FieldAbsoluteDate<T> date)
        This method allows the computation of the zenith hydrostatic and zenith wet delay. The resulting element is an array having the following form:
        • T[0] = Dhz → zenith hydrostatic delay
        • T[1] = Dwz → zenith wet delay
        Type Parameters:
        T - type of the elements
        Parameters:
        height - the height of the station in m above sea level.
        parameters - tropospheric model parameters.
        date - current date
        Returns:
        a two components array containing the zenith hydrostatic and wet delays.