WsfOrbitalDynamics¶
- WsfOrbitalDynamics
Overview¶
The WsfOrbitalDynamics represents the chosen dynamics for a WsfIntegratingSpaceMover. A dynamics is conceptually a series of WsfOrbitalDynamicsTerm objects, each of which contributes to the total acceleration.
Methods¶
- int NumTerms()¶
Return the number of WsfOrbitalDynamicsTerm objects that make up these dynamics.
- WsfOrbitalDynamicsTerm Term(int aIndex)¶
Return the term at the given index. The provided index should be in the range [0, N), where N is the return value from WsfOrbitalDynamics.NumTerms.
- void AddTerm(WsfOrbitalDynamicsTerm aTerm)¶
Add the given term to these dynamics.
- bool RemoveTerm(int aIndex)¶
Remove the term at the given index. If the term is successfully removed, this will return true. If there is some problem, such as the provided index being out of range, this will return false.