OdeAdamsGear.SolveMethod Property |
The method for solving the formula equations.
Namespace: Imsl.MathAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntaxpublic virtual OdeAdamsGear. SolveOption SolveMethod { get; set; }
Public Overridable Property SolveMethod As OdeAdamsGear. SolveOption
Get
Set
public:
virtual property OdeAdamsGear. SolveOption SolveMethod {
OdeAdamsGear. SolveOption get ();
void set (OdeAdamsGear. SolveOption value);
}
abstract SolveMethod : OdeAdamsGear. SolveOption with get, set
override SolveMethod : OdeAdamsGear. SolveOption with get, set
Property Value
Type:
OdeAdamsGear.SolveOption
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