#include <Anderson2CorrelationFunction.h>
Public Member Functions | |
void | initializeParameters (Array1D< int > &BeginningIndexOfParameterType, Array1D< double > &Parameters, Array1D< int > &BeginningIndexOfConstantType, Array1D< double > &Constants) |
Initializes the correlation function with a specified set of parameters. | |
void | evaluate (double r) |
Evaluates the correlation function and it's first two derivatives at . | |
double | get_p_a (int ai) |
Partial derivative of function with respect to parameter ai. | |
double | get_p2_xa (int ai) |
Second Partial derivative of function with respect to parameters x and ai. | |
double | get_p3_xxa (int ai) |
Third Partial derivative of function with respect to parameters x, x, and ai. | |
void | ChebyshevT_old (int n, double x, double &y, double &dy, double &d2y) |
void | ChebyshevT (int n, double x, double &y, double &dy, double &d2y) |
bool | isSingular () |
Returns if the correlation function has a singularity in the domain , and false otherwise. | |
void | print (ostream &strm) |
Override this function if there's some Jastrow specific message you want to print. | |
Array1D< Complex > | getPoles () |
Returns all of the poles of the correlation function. | |
double | getFunctionValue () |
Gets the value of the correlation function for the last evaluated . | |
double | getFunctionValue (double r) |
Evaluate the function as fast as possible by skipping the evaluation of the derivatives. | |
double | getFirstDerivativeValue () |
Gets the value of the first derivative of the correlation function for the last evaluated . | |
double | getSecondDerivativeValue () |
Gets the value of the second derivative of the correlation function for the last evaluated . | |
Array1D< double > | getNumeratorCoeffs () |
Returns the coefficients for the numerator of the Jastrow's function. | |
Array1D< double > | getDenominatorCoeffs () |
Returns the coefficients for the denominator of the Jastrow's function. | |
Protected Attributes | |
double | FunctionValue |
double | dFunctionValue |
double | d2FunctionValue |
Private Attributes | |
double | g |
double | A |
double | A2 |
double | F |
double | A2F |
double | s2g |
double | B |
double | L |
double | yuk |
double | dyuk |
double | d2yuk |
double | ir |
double | t1 |
double | t2 |
double | dG_a |
double | dG_xa |
double | dG_xxa |
double | pre |
double | dpre |
double | d2pre |
double | r |
double | x |
int | n |
double | sum_Tn |
double | sum_dTn |
double | sum_d2Tn |
Array1D< double > | Tn |
Array1D< double > | dTn |
Array1D< double > | d2Tn |
Array1D< double > | co |
Definition at line 10 of file Anderson2CorrelationFunction.h.
void Anderson2CorrelationFunction::initializeParameters | ( | Array1D< int > & | BeginningIndexOfParameterType, | |
Array1D< double > & | Parameters, | |||
Array1D< int > & | BeginningIndexOfConstantType, | |||
Array1D< double > & | Constants | |||
) | [virtual] |
Initializes the correlation function with a specified set of parameters.
This must be called every time the parameters are changed.
Reimplemented from FixedCuspPadeCorrelationFunction.
Definition at line 12 of file Anderson2CorrelationFunction.cpp.
References A, A2, A2F, Array1D< T >::allocate(), B, co, d2Tn, Array1D< T >::dim1(), dTn, F, g, L, n, s2g, and Tn.
void Anderson2CorrelationFunction::evaluate | ( | double | r | ) | [virtual] |
Evaluates the correlation function and it's first two derivatives at .
Reimplemented from FixedCuspPadeCorrelationFunction.
Definition at line 80 of file Anderson2CorrelationFunction.cpp.
References A2, A2F, ChebyshevT(), FixedCuspPadeCorrelationFunction::d2FunctionValue, d2pre, d2yuk, FixedCuspPadeCorrelationFunction::dFunctionValue, dG_a, dG_xa, dG_xxa, dpre, dyuk, F, FixedCuspPadeCorrelationFunction::FunctionValue, ir, isSingular(), L, n, pre, r, t1, t2, WJ_C_TYPE, x, and yuk.
double Anderson2CorrelationFunction::get_p_a | ( | int | ai | ) | [virtual] |
Partial derivative of function with respect to parameter ai.
Reimplemented from FixedCuspPadeCorrelationFunction.
Definition at line 177 of file Anderson2CorrelationFunction.cpp.
References A, FixedCuspPadeCorrelationFunction::dFunctionValue, dG_a, QMCInput::flags, globalInput, L, QMCFlags::optimize_L, pre, r, s2g, t1, Tn, and yuk.
double Anderson2CorrelationFunction::get_p2_xa | ( | int | ai | ) | [virtual] |
Second Partial derivative of function with respect to parameters x and ai.
Reimplemented from FixedCuspPadeCorrelationFunction.
Definition at line 210 of file Anderson2CorrelationFunction.cpp.
References A, FixedCuspPadeCorrelationFunction::d2FunctionValue, FixedCuspPadeCorrelationFunction::dFunctionValue, dG_xa, dpre, dTn, dyuk, F, QMCInput::flags, globalInput, L, QMCFlags::optimize_L, pre, r, s2g, t1, Tn, and x.
double Anderson2CorrelationFunction::get_p3_xxa | ( | int | ai | ) | [virtual] |
Third Partial derivative of function with respect to parameters x, x, and ai.
Reimplemented from FixedCuspPadeCorrelationFunction.
Definition at line 244 of file Anderson2CorrelationFunction.cpp.
References A, FixedCuspPadeCorrelationFunction::d2FunctionValue, d2pre, d2Tn, d2yuk, dG_xxa, dpre, dTn, F, QMCInput::flags, globalInput, L, QMCFlags::optimize_L, pre, s2g, t1, Tn, and x.
void Anderson2CorrelationFunction::ChebyshevT_old | ( | int | n, | |
double | x, | |||
double & | y, | |||
double & | dy, | |||
double & | d2y | |||
) |
void Anderson2CorrelationFunction::ChebyshevT | ( | int | n, | |
double | x, | |||
double & | y, | |||
double & | dy, | |||
double & | d2y | |||
) |
Definition at line 312 of file Anderson2CorrelationFunction.cpp.
References co, d2Tn, dTn, and Tn.
Referenced by evaluate().
bool Anderson2CorrelationFunction::isSingular | ( | ) | [virtual] |
Returns if the correlation function has a singularity in the domain , and false otherwise.
Reimplemented from FixedCuspPadeCorrelationFunction.
Definition at line 307 of file Anderson2CorrelationFunction.cpp.
Referenced by evaluate().
void Anderson2CorrelationFunction::print | ( | ostream & | strm | ) | [virtual] |
Override this function if there's some Jastrow specific message you want to print.
It will be called right after the Jastrow is initialized.
Reimplemented from FixedCuspPadeCorrelationFunction.
Definition at line 278 of file Anderson2CorrelationFunction.cpp.
References A, A2, B, co, F, StringManipulation::fancyDoubleToString(), g, L, n, and WJ_C_TYPE.
Returns all of the poles of the correlation function.
Implements QMCCorrelationFunction.
Definition at line 71 of file FixedCuspPadeCorrelationFunction.cpp.
References FixedCuspPadeCorrelationFunction::Denominator, and Polynomial::getRoots().
double FixedCuspPadeCorrelationFunction::getFunctionValue | ( | ) | [virtual, inherited] |
Gets the value of the correlation function for the last evaluated .
Implements QMCCorrelationFunction.
Definition at line 101 of file FixedCuspPadeCorrelationFunction.cpp.
References FixedCuspPadeCorrelationFunction::FunctionValue.
double FixedCuspPadeCorrelationFunction::getFunctionValue | ( | double | r | ) | [virtual, inherited] |
Evaluate the function as fast as possible by skipping the evaluation of the derivatives.
Implements QMCCorrelationFunction.
Definition at line 106 of file FixedCuspPadeCorrelationFunction.cpp.
References FixedCuspPadeCorrelationFunction::Denominator, Polynomial::getFunctionValue(), and FixedCuspPadeCorrelationFunction::Numerator.
double FixedCuspPadeCorrelationFunction::getFirstDerivativeValue | ( | ) | [virtual, inherited] |
Gets the value of the first derivative of the correlation function for the last evaluated .
Implements QMCCorrelationFunction.
Definition at line 131 of file FixedCuspPadeCorrelationFunction.cpp.
References FixedCuspPadeCorrelationFunction::dFunctionValue.
double FixedCuspPadeCorrelationFunction::getSecondDerivativeValue | ( | ) | [virtual, inherited] |
Gets the value of the second derivative of the correlation function for the last evaluated .
Implements QMCCorrelationFunction.
Definition at line 165 of file FixedCuspPadeCorrelationFunction.cpp.
References FixedCuspPadeCorrelationFunction::d2FunctionValue.
Array1D< double > FixedCuspPadeCorrelationFunction::getNumeratorCoeffs | ( | ) | [virtual, inherited] |
Returns the coefficients for the numerator of the Jastrow's function.
Implements QMCCorrelationFunction.
Definition at line 214 of file FixedCuspPadeCorrelationFunction.cpp.
References Polynomial::getCoefficients(), and FixedCuspPadeCorrelationFunction::Numerator.
Array1D< double > FixedCuspPadeCorrelationFunction::getDenominatorCoeffs | ( | ) | [virtual, inherited] |
Returns the coefficients for the denominator of the Jastrow's function.
Implements QMCCorrelationFunction.
Definition at line 219 of file FixedCuspPadeCorrelationFunction.cpp.
References FixedCuspPadeCorrelationFunction::Denominator, and Polynomial::getCoefficients().
double Anderson2CorrelationFunction::g [private] |
Definition at line 13 of file Anderson2CorrelationFunction.h.
Referenced by initializeParameters(), isSingular(), and print().
double Anderson2CorrelationFunction::A [private] |
Definition at line 13 of file Anderson2CorrelationFunction.h.
Referenced by get_p2_xa(), get_p3_xxa(), get_p_a(), initializeParameters(), isSingular(), and print().
double Anderson2CorrelationFunction::A2 [private] |
Definition at line 13 of file Anderson2CorrelationFunction.h.
Referenced by evaluate(), initializeParameters(), and print().
double Anderson2CorrelationFunction::F [private] |
Definition at line 13 of file Anderson2CorrelationFunction.h.
Referenced by evaluate(), get_p2_xa(), get_p3_xxa(), initializeParameters(), and print().
double Anderson2CorrelationFunction::A2F [private] |
Definition at line 13 of file Anderson2CorrelationFunction.h.
Referenced by evaluate(), and initializeParameters().
double Anderson2CorrelationFunction::s2g [private] |
Definition at line 13 of file Anderson2CorrelationFunction.h.
Referenced by get_p2_xa(), get_p3_xxa(), get_p_a(), and initializeParameters().
double Anderson2CorrelationFunction::B [private] |
Definition at line 15 of file Anderson2CorrelationFunction.h.
Referenced by initializeParameters(), and print().
double Anderson2CorrelationFunction::L [private] |
Definition at line 16 of file Anderson2CorrelationFunction.h.
Referenced by evaluate(), get_p2_xa(), get_p3_xxa(), get_p_a(), initializeParameters(), and print().
double Anderson2CorrelationFunction::yuk [private] |
Definition at line 19 of file Anderson2CorrelationFunction.h.
Referenced by evaluate(), and get_p_a().
double Anderson2CorrelationFunction::dyuk [private] |
Definition at line 19 of file Anderson2CorrelationFunction.h.
Referenced by evaluate(), and get_p2_xa().
double Anderson2CorrelationFunction::d2yuk [private] |
Definition at line 19 of file Anderson2CorrelationFunction.h.
Referenced by evaluate(), and get_p3_xxa().
double Anderson2CorrelationFunction::ir [private] |
double Anderson2CorrelationFunction::t1 [private] |
Definition at line 20 of file Anderson2CorrelationFunction.h.
Referenced by evaluate(), get_p2_xa(), get_p3_xxa(), and get_p_a().
double Anderson2CorrelationFunction::t2 [private] |
double Anderson2CorrelationFunction::dG_a [private] |
Definition at line 22 of file Anderson2CorrelationFunction.h.
Referenced by evaluate(), and get_p_a().
double Anderson2CorrelationFunction::dG_xa [private] |
Definition at line 22 of file Anderson2CorrelationFunction.h.
Referenced by evaluate(), and get_p2_xa().
double Anderson2CorrelationFunction::dG_xxa [private] |
Definition at line 22 of file Anderson2CorrelationFunction.h.
Referenced by evaluate(), and get_p3_xxa().
double Anderson2CorrelationFunction::pre [private] |
Definition at line 23 of file Anderson2CorrelationFunction.h.
Referenced by evaluate(), get_p2_xa(), get_p3_xxa(), and get_p_a().
double Anderson2CorrelationFunction::dpre [private] |
Definition at line 23 of file Anderson2CorrelationFunction.h.
Referenced by evaluate(), get_p2_xa(), and get_p3_xxa().
double Anderson2CorrelationFunction::d2pre [private] |
Definition at line 23 of file Anderson2CorrelationFunction.h.
Referenced by evaluate(), and get_p3_xxa().
double Anderson2CorrelationFunction::r [private] |
Definition at line 25 of file Anderson2CorrelationFunction.h.
Referenced by evaluate(), get_p2_xa(), and get_p_a().
double Anderson2CorrelationFunction::x [private] |
Definition at line 25 of file Anderson2CorrelationFunction.h.
Referenced by evaluate(), get_p2_xa(), and get_p3_xxa().
int Anderson2CorrelationFunction::n [private] |
Definition at line 27 of file Anderson2CorrelationFunction.h.
Referenced by evaluate(), initializeParameters(), and print().
double Anderson2CorrelationFunction::sum_Tn [private] |
Definition at line 28 of file Anderson2CorrelationFunction.h.
double Anderson2CorrelationFunction::sum_dTn [private] |
Definition at line 28 of file Anderson2CorrelationFunction.h.
double Anderson2CorrelationFunction::sum_d2Tn [private] |
Definition at line 28 of file Anderson2CorrelationFunction.h.
Array1D<double> Anderson2CorrelationFunction::Tn [private] |
Definition at line 29 of file Anderson2CorrelationFunction.h.
Referenced by ChebyshevT(), get_p2_xa(), get_p3_xxa(), get_p_a(), and initializeParameters().
Array1D<double> Anderson2CorrelationFunction::dTn [private] |
Definition at line 30 of file Anderson2CorrelationFunction.h.
Referenced by ChebyshevT(), get_p2_xa(), get_p3_xxa(), and initializeParameters().
Array1D<double> Anderson2CorrelationFunction::d2Tn [private] |
Definition at line 31 of file Anderson2CorrelationFunction.h.
Referenced by ChebyshevT(), get_p3_xxa(), and initializeParameters().
Array1D<double> Anderson2CorrelationFunction::co [private] |
Definition at line 32 of file Anderson2CorrelationFunction.h.
Referenced by ChebyshevT(), initializeParameters(), and print().
double FixedCuspPadeCorrelationFunction::FunctionValue [protected, inherited] |
Definition at line 29 of file FixedCuspPadeCorrelationFunction.h.
Referenced by Yukawa2CorrelationFunction::evaluate(), Williamson2CorrelationFunction::evaluate(), Umrigar2CorrelationFunction::evaluate(), FixedCuspPadeCorrelationFunction::evaluate(), evaluate(), Yukawa2CorrelationFunction::get_p_a(), FixedCuspPadeCorrelationFunction::get_p_a(), and FixedCuspPadeCorrelationFunction::getFunctionValue().
double FixedCuspPadeCorrelationFunction::dFunctionValue [protected, inherited] |
Definition at line 30 of file FixedCuspPadeCorrelationFunction.h.
Referenced by Yukawa2CorrelationFunction::evaluate(), Williamson2CorrelationFunction::evaluate(), Umrigar2CorrelationFunction::evaluate(), FixedCuspPadeCorrelationFunction::evaluate(), evaluate(), Yukawa2CorrelationFunction::get_p2_xa(), Williamson2CorrelationFunction::get_p2_xa(), get_p2_xa(), Williamson2CorrelationFunction::get_p_a(), get_p_a(), and FixedCuspPadeCorrelationFunction::getFirstDerivativeValue().
double FixedCuspPadeCorrelationFunction::d2FunctionValue [protected, inherited] |
Definition at line 31 of file FixedCuspPadeCorrelationFunction.h.
Referenced by Yukawa2CorrelationFunction::evaluate(), Williamson2CorrelationFunction::evaluate(), Umrigar2CorrelationFunction::evaluate(), FixedCuspPadeCorrelationFunction::evaluate(), evaluate(), Williamson2CorrelationFunction::get_p2_xa(), get_p2_xa(), Yukawa2CorrelationFunction::get_p3_xxa(), Williamson2CorrelationFunction::get_p3_xxa(), get_p3_xxa(), and FixedCuspPadeCorrelationFunction::getSecondDerivativeValue().