From adeba8059a0924cea7aa9cd3c945155580e28d3c Mon Sep 17 00:00:00 2001 From: Christopher Kelly Date: Thu, 20 Jan 2022 14:29:07 -0500 Subject: [PATCH] Added calculation of timeslice topological charge --- Grid/qcd/utils/WilsonLoops.h | 50 +++++++++++++++++++++++++++++------- 1 file changed, 41 insertions(+), 9 deletions(-) diff --git a/Grid/qcd/utils/WilsonLoops.h b/Grid/qcd/utils/WilsonLoops.h index f3fa1ce6..15dad620 100644 --- a/Grid/qcd/utils/WilsonLoops.h +++ b/Grid/qcd/utils/WilsonLoops.h @@ -485,7 +485,8 @@ public: //Topological charge contribution from MxN Wilson loops //cf https://arxiv.org/pdf/hep-lat/9701012.pdf Eq 6 - static Real TopologicalChargeMxN(const GaugeLorentz &U, int M, int N){ + //output is the charge by timeslice: sum over timeslices to obtain the total + static std::vector TimesliceTopologicalChargeMxN(const GaugeLorentz &U, int M, int N){ assert(Nd == 4); std::vector > F(Nd,std::vector(Nd,nullptr)); //Note F_numu = - F_munu @@ -513,9 +514,20 @@ public: for(int mu=0;mu Tq; + sliceSum(fsum, Tq, Nd-1); - auto Tq = sum(fsum); - return TensorRemove(Tq).real(); + std::vector out(Tq.size()); + for(int t=0;t Tq = TimesliceTopologicalChargeMxN(U,M,N); + Real out(0); + for(int t=0;t TopologicalCharge5LiContributions(const GaugeLorentz &U){ + //Output array outer index contains the loops in the above order + //Inner index is the time coordinate + static std::vector > TimesliceTopologicalCharge5LiContributions(const GaugeLorentz &U){ static const int exts[5][2] = { {1,1}, {2,2}, {1,2}, {1,3}, {3,3} }; + std::vector > out(5); + for(int i=0;i<5;i++){ + out[i] = TimesliceTopologicalChargeMxN(U,exts[i][0],exts[i][1]); + } + return out; + } + + static std::vector TopologicalCharge5LiContributions(const GaugeLorentz &U){ + static const int exts[5][2] = { {1,1}, {2,2}, {1,2}, {1,3}, {3,3} }; std::vector out(5); std::cout << GridLogMessage << "Computing topological charge" << std::endl; - for(int i=0;i<5;i++){ + for(int i=0;i<5;i++){ out[i] = TopologicalChargeMxN(U,exts[i][0],exts[i][1]); std::cout << GridLogMessage << exts[i][0] << "x" << exts[i][1] << " Wilson loop contribution " << out[i] << std::endl; } @@ -538,8 +560,8 @@ public: } //Compute the 5Li topological charge - static Real TopologicalCharge5Li(const GaugeLorentz &U){ - std::vector loops = TopologicalCharge5LiContributions(U); + static std::vector TimesliceTopologicalCharge5Li(const GaugeLorentz &U){ + std::vector > loops = TimesliceTopologicalCharge5LiContributions(U); double c5=1./20.; double c4=1./5.-2.*c5; @@ -547,14 +569,24 @@ public: double c2=(1-64.*c5)/9.; double c1=(19.-55.*c5)/9.; - double Q = c1*loops[0] + c2*loops[1] + c3*loops[2] + c4*loops[3] + c5*loops[4]; + int Lt = loops[0].size(); + std::vector out(Lt,0.); + for(int t=0;t Qt = TimesliceTopologicalCharge5Li(U); + Real Q = 0.; + for(int t=0;t