public class TroposphericModelUtils extends Object
Modifier and Type | Method and Description |
---|---|
static double |
computeHeightCorrection(double elevation, double height)
该方法计算了映射函数的静水压成分的高度修正。
|
static <T extends org.hipparchus.CalculusFieldElement<T>> |
computeHeightCorrection(T elevation, T height, org.hipparchus.Field<T> field)
该方法计算了映射函数的静水压成分的高度修正。
|
static double |
mappingFunction(double a, double b, double c, double elevation)
计算与系数值和仰角相关的映射函数。
|
static <T extends org.hipparchus.CalculusFieldElement<T>> |
mappingFunction(T a, T b, T c, T elevation)
计算与系数值和仰角相关的映射函数。
|
public static double mappingFunction(double a, double b, double c, double elevation)
a
- a系数
b
- b系数
c
- c系数
elevation
- 卫星的仰角,以弧度表示。
public static <T extends org.hipparchus.CalculusFieldElement<T>> T mappingFunction(T a, T b, T c, T elevation)
T
- 元素的类型
a
- a系数
b
- b系数
c
- c系数
elevation
- 卫星的仰角,以弧度表示。
public static double computeHeightCorrection(double elevation, double height)
Niell A. E. (1996) "Global mapping functions for the atmosphere delay of radio wavelengths,” J. Geophys. Res., 101(B2), pp. 3227–3246, doi: 10.1029/95JB03048.
elevation
- 卫星的仰角,以弧度表示。
height
- 海拔高度,单位为米。
public static <T extends org.hipparchus.CalculusFieldElement<T>> T computeHeightCorrection(T elevation, T height, org.hipparchus.Field<T> field)
Niell A. E. (1996) "Global mapping functions for the atmosphere delay of radio wavelengths,” J. Geophys. Res., 101(B2), pp. 3227–3246, doi: 10.1029/95JB03048.
T
- 元素的类型
elevation
- 卫星的仰角,以弧度表示。
height
- 海拔高度,单位为米。
field
- 元素所属的领域
Copyright © 2002-2023 CS GROUP. All rights reserved.