From 7da4856e8e90131870d29ab61bd16a7660e78d1c Mon Sep 17 00:00:00 2001 From: Guido Cossu Date: Fri, 2 Jun 2017 16:55:53 +0100 Subject: [PATCH] Wilson flow with adaptive steps --- lib/qcd/smearing/WilsonFlow.h | 47 +++++++++++++++++++++++++++-------- 1 file changed, 37 insertions(+), 10 deletions(-) diff --git a/lib/qcd/smearing/WilsonFlow.h b/lib/qcd/smearing/WilsonFlow.h index 1053775d..5e9f2d95 100644 --- a/lib/qcd/smearing/WilsonFlow.h +++ b/lib/qcd/smearing/WilsonFlow.h @@ -43,7 +43,7 @@ class WilsonFlow: public Smear{ mutable WilsonGaugeAction SG; void evolve_step(typename Gimpl::GaugeField&) const; - void evolve_step_adaptive(typename Gimpl::GaugeField&) const; + void evolve_step_adaptive(typename Gimpl::GaugeField&, RealD); RealD tau(unsigned int t)const {return epsilon*(t+1.0); } public: @@ -75,7 +75,9 @@ class WilsonFlow: public Smear{ // undefined for WilsonFlow } + void smear_adaptive(GaugeField&, const GaugeField&, RealD maxTau); RealD energyDensityPlaquette(unsigned int step, const GaugeField& U) const; + RealD energyDensityPlaquette(const GaugeField& U) const; }; @@ -102,7 +104,11 @@ void WilsonFlow::evolve_step(typename Gimpl::GaugeField &U) const{ } template -void WilsonFlow::evolve_step_adaptive(typename Gimpl::GaugeField &U) const { +void WilsonFlow::evolve_step_adaptive(typename Gimpl::GaugeField &U, RealD maxTau) { + if (maxTau - taus < epsilon){ + epsilon = maxTau-taus; + } + std::cout << GridLogMessage << "Integration epsilon : " << epsilon << std::endl; GaugeField Z(U._grid); GaugeField Zprime(U._grid); GaugeField tmp(U._grid), Uprime(U._grid); @@ -142,10 +148,14 @@ void WilsonFlow::evolve_step_adaptive(typename Gimpl::GaugeField &U) cons template RealD WilsonFlow::energyDensityPlaquette(unsigned int step, const GaugeField& U) const { RealD td = tau(step); - //RealD td = tau; return 2.0 * td * td * SG.S(U)/U._grid->gSites(); } +template +RealD WilsonFlow::energyDensityPlaquette(const GaugeField& U) const { + return 2.0 * taus * taus * SG.S(U)/U._grid->gSites(); +} + //#define WF_TIMING @@ -154,7 +164,6 @@ RealD WilsonFlow::energyDensityPlaquette(unsigned int step, const GaugeFi template void WilsonFlow::smear(GaugeField& out, const GaugeField& in) const { out = in; - taus = epsilon; for (unsigned int step = 1; step <= Nstep; step++) { auto start = std::chrono::high_resolution_clock::now(); std::cout << GridLogMessage << "Evolution time :"<< tau(step) << std::endl; @@ -173,14 +182,32 @@ void WilsonFlow::smear(GaugeField& out, const GaugeField& in) const { << WilsonLoops::TopologicalCharge(out) << std::endl; } } - std::cout << GridLogMessage << "[WilsonFlow] Energy density (plaq) : " - << step << " " - << energyDensityPlaquette(Nstep,out) << std::endl; - std::cout << GridLogMessage << "[WilsonFlow] Top. charge : " - << step << " " - << WilsonLoops::TopologicalCharge(out) << std::endl; } +template +void WilsonFlow::smear_adaptive(GaugeField& out, const GaugeField& in, RealD maxTau){ + out = in; + taus = epsilon; + unsigned int step = 0; + do{ + step++; + std::cout << GridLogMessage << "Evolution time :"<< taus << std::endl; + evolve_step_adaptive(out, maxTau); + std::cout << GridLogMessage << "[WilsonFlow] Energy density (plaq) : " + << step << " " + << energyDensityPlaquette(out) << std::endl; + if( step % measure_interval == 0){ + std::cout << GridLogMessage << "[WilsonFlow] Top. charge : " + << step << " " + << WilsonLoops::TopologicalCharge(out) << std::endl; + } + } while (taus < maxTau); + + + +} + + } // namespace QCD } // namespace Grid