SpinParser  1.0
Public Member Functions | Protected Member Functions | Protected Attributes | Friends | List of all members
FrgCore Class Referenceabstract

Virtual implementation of a pf-FRG numerics core. More...

#include <FrgCore.hpp>

Inheritance diagram for FrgCore:
Inheritance graph
[legend]
Collaboration diagram for FrgCore:
Collaboration graph
[legend]

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...
 
EffectiveActionflowingFunctional () const
 Retrieve the flowing functional. More...
 
EffectiveActionflow () 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
 

Detailed Description

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.

Constructor & Destructor Documentation

◆ FrgCore()

FrgCore::FrgCore ( const std::vector< Measurement * > &  measurements)
inlineprotected

Construct a new FrgCore, which takes ownership of the specified measurements.

See also
Measurement
Parameters
measurementsList of measurement protocols to invoke during the solution of the flow equations.

Member Function Documentation

◆ computeStep()

virtual void FrgCore::computeStep ( )
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.

See also
FrgCore::finalizeStep()

Implemented in SU2FrgCore, TRIFrgCore, and XYZFrgCore.

◆ finalizeStep()

virtual void FrgCore::finalizeStep ( float  newCutoff)
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.

Parameters
newCutoffNew value of the cutoff.

Implemented in SU2FrgCore, TRIFrgCore, and XYZFrgCore.

◆ flow()

EffectiveAction* FrgCore::flow ( ) const
inline

Retrieve the vertex flow.

Returns
EffectiveAction* Vertex flow.

◆ flowingFunctional()

EffectiveAction* FrgCore::flowingFunctional ( ) const
inline

Retrieve the flowing functional.

Returns
EffectiveAction* Flowing functional.

◆ measurements()

std::vector<Measurement *> FrgCore::measurements ( ) const
inline

Retrieve the list of measurements.

Returns
std::vector<Measurement *> List of measurements.

The documentation for this class was generated from the following file: