Click or drag to resize

AdaptiveNumericalIntegrator Class

Base class for all NumericalIntegrator objects who can use error information produced during integration to adapt the size of the step in order to adjust the amount of error introduced into the dependent variables over successive integration steps. This also allows varying the size of the step to arrive at a final stopping time.
Inheritance Hierarchy

Namespace:  AGI.Foundation.NumericalMethods.Advanced
Assembly:  AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.1.418.0 (24.1.418.0)
Syntax
public abstract class AdaptiveNumericalIntegrator : NumericalIntegrator

The AdaptiveNumericalIntegrator type exposes the following members.

Constructors
Properties
  NameDescription
Public propertyAdaptiveWeights
Gets or sets the weights to be applied to the state elements when computing the error which determines how to adapt the step size. This is in addition to any weights used in the integration algorithm itself. If these weights have not been initialized before Initialize(Double, Double) is called, they will be set to a default value of one.
Public propertyCurrentStepSize
Gets the current (positive) size of the step which the integrator will use for the next integration step.
(Overrides NumericalIntegratorCurrentStepSize.)
Public propertyDimension
Gets the number of dependent variables based on the Dimension of the SystemOfEquations.
(Inherited from NumericalIntegrator.)
Public propertyDirection
Gets or sets whether to integrate forward, increasing the independent variable, or backward, decreasing the independent variable.
(Inherited from NumericalIntegrator.)
Public propertyFinalDependentVariableValues
Gets or sets the values of the dependent variables resulting from the last integration step.
(Inherited from NumericalIntegrator.)
Public propertyFinalIndependentVariableValue
Gets or sets the value of the independent variable after an integration step.
(Inherited from NumericalIntegrator.)
Public propertyInitialDependentVariableValues
Gets or sets the values of the dependent variables prior to an integration step. These values will be updated to the previous FinalDependentVariableValues at the beginning of each integration step.
(Inherited from NumericalIntegrator.)
Public propertyInitialIndependentVariableValue
Gets or sets the value of the independent variable prior to an integration step.
(Inherited from NumericalIntegrator.)
Public propertyInitialStepSize
Gets or sets the initial (positive) size of the step to add to the InitialIndependentVariableValue when performing an integration. By default, the initial value is one.
(Inherited from NumericalIntegrator.)
Public propertyIsThreadSafe
Gets a value indicating whether the methods on this instance are safe to call from multiple threads simultaneously.
(Inherited from NumericalIntegrator.)
Public propertyIterations
Gets or sets the number of iteration required to adapt the CurrentStepSize to within error tolerance.
Public propertyMaximumIterations
Gets or sets the maximum number of Iterations to allow before forcing the integrator to accept the CurrentStepSize and proceed to the next step.
Public propertyMaximumStepSize
Gets or sets the maximum size of the CurrentStepSize.
Public propertyMinimumStepSize
Gets or sets the (positive) minimum size of the CurrentStepSize.
Public propertyPreviousStepSize
Gets the size of the last step taken by the integrator. This returns the difference between the FinalIndependentVariableValue and the InitialIndependentVariableValue.
(Inherited from NumericalIntegrator.)
Public propertyStepDeflationExponent
Gets or sets the exponent to apply to the error when calculating the amount to decrease the size of the step.
Public propertyStepDeflationFactor
Gets or sets a scalar multiplier to apply to the step when decreasing it.
Public propertyStepInflationExponent
Gets or sets the exponent to apply to the error when calculating the amount to increase the size of the step.
Public propertyStepInflationFactor
Gets or sets a scalar multiplier to apply to the step when increasing it.
Public propertyStepSizeBehavior
Gets or sets whether to avoid adapting the step size and instead fix the value of CurrentStepSize.
Public propertyStepSizeInformation
Gets or sets a value indicating whether the CurrentStepSize was changed from the InitialStepSize and, if so, the nature of how it was changed.
(Inherited from NumericalIntegrator.)
Public propertyStepTruncationOrder
Gets or sets the integer exponent specifying the order of magnitude at which to truncate the significant digits in the CurrentStepSize. For instance, to truncate the value to three decimal places, specify a truncation order of -3. To truncate the value to an order of 100, specify a truncation order of 2. To specify the step size should be an integer value, specify a truncation order of 0.
Public propertySystemOfEquations
Gets or sets the system of differential equations corresponding to the derivatives of the dependent variables.
(Inherited from NumericalIntegrator.)
Top
Methods
  NameDescription
Public methodAdaptStep
This method updates the CurrentStepSize to account for error in the state and its derivatives. It returns true if the integrator should reintegrate with the updated step size or false if the integrator should continue to the next integration step (potentially with a different step size).
Protected methodAdjustStep
Adjusts a given step by increasing it or decreasing it based on the given error. If the error is greater than one, the step will increase. Otherwise, it will decrease. After adjusting the step, BoundAndTruncateStepSize(Double) is called.
Protected methodBoundAndTruncateStepSize
A method which should be called before updating the CurrentStepSize which will bound the size based on the MinimumStepSize and MaximumStepSize, and will truncate it based on the StepTruncationOrder.
Public methodClone
Create a copy of this integrator.
(Inherited from NumericalIntegrator.)
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodInitialize
Initialize the integrator's initial independent and dependent variables and reset the integration parameters. This should be called by the user prior to performing the first integration step.
(Overrides NumericalIntegratorInitialize(Double, Double).)
Public methodIntegrate

Perform an integration step moving the independent and dependent variables from their initial (the final values of the previous step) to their new final values, using the CurrentStepSize.

When overriding this method, StartNextStep should be called prior to integration.

(Overrides NumericalIntegratorIntegrate.)
Public methodIntegrate(Double)
Integrate the current integration step with the given step size.
(Overrides NumericalIntegratorIntegrate(Double).)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodReintegrate

Repeats the last integration of the differential equations.

When overriding this method, note that the CurrentStepSize property should be unaffected by the stepSize parameter.

(Inherited from NumericalIntegrator.)
Protected methodSetCurrentStepSize
Sets the value of the CurrentStepSize which the integrator will use for the next integration step.
Protected methodStartNextStep
This performs the task of setting the Initial values to the previous Final values prior to taking the next step. This method is called prior to integrating the step but not called during reintegration.
(Inherited from NumericalIntegrator.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
See Also