MFEM
v4.3.0
Finite element discretization library
|
PowerMethod helper class to estimate the largest eigenvalue of an operator using the iterative power method. More...
#include <operator.hpp>
Public Member Functions | |
PowerMethod () | |
PowerMethod () | |
PowerMethod (MPI_Comm comm_) | |
double | EstimateLargestEigenvalue (Operator &opr, Vector &v0, int numSteps=10, double tolerance=1e-8, int seed=12345) |
Returns an estimate of the largest eigenvalue of the operator opr using the iterative power method. More... | |
PowerMethod helper class to estimate the largest eigenvalue of an operator using the iterative power method.
Definition at line 946 of file operator.hpp.
|
inline |
Definition at line 956 of file operator.hpp.
|
inline |
Definition at line 958 of file operator.hpp.
|
inline |
Definition at line 962 of file operator.hpp.
double mfem::PowerMethod::EstimateLargestEigenvalue | ( | Operator & | opr, |
Vector & | v0, | ||
int | numSteps = 10 , |
||
double | tolerance = 1e-8 , |
||
int | seed = 12345 |
||
) |
Returns an estimate of the largest eigenvalue of the operator opr
using the iterative power method.
v0
is being used as the vector for the iterative process and will contain the eigenvector corresponding to the largest eigenvalue after convergence. The maximum number of iterations may set with numSteps
, the relative tolerance with tolerance
and the seed of the random initialization of v0
with seed
. If seed
is 0 v0
will not be random-initialized.
Definition at line 627 of file operator.cpp.