NumericalPropagationStateHistory Constructor (PropagationStateConverter, Boolean, SortingFormat, NumericalPropagationStateHistory) |
Initializes a new instance.
Namespace:
AGI.Foundation.Propagators
Assembly:
AGI.Foundation.Models (in AGI.Foundation.Models.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public NumericalPropagationStateHistory(
PropagationStateConverter converter,
bool includeIntegrationInfo,
SortingFormat sortingFormat,
params NumericalPropagationStateHistory[] otherCollections
)
Public Sub New (
converter As PropagationStateConverter,
includeIntegrationInfo As Boolean,
sortingFormat As SortingFormat,
ParamArray otherCollections As NumericalPropagationStateHistory()
)
public:
NumericalPropagationStateHistory(
PropagationStateConverter^ converter,
bool includeIntegrationInfo,
SortingFormat sortingFormat,
... array<NumericalPropagationStateHistory^>^ otherCollections
)
new :
converter : PropagationStateConverter *
includeIntegrationInfo : bool *
sortingFormat : SortingFormat *
otherCollections : NumericalPropagationStateHistory[] -> NumericalPropagationStateHistory
Parameters
- converter
- Type: AGI.Foundation.PropagatorsPropagationStateConverter
A converter which contains the state and auxiliary output which can
convert the raw data. - includeIntegrationInfo
- Type: SystemBoolean
If this is true, the collection will contain a list of
information about the integration process at each step. - sortingFormat
- Type: AGI.Foundation.PropagatorsSortingFormat
The direction the parallel lists of Times and
States should be sorted.
The entries of the otherCollections will be placed into this history object in that
order regardless of their own sorting format. - otherCollections
- Type: AGI.Foundation.PropagatorsNumericalPropagationStateHistory
Other collections to combine into this one.
Remarks As duplicate entries are not allowed, in the event of a duplicate the entry from the latest
history in otherCollections will take precedence.
See Also