RungeKuttaFehlberg78Integrator Constructor (DependentVariableDerivatives, Double) |
Initializes a new instance based on the given system of equations and initial step size.
Namespace:
AGI.Foundation.NumericalMethods
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public RungeKuttaFehlberg78Integrator(
DependentVariableDerivatives system,
double initialStepSize
)
Public Sub New (
system As DependentVariableDerivatives,
initialStepSize As Double
)
public:
RungeKuttaFehlberg78Integrator(
DependentVariableDerivatives^ system,
double initialStepSize
)
new :
system : DependentVariableDerivatives *
initialStepSize : float -> RungeKuttaFehlberg78Integrator
Parameters
- system
- Type: AGI.Foundation.NumericalMethods.AdvancedDependentVariableDerivatives
The system of equations that define the derivatives for the dependent variables. - initialStepSize
- Type: SystemDouble
The initial size of the integration step.
See Also