NumericalPropagatorState Constructor (JulianDate, IEnumerable<PropagationStateElement>, IEnumerable<AuxiliaryStateElement>, EvaluatorGroup) |
Initialize a new instance.
Namespace:
AGI.Foundation.Propagators
Assembly:
AGI.Foundation.Models (in AGI.Foundation.Models.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic NumericalPropagatorState(
JulianDate epoch,
IEnumerable<PropagationStateElement> integrationElements,
IEnumerable<AuxiliaryStateElement> auxiliaryElements,
EvaluatorGroup group
)
Public Sub New (
epoch As JulianDate,
integrationElements As IEnumerable(Of PropagationStateElement),
auxiliaryElements As IEnumerable(Of AuxiliaryStateElement),
group As EvaluatorGroup
)
public:
NumericalPropagatorState(
JulianDate epoch,
IEnumerable<PropagationStateElement^>^ integrationElements,
IEnumerable<AuxiliaryStateElement^>^ auxiliaryElements,
EvaluatorGroup^ group
)
new :
epoch : JulianDate *
integrationElements : IEnumerable<PropagationStateElement> *
auxiliaryElements : IEnumerable<AuxiliaryStateElement> *
group : EvaluatorGroup -> NumericalPropagatorState
Parameters
- epoch
- Type: AGI.Foundation.Time.JulianDate
The time at which the initial values of the elements are valid at. - integrationElements
- Type: System.Collections.Generic.IEnumerable<PropagationStateElement>
The PropagationStateElement that will be propagated. - auxiliaryElements
- Type: System.Collections.Generic.IEnumerable<AuxiliaryStateElement>
The AuxiliaryStateElement that will be computed along the
integrationElements during propagation. - group
- Type: AGI.Foundation.EvaluatorGroup
The EvaluatorGroup to use when creating this state.
See Also