/************************************************************************************* Grid physics library, www.github.com/paboyle/Grid Source file: Hadrons/Archive/Modules/WardIdentity.hpp Copyright (C) 2015-2019 Author: Antonin Portelli Author: Lanny91 This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. See the full license in the file "LICENSE" in the top level distribution directory *************************************************************************************/ /* END LEGAL */ #ifndef Hadrons_MContraction_WardIdentity_hpp_ #define Hadrons_MContraction_WardIdentity_hpp_ #include #include #include BEGIN_HADRONS_NAMESPACE /* Ward Identity contractions ----------------------------- * options: - q: propagator, 5D if available (string) - action: action module used for propagator solution (string) - mass: mass of quark (double) - test_axial: whether or not to test PCAC relation. */ /****************************************************************************** * WardIdentity * ******************************************************************************/ BEGIN_MODULE_NAMESPACE(MContraction) class WardIdentityPar: Serializable { public: GRID_SERIALIZABLE_CLASS_MEMBERS(WardIdentityPar, std::string, q, std::string, action, double, mass, bool, test_axial); }; template class TWardIdentity: public Module { public: FERM_TYPE_ALIASES(FImpl,); public: // constructor TWardIdentity(const std::string name); // destructor virtual ~TWardIdentity(void) {}; // dependency relation virtual std::vector getInput(void); virtual std::vector getOutput(void); protected: // setup virtual void setup(void); // execution virtual void execute(void); private: unsigned int Ls_; }; MODULE_REGISTER_TMP(WardIdentity, TWardIdentity, MContraction); /****************************************************************************** * TWardIdentity implementation * ******************************************************************************/ // constructor ///////////////////////////////////////////////////////////////// template TWardIdentity::TWardIdentity(const std::string name) : Module(name) {} // dependencies/products /////////////////////////////////////////////////////// template std::vector TWardIdentity::getInput(void) { std::vector in = {par().q, par().action}; return in; } template std::vector TWardIdentity::getOutput(void) { std::vector out = {}; return out; } // setup /////////////////////////////////////////////////////////////////////// template void TWardIdentity::setup(void) { Ls_ = env().getObjectLs(par().q); if (Ls_ != env().getObjectLs(par().action)) { HADRONS_ERROR(Size, "Ls mismatch between quark action and propagator"); } envTmpLat(PropagatorField, "tmp"); envTmpLat(PropagatorField, "vector_WI"); if (par().test_axial) { envTmpLat(PropagatorField, "psi"); envTmpLat(LatticeComplex, "PP"); envTmpLat(LatticeComplex, "axial_defect"); envTmpLat(LatticeComplex, "PJ5q"); } } // execution /////////////////////////////////////////////////////////////////// template void TWardIdentity::execute(void) { LOG(Message) << "Performing Ward Identity checks for quark '" << par().q << "'." << std::endl; auto &q = envGet(PropagatorField, par().q); auto &act = envGet(FMat, par().action); Gamma g5(Gamma::Algebra::Gamma5); // Compute D_mu V_mu, D here is backward derivative. envGetTmp(PropagatorField, tmp); envGetTmp(PropagatorField, vector_WI); vector_WI = zero; for (unsigned int mu = 0; mu < Nd; ++mu) { act.ContractConservedCurrent(q, q, tmp, Current::Vector, mu); tmp -= Cshift(tmp, mu, -1); vector_WI += tmp; } // Test ward identity D_mu V_mu = 0; LOG(Message) << "Vector Ward Identity check Delta_mu V_mu = " << norm2(vector_WI) << std::endl; if (par().test_axial) { envGetTmp(PropagatorField, psi); envGetTmp(LatticeComplex, PP); envGetTmp(LatticeComplex, axial_defect); envGetTmp(LatticeComplex, PJ5q); std::vector axial_buf; // Compute , D is backwards derivative. axial_defect = zero; for (unsigned int mu = 0; mu < Nd; ++mu) { act.ContractConservedCurrent(q, q, tmp, Current::Axial, mu); tmp -= Cshift(tmp, mu, -1); axial_defect += trace(g5*tmp); } // Get for 5D (zero for 4D) and . PJ5q = zero; if (Ls_ > 1) { // ExtractSlice(tmp, q, 0, 0); psi = 0.5 * (tmp - g5*tmp); ExtractSlice(tmp, q, Ls_ - 1, 0); psi += 0.5 * (tmp + g5*tmp); PP = trace(adj(psi)*psi); // ExtractSlice(tmp, q, Ls_/2 - 1, 0); psi = 0.5 * (tmp + g5*tmp); ExtractSlice(tmp, q, Ls_/2, 0); psi += 0.5 * (tmp - g5*tmp); PJ5q = trace(adj(psi)*psi); } else { PP = trace(adj(q)*q); } // Test ward identity = 2m + 2 LOG(Message) << "|D_mu A_mu|^2 = " << norm2(axial_defect) << std::endl; LOG(Message) << "|PP|^2 = " << norm2(PP) << std::endl; LOG(Message) << "|PJ5q|^2 = " << norm2(PJ5q) << std::endl; LOG(Message) << "Axial Ward Identity defect Delta_mu A_mu = " << norm2(axial_defect) << std::endl; // Axial defect by timeslice. axial_defect -= 2.*(par().mass*PP + PJ5q); LOG(Message) << "Check Axial defect by timeslice" << std::endl; sliceSum(axial_defect, axial_buf, Tp); for (int t = 0; t < axial_buf.size(); ++t) { LOG(Message) << "t = " << t << ": " << TensorRemove(axial_buf[t]) << std::endl; } } } END_MODULE_NAMESPACE END_HADRONS_NAMESPACE #endif // Hadrons_WardIdentity_hpp_