Click or drag to resize
OdeAdamsGearSolveMethod Property
The method for solving the formula equations.

Namespace: Imsl.Math
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax
public virtual OdeAdamsGearSolveOption SolveMethod { get; set; }

Property Value

Type: OdeAdamsGearSolveOption
An OdeAdamsGear.SolveOption specifying the method to be used for solving the formula equations.

Default: SolveMethod = OdeAdamsGear.SolveOption.ChordComputedJacobian.

Remarks
Note that if the problem is stiff and a chord or modified Newton method is most efficient, use ChordUserJacobian or ChordComputedJacobian. SolveMethod must be one of the values specified in the table which follows.

valueDescription
FunctionIterationUse a function iteration or successive substitution method.
ChordUserJacobianUse a chord or modified Newton method and a user-supplied Jacobian.
ChordComputedJacobianUse a chord or modified Newton method and a divided differences Jacobian.
ChordComputedDiagonalUse a chord method and a diagonal matrix based on a directional directive.

See Also