From 75a1f85162432e4770fb009aec7dd9620638d951 Mon Sep 17 00:00:00 2001 From: Christopher Kelly Date: Wed, 30 Jun 2021 17:24:00 -0400 Subject: [PATCH] Added method to compute and return the Wilson flow energy density over some number of steps --- Grid/qcd/smearing/WilsonFlow.h | 24 ++++++++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/Grid/qcd/smearing/WilsonFlow.h b/Grid/qcd/smearing/WilsonFlow.h index 19fd94e2..1938723e 100644 --- a/Grid/qcd/smearing/WilsonFlow.h +++ b/Grid/qcd/smearing/WilsonFlow.h @@ -74,8 +74,15 @@ public: } void smear_adaptive(GaugeField&, const GaugeField&, RealD maxTau); + + //Compute t^2 for timestep 'step' from the plaquette RealD energyDensityPlaquette(unsigned int step, const GaugeField& U) const; + + //Compute t^2 for time taus, set by smear_adaptive, from the plaquette RealD energyDensityPlaquette(const GaugeField& U) const; + + //Evolve the gauge field by Nstep steps of epsilon and return the energy density computed every interval steps + std::vector flowMeasureEnergyDensityPlaquette(const GaugeField& U) const; }; @@ -154,11 +161,20 @@ RealD WilsonFlow::energyDensityPlaquette(const GaugeField& U) const { return 2.0 * taus * taus * SG.S(U)/U.Grid()->gSites(); } - +template +std::vector WilsonFlow::flowMeasureEnergyDensityPlaquette(const GaugeField& U) const{ + std::vector out; + GaugeField V(U); + for (unsigned int step = 0; step < Nstep; step++) { //bn tau = epsilon*(step+1) so tau after performing step=0 is epsilon + evolve_step(V); + if( step % measure_interval == 0){ + out.push_back( energyDensityPlaquette(step,V) ); + } + } + return out; +} + //#define WF_TIMING - - - template void WilsonFlow::smear(GaugeField& out, const GaugeField& in) const { out = in;