Namespace: DotNumerics.ODE.DVodeAssembly: DWSIM.MathOps.DotNumerics (in DWSIM.MathOps.DotNumerics.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax public void Run(
ref double[] RSAV,
int offset_rsav,
ref int[] ISAV,
int offset_isav,
int JOB
)
Public Sub Run (
ByRef RSAV As Double(),
offset_rsav As Integer,
ByRef ISAV As Integer(),
offset_isav As Integer,
JOB As Integer
)
Request Example
View SourceParameters
- RSAV Double
-
= real array of length 49 or more.
- offset_rsav Int32
-
- ISAV Int32
-
= integer array of length 41 or more.
- offset_isav Int32
-
- JOB Int32
-
= flag indicating to save or restore the COMMON blocks:
JOB = 1 if COMMON is to be saved (written to RSAV/ISAV).
JOB = 2 if COMMON is to be restored (read from RSAV/ISAV).
A call with JOB = 2 presumes a prior call with JOB = 1.
See Also