public class ElevationDetector extends AbstractDetector<ElevationDetector>
默认实现行为是在升起时继续
传播,在设置时停止
传播。可以在构造后调用AbstractDetector.withHandler(EventHandler)
来更改这一行为。
DEFAULT_MAX_ITER, DEFAULT_MAXCHECK, DEFAULT_THRESHOLD
Modifier | Constructor and Description |
---|---|
protected |
ElevationDetector(AdaptableInterval maxCheck, double threshold, int maxIter, EventHandler handler, double minElevation, ElevationMask mask, AtmosphericRefractionModel refractionModel, TopocentricFrame topo)
具有完整参数的受保护构造函数。
|
|
ElevationDetector(double maxCheck, double threshold, TopocentricFrame topo)
基于传入的地心框架和默认最大检查间隔和收敛阈值值的重写创建高度检测器的实例。
|
|
ElevationDetector(TopocentricFrame topo)
基于传入的地心框架和最小高度角创建高度检测器的实例。
|
Modifier and Type | Method and Description |
---|---|
protected ElevationDetector |
create(AdaptableInterval newMaxCheck, double newThreshold, int newMaxIter, EventHandler newHandler)
构建一个新实例。
|
double |
g(SpacecraftState s)
计算切换函数的值。
|
ElevationMask |
getElevationMask()
返回当前配置的高度掩模。
|
double |
getMinElevation()
返回当前配置的最小有效高度值。
|
AtmosphericRefractionModel |
getRefractionModel()
返回当前配置的折射模型。
|
TopocentricFrame |
getTopocentricFrame()
返回当前配置的地心框架定义。
|
ElevationDetector |
withConstantElevation(double newMinElevation)
设置检测的最小高度。
|
ElevationDetector |
withElevationMask(ElevationMask newElevationMask)
使用传入的掩模对象设置检测的高度掩模。
|
ElevationDetector |
withRefraction(AtmosphericRefractionModel newRefractionModel)
设置高度检测器在计算中使用大气折射模型。
|
getHandler, getMaxCheckInterval, getMaxIterationCount, getThreshold, init, isForward, withHandler, withMaxCheck, withMaxCheck, withMaxIter, withThreshold
public ElevationDetector(TopocentricFrame topo)
使用默认值进行最大检查间隔(AbstractDetector.DEFAULT_MAXCHECK
)和收敛阈值(AbstractDetector.DEFAULT_THRESHOLD
)。
topo
- 地心模型的引用
withConstantElevation(double)
, withElevationMask(ElevationMask)
, withRefraction(AtmosphericRefractionModel)
public ElevationDetector(double maxCheck, double threshold, TopocentricFrame topo)
maxCheck
- 最大检查间隔(s)
threshold
- 收敛阈值(s)
topo
- 地心模型的引用
withConstantElevation(double)
, withElevationMask(ElevationMask)
, withRefraction(AtmosphericRefractionModel)
protected ElevationDetector(AdaptableInterval maxCheck, double threshold, int maxIter, EventHandler handler, double minElevation, ElevationMask mask, AtmosphericRefractionModel refractionModel, TopocentricFrame topo)
此构造函数不是公共的,因为预期用户将使用各种withXxx()
方法的构建器API来设置实例,而不是使用大量参数。
maxCheck
- 最大检查间隔
threshold
- 收敛阈值(s)
maxIter
- 事件时间搜索中的最大迭代次数
handler
- 事件发生时要调用的事件处理程序
minElevation
- 以弧度(rad)表示的最小高度
mask
- 高度掩模的引用
refractionModel
- 折射模型的引用
topo
- 地心模型的引用
protected ElevationDetector create(AdaptableInterval newMaxCheck, double newThreshold, int newMaxIter, EventHandler newHandler)
create
在类 AbstractDetector<ElevationDetector>
newMaxCheck
- 最大检查间隔(s)
newThreshold
- 收敛阈值(s)
newMaxIter
- 事件时间搜索中的最大迭代次数
newHandler
- 事件发生时要调用的事件处理程序
public ElevationMask getElevationMask()
withConstantElevation(double)
,则为null)
withElevationMask(ElevationMask)
public double getMinElevation()
withElevationMask(ElevationMask)
,则为Double.NaN
)
withConstantElevation(double)
public AtmosphericRefractionModel getRefractionModel()
withRefraction(AtmosphericRefractionModel)
public TopocentricFrame getTopocentricFrame()
public double g(SpacecraftState s)
g
在接口 EventDetector
g
在类 AbstractDetector<ElevationDetector>
s
- 当前状态信息:日期、运动学、姿态
public ElevationDetector withConstantElevation(double newMinElevation)
如果之前已配置高度掩模,则将覆盖高度掩模。
newMinElevation
- 可见性的最小高度,以弧度(rad)表示
getMinElevation()
public ElevationDetector withElevationMask(ElevationMask newElevationMask)
newElevationMask
- 用于计算的高度掩模
getElevationMask()
public ElevationDetector withRefraction(AtmosphericRefractionModel newRefractionModel)
要在复制现有高度检测器时禁用折射,请调用此方法并使用null参数。
newRefractionModel
- 用于计算的折射模型
getRefractionModel()
Copyright © 2002-2023 CS GROUP. All rights reserved.