public class EstimatedTroposphericModel extends Object implements DiscreteTroposphericModel
δ = δh * mh + (δt - δh) * mw
其中:
映射函数 mh(e) 和 mw(e) 是通过用户初始化的 model
计算的。用户可以选择多个映射函数模型进行计算: 全球映射函数
,或 Niell映射函数
对流层天顶延迟 δh 是通过 SaastamoinenModel
经验计算的,而对流层总天顶延迟 δt 则被估计为 ParameterDriver
Modifier and Type | Field and Description |
---|---|
static String |
TOTAL_ZENITH_DELAY
该模型的参数名称:总天顶延迟。
|
Constructor and Description |
---|
EstimatedTroposphericModel(double t0, double p0, MappingFunction model, double totalDelay)
使用给定的环境条件构建一个新实例。
|
EstimatedTroposphericModel(MappingFunction model, double totalDelay)
使用标准大气模型构建一个新实例。
|
Modifier and Type | Method and Description |
---|---|
List<ParameterDriver> |
getParametersDrivers()
获取参数的驱动程序。
|
double |
pathDelay(double elevation, GeodeticPoint point, double[] parameters, AbsoluteDate date)
计算从地面站到卫星的信号路径的对流层路径延迟。
|
<T extends org.hipparchus.CalculusFieldElement<T>> |
pathDelay(T elevation, FieldGeodeticPoint<T> point, T[] parameters, FieldAbsoluteDate<T> date)
计算从地面站到卫星的信号路径的对流层路径延迟。
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
getNbParametersDriversValue, getParameterDriver, getParameters, getParameters, getParameters, getParameters, getParametersAllValues, getParametersAllValues, isSupported
public EstimatedTroposphericModel(double t0, double p0, MappingFunction model, double totalDelay)
t0
- 站点的温度 [K]
p0
- 站点的大气压力 [mbar]
model
- 映射函数模型(NMF 或 GMF)。
totalDelay
- 对流层天顶总延迟的初始值 [m]
public EstimatedTroposphericModel(MappingFunction model, double totalDelay)
model
- 映射函数模型(NMF 或 GMF)。
totalDelay
- 对流层天顶总延迟的初始值 [m]
public List<ParameterDriver> getParametersDrivers()
getParametersDrivers
在接口 ParameterDriversProvider
public double pathDelay(double elevation, GeodeticPoint point, double[] parameters, AbsoluteDate date)
pathDelay
在接口 DiscreteTroposphericModel
elevation
- 卫星的仰角,以弧度表示
point
- 站点位置
parameters
- 当前日期的对流层模型参数
date
- 当前日期
public <T extends org.hipparchus.CalculusFieldElement<T>> T pathDelay(T elevation, FieldGeodeticPoint<T> point, T[] parameters, FieldAbsoluteDate<T> date)
pathDelay
在接口 DiscreteTroposphericModel
T
- 元素的类型
elevation
- 卫星的仰角,以弧度表示
point
- 站点位置
parameters
- 当前日期的对流层模型参数
date
- 当前日期
Copyright © 2002-2023 CS GROUP. All rights reserved.