xBaseOdeGearsAndAdamsMoultonSolve(Double, Double, OdeSolution) Method |
Computes the solution of the differntial equations.
Namespace: DotNumerics.ODE.DVodeAssembly: DWSIM.MathOps.DotNumerics (in DWSIM.MathOps.DotNumerics.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax public void Solve(
double[] y0,
double[] tspan,
OdeSolution solution
)
Public Sub Solve (
y0 As Double(),
tspan As Double(),
solution As OdeSolution
)
Request Example
View SourceParameters
- y0 Double
- A vector of size N containing the initial conditions ( at t0). N is the number of differential equations.
- tspan Double
- A vector specifying the interval of integration (t0,..,tf).
- solution OdeSolution
- A delegate where to return the solution.
See Also