PSCF v1.2
|
Template for Anderson mixing iterator algorithm. More...
#include <AmIteratorTmpl.h>
Public Member Functions | |
AmIteratorTmpl () | |
Constructor. | |
~AmIteratorTmpl () | |
Destructor. | |
void | readParameters (std::istream &in) |
Read all parameters and initialize. | |
int | solve (bool isContinuation=false) |
Iterate to a solution. | |
void | outputTimers (std::ostream &out) |
Log output timing results. | |
void | clearTimers () |
Clear timers. | |
std::string | errorType () const |
Obtain error type. | |
Protected Member Functions | |
void | setMaxItr (int maxItr) |
Set value of maxItr. | |
void | setMaxHist (int maxHist) |
Set value of maxHist (number of retained previous states) | |
void | setErrorType (std::string errorType) |
Set and validate value of errorType string. | |
void | readErrorType (std::istream &in) |
Read and validate the optional errorType string parameter. | |
virtual bool | isValidErrorType () |
Checks if a string is a valid error type. | |
virtual double | norm (T const &hist) |
Find the L2 norm of a vector. | |
void | allocateAM () |
Allocate memory required by AM algorithm, if necessary. | |
virtual void | clear () |
Clear information about history. | |
virtual void | setup (bool isContinuation) |
Initialize just before entry to iterative loop. | |
virtual double | computeError (T &residTrial, T &fieldTrial, std::string errorType, int verbose) |
Compute and return error used to test for convergence. | |
double | computeError (int verbose) |
Compute and return error used to test for convergence. | |
virtual double | computeLambda (double r) |
Compute mixing parameter for correction step of Anderson mixing. | |
T const & | residual () const |
Return the current residual vector by const reference. | |
T const & | field () const |
Return the current field or state vector by const reference. | |
int | verbose () const |
Verbosity level, allowed values 0, 1, or 2. | |
int | totalItr () |
Return the total number of iterations needed to converge. | |
double | timerTotal () |
Get total time. | |
double | timerMDE () |
Get time solving modified diffusion equation (MDE). | |
double | timerAM () |
Get total time for AM algorithm, excluding MDE solution. | |
double | timerResid () |
Get time computing residual. | |
double | timerError () |
Get time evaluating scalar error. | |
double | timerCoeff () |
Get time evaluating Anderson mixing coefficients. | |
double | timerOmega () |
Get time updating w fields. | |
bool | isAllocatedAM () const |
Have data structures required by the AM algorithm been allocated? | |
template<typename Type > | |
ScalarParam< Type > & | read (std::istream &in, const char *label, Type &value) |
Add and read a new required ScalarParam < Type > object. | |
template<typename Type > | |
ScalarParam< Type > & | readOptional (std::istream &in, const char *label, Type &value) |
Add and read a new optional ScalarParam < Type > object. | |
Protected Attributes | |
std::string | errorType_ |
Type of error criterion used to test convergence. | |
Template for Anderson mixing iterator algorithm.
Anderson mixing is an algorithm for solving a system of N nonlinear equations of the form r_{i}(x) = 0 for i = 0, ..., N-1, where x denotes a vector or array of unknown coordinate values. A vector of array of unknowns is referred here the "field" vector, while a vector or array of values of the errors r_{0},..., r_{N-1} is referred to as the residual vector.
The template parameter Iterator is a base class that must be derived from Util::ParamComposite, and must declare a virtual solve(bool) function with the same interface as that declared here.
The template type parameter T is the type of the data structure used to store both field and residual vectors.
Definition at line 44 of file AmIteratorTmpl.h.
Pscf::AmIteratorTmpl< Iterator, T >::AmIteratorTmpl | ( | ) |
Constructor.
Definition at line 32 of file AmIteratorTmpl.tpp.
Pscf::AmIteratorTmpl< Iterator, T >::~AmIteratorTmpl | ( | ) |
Destructor.
Definition at line 50 of file AmIteratorTmpl.tpp.
void Pscf::AmIteratorTmpl< Iterator, T >::readParameters | ( | std::istream & | in | ) |
Read all parameters and initialize.
in | input filestream |
Definition at line 57 of file AmIteratorTmpl.tpp.
int Pscf::AmIteratorTmpl< Iterator, T >::solve | ( | bool | isContinuation = false | ) |
Iterate to a solution.
isContinuation | true iff continuation within a sweep |
Definition at line 92 of file AmIteratorTmpl.tpp.
References UTIL_CHECK.
void Pscf::AmIteratorTmpl< Iterator, T >::outputTimers | ( | std::ostream & | out | ) |
Log output timing results.
Definition at line 638 of file AmIteratorTmpl.tpp.
void Pscf::AmIteratorTmpl< Iterator, T >::clearTimers | ( | ) |
Clear timers.
Definition at line 682 of file AmIteratorTmpl.tpp.
std::string Pscf::AmIteratorTmpl< Iterator, T >::errorType | ( | ) | const |
Obtain error type.
Definition at line 538 of file AmIteratorTmpl.h.
|
protected |
Set value of maxItr.
Provided to allow subclasses to set a modified default value before calling readParameters, in which maxItr is optional. Global default, set in constructor, is maxItr = 200.
maxItr | maximum number of iterations attempted |
Definition at line 230 of file AmIteratorTmpl.tpp.
|
protected |
Set value of maxHist (number of retained previous states)
Provided to allow subclasses to set a modified default value before calling readParameters, in which maxItr is optional. Global default, set in constructor, is maxHist = 50.
maxHist | maximum number of retained previous states |
Definition at line 237 of file AmIteratorTmpl.tpp.
|
protected |
Set and validate value of errorType string.
Provided to allow subclasses to set a modified default value before calling readParameters, in which errorType is optional. Global default, set in constructor, is relNormResid = 50.
errorType | error type string |
Definition at line 244 of file AmIteratorTmpl.tpp.
References UTIL_THROW.
|
protected |
Read and validate the optional errorType string parameter.
in | input filestream |
Definition at line 264 of file AmIteratorTmpl.tpp.
References UTIL_THROW.
|
protectedvirtual |
Checks if a string is a valid error type.
Virtual to allow extension of allowed error type string values.
Definition at line 288 of file AmIteratorTmpl.tpp.
|
protectedvirtual |
Find the L2 norm of a vector.
The default implementation calls dotProduct internally. Virtual to allow more optimized versions.
hist | residual vector |
Definition at line 542 of file AmIteratorTmpl.tpp.
|
protected |
Allocate memory required by AM algorithm, if necessary.
If the required memory has been allocated previously, this function does nothing and returns.
Definition at line 311 of file AmIteratorTmpl.tpp.
|
protectedvirtual |
Clear information about history.
This function clears the the history and basis vector ring buffer containers.
Definition at line 342 of file AmIteratorTmpl.tpp.
References Util::Log::file().
|
protectedvirtual |
Initialize just before entry to iterative loop.
This function is called by the solve function before entering the loop over iterations. The default functions calls allocateAM() if isAllocatedAM() is false, and otherwise calls clear() if isContinuation is false.
isContinuation | true iff continuation within a sweep |
Reimplemented in Pscf::R1d::AmIterator, Pscf::Rpc::AmCompressor< D >, Pscf::Rpc::AmIteratorBasis< D >, Pscf::Rpc::LrAmCompressor< D >, Pscf::Rpg::AmCompressor< D >, Pscf::Rpg::AmIteratorBasis< D >, Pscf::Rpg::AmIteratorGrid< D >, Pscf::Rpg::LrAmCompressor< D >, and Pscf::Rpg::LrAmPreCompressor< D >.
Definition at line 506 of file AmIteratorTmpl.tpp.
|
protectedvirtual |
Compute and return error used to test for convergence.
residTrial | current residual vector |
fieldTrial | current field vector |
errorType | type of error |
verbose | verbosity level of output report. |
Definition at line 584 of file AmIteratorTmpl.tpp.
References Util::Log::file(), UTIL_CHECK, and UTIL_THROW.
|
protected |
Compute and return error used to test for convergence.
verbose | verbosity level of output report |
Definition at line 632 of file AmIteratorTmpl.tpp.
|
protectedvirtual |
Compute mixing parameter for correction step of Anderson mixing.
Compute mixing parameter for mixing step of an Anderson mixing algorithm.
r | ramping parameter: lambda = 1 - r^Nh for Nh < maxHist. |
(virtual)
Reimplemented in Pscf::Rpc::AmCompressor< D >, and Pscf::Rpg::AmCompressor< D >.
Definition at line 527 of file AmIteratorTmpl.tpp.
|
protected |
Return the current residual vector by const reference.
Definition at line 510 of file AmIteratorTmpl.h.
|
protected |
Return the current field or state vector by const reference.
Definition at line 517 of file AmIteratorTmpl.h.
|
protected |
Verbosity level, allowed values 0, 1, or 2.
Definition at line 524 of file AmIteratorTmpl.h.
|
protected |
Return the total number of iterations needed to converge.
Definition at line 545 of file AmIteratorTmpl.h.
|
protected |
Get total time.
Definition at line 594 of file AmIteratorTmpl.h.
|
protected |
Get time solving modified diffusion equation (MDE).
Definition at line 552 of file AmIteratorTmpl.h.
|
protected |
Get total time for AM algorithm, excluding MDE solution.
Definition at line 559 of file AmIteratorTmpl.h.
|
protected |
Get time computing residual.
Definition at line 566 of file AmIteratorTmpl.h.
|
protected |
Get time evaluating scalar error.
Definition at line 573 of file AmIteratorTmpl.h.
|
protected |
Get time evaluating Anderson mixing coefficients.
Definition at line 580 of file AmIteratorTmpl.h.
|
protected |
Get time updating w fields.
Definition at line 587 of file AmIteratorTmpl.h.
|
protected |
Have data structures required by the AM algorithm been allocated?
Definition at line 531 of file AmIteratorTmpl.h.
|
protected |
Add and read a new required ScalarParam < Type > object.
This is equivalent to ScalarParam<Type>(in, label, value, true).
in | input stream for reading |
label | Label string |
value | reference to new ScalarParam< Type > |
Definition at line 305 of file ParamComposite.h.
Referenced by pscfpp.command.Script::__init__(), pscfpp.field.Field::__init__(), pscfpp.output.Thermo::__init__(), pscfpp.param.Array::__init__(), pscfpp.param.Composite::__init__(), and pscfpp.param.Matrix::__init__().
|
inlineprotected |
Add and read a new optional ScalarParam < Type > object.
This is equivalent to ScalarParam<Type>(in, label, value, false).
in | input stream for reading |
label | Label string |
value | reference to new ScalarParam< Type > |
Definition at line 319 of file ParamComposite.h.
|
protected |
Type of error criterion used to test convergence.
Definition at line 91 of file AmIteratorTmpl.h.