Module containing the implementation for the ARPACK general-type solver, that is, given the general eigenvalue problem find eigenvalues that satisfy a given criterion.
Implementation of the ARPACK general solver.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(arpack_t), | intent(in) | :: | arpack_cfg | arpack configuration |
||
type(matrix_t), | intent(in) | :: | matrix_A | matrix A |
||
type(matrix_t), | intent(in) | :: | matrix_B | matrix B |
||
type(settings_t), | intent(in) | :: | settings | settings object |
||
complex(kind=dp), | intent(out) | :: | omega(:) | array with eigenvalues |
||
complex(kind=dp), | intent(out) | :: | vr(:,:) | array with right eigenvectors |