SpinParser
1.0
|
Virtual implementation of a pf-FRG numerics core. More...
#include <FrgCore.hpp>
Public Member Functions | |
void | takeMeasurements () const |
Invoke all associated measurement protocols. | |
virtual void | computeStep ()=0 |
Virtual implementation of a single RG step in the solution of the flow equations. More... | |
virtual void | finalizeStep (float newCutoff)=0 |
Virtual implementation of the finalization of a single RG step in the solution of the flow equations. More... | |
EffectiveAction * | flowingFunctional () const |
Retrieve the flowing functional. More... | |
EffectiveAction * | flow () const |
Retrieve the vertex flow. More... | |
std::vector< Measurement * > | measurements () const |
Retrieve the list of measurements. More... | |
Protected Member Functions | |
FrgCore (const std::vector< Measurement * > &measurements) | |
Construct a new FrgCore, which takes ownership of the specified measurements. More... | |
virtual | ~FrgCore () |
Destroy the FrgCore object and delete any associated measurement protocols. | |
Protected Attributes | |
EffectiveAction * | _flowingFunctional |
Representation of the current state of the effective action. | |
EffectiveAction * | _flow |
Representation of the RG flow associated with the current state of the effective action. | |
std::vector< Measurement * > | _measurements |
List of measurement protocols to invoke throughout the solution of the flow equations. | |
Friends | |
class | SpinParser |
Virtual implementation of a pf-FRG numerics core.
The FrgCore represents the central numerics unit for pf-FRG calculations. It defines the interface between the differential equation solver, measurement protocols, and the concrete implementation of flow equations. The FrgCore also defines the interface for reading and writing checkpoints.
Every specific set of flow equations in its different symmetry-constrained form is derived from this class. Custom flow equations are implemented by subclassing the FrgCore and providing implementations of the virtual member functions.
New instances of FrgCore are created by the FrgCoreFactory::newFrgCore() routine.
|
inlineprotected |
Construct a new FrgCore, which takes ownership of the specified measurements.
measurements | List of measurement protocols to invoke during the solution of the flow equations. |
|
pure virtual |
Virtual implementation of a single RG step in the solution of the flow equations.
The concrete implementation of the method is expected to calculate the flow equation for the current configuration in FrgCore::flowingFunctional and populate FrgCore::flow with the results. It is not expected to make any further modifications.
Implemented in SU2FrgCore, TRIFrgCore, and XYZFrgCore.
|
pure virtual |
Virtual implementation of the finalization of a single RG step in the solution of the flow equations.
The concrete implementation of the method is expected to update the values of FrgCore::flowingFunctional, based on the values of the flow FrgCore::flow and the designated new value of the frequency cutoff.
newCutoff | New value of the cutoff. |
Implemented in SU2FrgCore, TRIFrgCore, and XYZFrgCore.
|
inline |
Retrieve the vertex flow.
|
inline |
Retrieve the flowing functional.
|
inline |
Retrieve the list of measurements.