OdeAdamsGearSolveMethod Property |
The method for solving the formula equations.
Namespace: Imsl.MathAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public virtual OdeAdamsGearSolveOption SolveMethod { get; set; }
Public Overridable Property SolveMethod As OdeAdamsGearSolveOption
Get
Set
public:
virtual property OdeAdamsGearSolveOption SolveMethod {
OdeAdamsGearSolveOption get ();
void set (OdeAdamsGearSolveOption value);
}
abstract SolveMethod : OdeAdamsGearSolveOption with get, set
override SolveMethod : OdeAdamsGearSolveOption with 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.
value | Description |
---|
FunctionIteration | Use a function iteration or successive substitution method. |
ChordUserJacobian | Use a chord or modified Newton method and a user-supplied Jacobian. |
ChordComputedJacobian | Use a chord or modified Newton method and a divided differences Jacobian. |
ChordComputedDiagonal | Use a chord method and a diagonal matrix based on a directional directive. |
See Also