-
Notifications
You must be signed in to change notification settings - Fork 19
Eigensolver context
Arne Morten Kvarving edited this page Mar 1, 2017
·
2 revisions
The <eigensolver> context is used to control everything related to eigenvalue solvers.
Example:
<eigensolver>
<mode>3</mode>
<nev>3</nev>
<ncv>4</ncv>
<shift>1.0e3</shift>
</eigensolver>
Use this to control which ARPACK method to use.
- Attributes: None
- Value: The method to use, see the ARPACK documentation.
Example:
<mode>3</mode>
Use this to set the number of eigenvalue to compute.
- Attributes: None
- Value: The number of eigenvalues
Example:
<nev>3</nev>
Use this to set the number of Arnoldi vectors to compute.
- Attributes: None
- Value: The number of Arnoldi vectors
Example:
<ncv>4</ncv>
Use this to control the eigenvalue shift (used to avoid numerical issues).
- Attributes: None
- Value: The eigenvalue shift
Example:
<shift>1.0e3</shift>