AzimuthalGradientCoefficients.java

  1. /* Copyright 2022-2025 Thales Alenia Space
  2.  * Licensed to CS GROUP (CS) under one or more
  3.  * contributor license agreements.  See the NOTICE file distributed with
  4.  * this work for additional information regarding copyright ownership.
  5.  * CS licenses this file to You under the Apache License, Version 2.0
  6.  * (the "License"); you may not use this file except in compliance with
  7.  * the License.  You may obtain a copy of the License at
  8.  *
  9.  *   http://www.apache.org/licenses/LICENSE-2.0
  10.  *
  11.  * Unless required by applicable law or agreed to in writing, software
  12.  * distributed under the License is distributed on an "AS IS" BASIS,
  13.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14.  * See the License for the specific language governing permissions and
  15.  * limitations under the License.
  16.  */
  17. package org.orekit.models.earth.troposphere;

  18. /** Container for the azimuthal gradient coefficients gn<sub>h</sub>, ge<sub>h</sub>, gn<sub>w</sub> and ge<sub>w</sub>.
  19.  * @author Luc Maisonobe
  20.  * @since 12.1
  21.  */
  22. public class AzimuthalGradientCoefficients {

  23.     /** North hydrostatic coefficient. */
  24.     private final double gnh;

  25.     /** East hydrostatic coefficient. */
  26.     private final double geh;

  27.     /** North wet coefficient. */
  28.     private final double gnw;

  29.     /** East wet coefficient. */
  30.     private final double gew;

  31.     /** Simple constructor.
  32.      * @param gnh North hydrostatic coefficient
  33.      * @param geh East hydrostatic coefficient
  34.      * @param gnw North wet coefficient
  35.      * @param gew East wet coefficient
  36.      */
  37.     public AzimuthalGradientCoefficients(final double gnh, final double geh,
  38.                                          final double gnw, final double gew) {
  39.         this.gnh = gnh;
  40.         this.geh = geh;
  41.         this.gnw = gnw;
  42.         this.gew = gew;
  43.     }

  44.     /** Get North hydrostatic coefficient.
  45.      * @return North hydrostatic coefficient
  46.      */
  47.     public double getGnh() {
  48.         return gnh;
  49.     }

  50.     /** Get East hydrostatic coefficient.
  51.      * @return East hydrostatic coefficient
  52.      */
  53.     public double getGeh() {
  54.         return geh;
  55.     }

  56.     /** Get North wet coefficient.
  57.      * @return North wet coefficient
  58.      */
  59.     public double getGnw() {
  60.         return gnw;
  61.     }

  62.    /** Get East wet coefficient.
  63.      * @return East wet coefficient
  64.      */
  65.     public double getGew() {
  66.         return gew;
  67.     }

  68. }