@FunctionalInterface public interface OrekitFixedStepHandler
它反映了来自Hipparchus的FixedStepHandler
接口,但为方法提供了空间动力学接口。
Modifier and Type | Method and Description |
---|---|
default void |
finish(SpacecraftState finalState)
完成传播。
|
void |
handleStep(SpacecraftState currentState)
处理当前步长。
|
default void |
init(SpacecraftState s0, AbsoluteDate t, double step)
在传播开始时初始化步长处理器。
|
default void init(SpacecraftState s0, AbsoluteDate t, double step)
此方法在传播开始时调用一次。如果需要,步长处理器可以用它来初始化一些内部数据。
s0
- 初始状态
t
- 集成的目标时间
step
- 固定步长的持续时间(以秒为单位)。即使传播是向后的,此值也为正。
void handleStep(SpacecraftState currentState)
currentState
- 步长时间的当前状态
default void finish(SpacecraftState finalState)
finalState
- 传播结束时的状态
Copyright © 2002-2023 CS GROUP. All rights reserved.