DependentVariableDerivatives Constructor (Int32) |
Initializes a new instance.
Namespace:
AGI.Foundation.NumericalMethods.Advanced
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax protected DependentVariableDerivatives(
int[] orders
)
Protected Sub New (
orders As Integer()
)
protected:
DependentVariableDerivatives(
array<int>^ orders
)
new :
orders : int[] -> DependentVariableDerivatives
Parameters
- orders
- Type: SystemInt32
The orders of the differential equations in the differential equations.
Higher order equations are decomposed into first-order derivatives of each dependent variable such that the
length of this set of orders corresponds to the sum of the orders of the original equations.
So if the original equations were: A first order, B third order, C second order, D first order,
then the resulting orders of this system of equations will be: 1, 3, 2, 1, 2, 1, 1
See Also