Click or drag to resize

OdeSolverBaseOutputFunctionFlag Enumeration

Output functions are functions supplied by the user to derived ODE solvers. These functions are called by solver during 1. Initialization. Before the first integration step is performed. 2. After each integration step. 3. When the solver is complete. Output functions are called with an OutputFunctionFlag parameter indicating under which of the above conditions it is being invoked.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public enum OutputFunctionFlag
Members
Member nameValueDescription
Initialize0 Value of the output flag when the output function is called before the first integration step.
IntegrationStep1 Value of the output flag when the output function is called after each integration step.
Done2 Value of the output flag when the output function is called after the last integration step.
See Also