SpinParser
1.0
|
Discretization of Matsubara frequency space. More...
#include <FrequencyDiscretization.hpp>
Public Member Functions | |
FrequencyDiscretization (const std::vector< float > &values) | |
Construct a frequency discretization based on a list of specified mesh points. The list of specified mesh points must be in ascending order and positive definite. The symmetry-related negative values are automatically generated. More... | |
~FrequencyDiscretization () | |
Destroy the FrequencyDiscretization object. | |
FrequencyIterator | begin () const |
Retrieve iterator to the first positive mesh point; This is the positive value with the smallest absolute value. More... | |
FrequencyIterator | beginNegative () const |
Retrieve iterator to the first negative mesh point; This is the negative value with the largest absolute value. More... | |
FrequencyIterator | last () const |
Retrieve iterator to the last mesh point; This is the positive value with the largest absolute value. More... | |
FrequencyIterator | end () const |
Retrieve iterator to the last+1 mesh point. More... | |
FrequencyIterator | lesser (const float w) const |
Retrieve an iterator to the closest mesh point that is lesser than the specified frequency value. If no lesser mesh point exists, returns an iterator to the closest mesh point. More... | |
FrequencyIterator | greater (const float w) const |
Retrieve an iterator to the closest mesh point that is greater than the specified frequency value. If no greater mesh point exists, returns an iterator to the closest mesh point. More... | |
int | offset (const float w) const |
Return the number of iterator increments of a mesh point associated with a given frequency value, relative to the first positive mesh point. The value of the specified frequency must be positive. If no mesh point with that value exists, returns the index of the last mesh point. More... | |
void | interpolateOffset (const float w, int &lowerOffset, int &upperOffset, float &bias) const |
Perform an interpolation between mesh points for an arbitrary positive frequency. More... | |
Public Attributes | |
int | size |
Number of positive mesh points. | |
float * | _data |
Pointer to the first positive mesh point. Stored contiuously after FrequencyDiscretization::_dataNegative. | |
float * | _dataNegative |
Pointer to the first negative mesh point. | |
Discretization of Matsubara frequency space.
This structure represents a discretization of Matsubara frequency space base on a list of specified mesh points. It provides methods to iterate the frequency mesh, to find closest mesh points, and to linearly interpolate arbitrary values inbetween the mesh points. The mesh is mirror symmetric around the origin.
|
inline |
Construct a frequency discretization based on a list of specified mesh points. The list of specified mesh points must be in ascending order and positive definite. The symmetry-related negative values are automatically generated.
values | List of mesh points. |
|
inline |
Retrieve iterator to the first positive mesh point; This is the positive value with the smallest absolute value.
|
inline |
Retrieve iterator to the first negative mesh point; This is the negative value with the largest absolute value.
|
inline |
Retrieve iterator to the last+1 mesh point.
|
inline |
Retrieve an iterator to the closest mesh point that is greater than the specified frequency value. If no greater mesh point exists, returns an iterator to the closest mesh point.
w | Designated upper frequency bound. |
|
inline |
Perform an interpolation between mesh points for an arbitrary positive frequency.
[in] | w | Frequency value to interpolate to. Must be positive. |
[out] | lowerOffset | Number of iterator increments of the lesser mesh point, relative to the first positive mesh point. |
[out] | upperOffset | Number of iterator increments of the greater mesh point, relative to the first positive mesh point. |
[out] | bias | Linear interpolation weight. Zero, if w matches the mesh point at lowerOffset . One. if w matches the mesh point at upperOffset . |
|
inline |
Retrieve iterator to the last mesh point; This is the positive value with the largest absolute value.
|
inline |
Retrieve an iterator to the closest mesh point that is lesser than the specified frequency value. If no lesser mesh point exists, returns an iterator to the closest mesh point.
w | Designated upper frequency bound. |
|
inline |
Return the number of iterator increments of a mesh point associated with a given frequency value, relative to the first positive mesh point. The value of the specified frequency must be positive. If no mesh point with that value exists, returns the index of the last mesh point.
w | Frequency value. Must be positive. |