1
0
mirror of https://github.com/paboyle/Grid.git synced 2024-09-21 01:25:48 +01:00
Grid/lib/qcd/action/fermion/WilsonCloverFermion.h

198 lines
6.9 KiB
C
Raw Normal View History

2017-03-27 02:54:16 +01:00
/*************************************************************************************
2017-03-24 03:43:28 +00:00
2017-03-27 02:54:16 +01:00
Grid physics library, www.github.com/paboyle/Grid
2017-03-24 03:43:28 +00:00
2017-03-27 07:12:57 +01:00
Source file: ./lib/qcd/action/fermion/WilsonCloverFermion.h
2017-03-24 03:43:28 +00:00
2017-03-27 02:54:16 +01:00
Copyright (C) 2017
2017-03-24 03:43:28 +00:00
2017-03-27 07:12:57 +01:00
Author: paboyle <paboyle@ph.ed.ac.uk>
Author: Guido Cossu <guido.cossu@ed.ac.uk>
2017-03-24 03:43:28 +00:00
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
*************************************************************************************/
2017-03-27 02:54:16 +01:00
/* END LEGAL */
#ifndef GRID_QCD_WILSON_CLOVER_FERMION_H
#define GRID_QCD_WILSON_CLOVER_FERMION_H
2017-03-24 03:43:28 +00:00
#include <Grid/Grid.h>
2017-04-28 15:23:34 +01:00
namespace Grid
{
namespace QCD
{
2017-03-27 02:54:16 +01:00
template <class Impl>
2017-04-28 15:23:34 +01:00
class WilsonCloverFermion : public WilsonFermion<Impl>
{
2017-03-27 02:54:16 +01:00
public:
2017-04-28 15:23:34 +01:00
// Types definitions
2017-03-27 02:54:16 +01:00
INHERIT_IMPL_TYPES(Impl);
2017-04-28 15:23:34 +01:00
template <typename vtype> using iImplClover = iScalar<iMatrix<iMatrix<vtype, Impl::Dimension>, Ns> >;
typedef iImplClover<Simd> SiteCloverType;
typedef Lattice<SiteCloverType> CloverFieldType;
2017-03-27 02:54:16 +01:00
public:
2017-03-27 07:12:57 +01:00
typedef WilsonFermion<Impl> WilsonBase;
2017-03-27 02:54:16 +01:00
virtual void Instantiatable(void){};
// Constructors
WilsonCloverFermion(GaugeField &_Umu, GridCartesian &Fgrid,
GridRedBlackCartesian &Hgrid,
RealD _mass,
RealD _csw,
const ImplParams &p = ImplParams()) : WilsonFermion<Impl>(_Umu,
Fgrid,
Hgrid,
2017-04-28 15:23:34 +01:00
_mass, p),
CloverTerm(&Fgrid),
2017-05-01 11:06:21 +01:00
CloverTermInv(&Fgrid),
CloverTermEven(&Hgrid),
CloverTermOdd(&Hgrid),
CloverTermInvEven(&Hgrid),
CloverTermInvOdd(&Hgrid)
2017-03-27 02:54:16 +01:00
{
csw = _csw;
2017-03-27 07:12:57 +01:00
assert(Nd == 4); // require 4 dimensions
2017-03-27 02:54:16 +01:00
}
2017-04-28 15:23:34 +01:00
virtual RealD M(const FermionField &in, FermionField &out);
virtual RealD Mdag(const FermionField &in, FermionField &out);
2017-03-27 02:54:16 +01:00
virtual void Mooee(const FermionField &in, FermionField &out);
virtual void MooeeDag(const FermionField &in, FermionField &out);
virtual void MooeeInv(const FermionField &in, FermionField &out);
virtual void MooeeInvDag(const FermionField &in, FermionField &out);
2017-04-28 15:23:34 +01:00
virtual void MooeeInternal(const FermionField &in, FermionField &out, int dag, int inv);
2017-03-27 02:54:16 +01:00
2017-04-28 15:23:34 +01:00
virtual void MDeriv(GaugeField &mat, const FermionField &U, const FermionField &V, int dag);
virtual void MooDeriv(GaugeField &mat, const FermionField &U, const FermionField &V, int dag);
virtual void MeeDeriv(GaugeField &mat, const FermionField &U, const FermionField &V, int dag);
2017-03-27 08:43:15 +01:00
2017-03-27 07:12:57 +01:00
void ImportGauge(const GaugeField &_Umu);
2017-04-28 15:23:34 +01:00
2017-03-27 02:54:16 +01:00
private:
2017-03-27 07:12:57 +01:00
// here fixing the 4 dimensions, make it more general?
2017-04-28 15:23:34 +01:00
RealD csw; // Clover coefficient
CloverFieldType CloverTerm, CloverTermInv; // Clover term
2017-05-01 11:06:21 +01:00
CloverFieldType CloverTermEven, CloverTermOdd;
CloverFieldType CloverTermInvEven, CloverTermInvOdd; // Clover term
2017-04-28 15:23:34 +01:00
// eventually these two can be compressed into 6x6 blocks instead of the 12x12
// using the DeGrand-Rossi basis for the gamma matrices
2017-08-04 16:08:07 +01:00
CloverFieldType fillCloverYZ(const GaugeLinkField &F)
{
2017-04-28 15:23:34 +01:00
CloverFieldType T(F._grid);
2017-08-04 16:08:07 +01:00
T = zero;
2017-04-28 15:23:34 +01:00
PARALLEL_FOR_LOOP
2017-08-04 16:08:07 +01:00
for (int i = 0; i < CloverTerm._grid->oSites(); i++)
{
T._odata[i]()(0, 1) = timesMinusI(F._odata[i]()());
T._odata[i]()(1, 0) = timesMinusI(F._odata[i]()());
T._odata[i]()(2, 3) = timesMinusI(F._odata[i]()());
T._odata[i]()(3, 2) = timesMinusI(F._odata[i]()());
2017-04-28 15:23:34 +01:00
}
2017-08-04 16:08:07 +01:00
2017-04-28 15:23:34 +01:00
return T;
2017-08-04 16:08:07 +01:00
}
CloverFieldType fillCloverXZ(const GaugeLinkField &F)
{
CloverFieldType T(F._grid);
T = zero;
PARALLEL_FOR_LOOP
for (int i = 0; i < CloverTerm._grid->oSites(); i++)
{
T._odata[i]()(0, 1) = -F._odata[i]()();
T._odata[i]()(1, 0) = F._odata[i]()();
T._odata[i]()(2, 3) = -F._odata[i]()();
T._odata[i]()(3, 2) = F._odata[i]()();
}
return T;
}
CloverFieldType fillCloverXY(const GaugeLinkField &F)
{
CloverFieldType T(F._grid);
T = zero;
PARALLEL_FOR_LOOP
for (int i = 0; i < CloverTerm._grid->oSites(); i++)
{
T._odata[i]()(0, 0) = timesMinusI(F._odata[i]()());
T._odata[i]()(1, 1) = timesI(F._odata[i]()());
T._odata[i]()(2, 2) = timesMinusI(F._odata[i]()());
T._odata[i]()(3, 3) = timesI(F._odata[i]()());
}
return T;
}
CloverFieldType fillCloverXT(const GaugeLinkField &F)
{
CloverFieldType T(F._grid);
T = zero;
PARALLEL_FOR_LOOP
for (int i = 0; i < CloverTerm._grid->oSites(); i++)
{
T._odata[i]()(0, 1) = timesMinusI(F._odata[i]()());
T._odata[i]()(1, 0) = timesMinusI(F._odata[i]()());
T._odata[i]()(2, 3) = timesI(F._odata[i]()());
T._odata[i]()(3, 2) = timesI(F._odata[i]()());
}
return T;
}
CloverFieldType fillCloverYT(const GaugeLinkField &F)
{
CloverFieldType T(F._grid);
T = zero;
PARALLEL_FOR_LOOP
for (int i = 0; i < CloverTerm._grid->oSites(); i++)
{
T._odata[i]()(0, 1) = (F._odata[i]()());
T._odata[i]()(1, 0) = -(F._odata[i]()());
T._odata[i]()(2, 3) = -(F._odata[i]()());
T._odata[i]()(3, 2) = (F._odata[i]()());
}
2017-04-28 15:23:34 +01:00
2017-08-04 16:08:07 +01:00
return T;
}
CloverFieldType fillCloverZT(const GaugeLinkField &F)
{
CloverFieldType T(F._grid);
T = zero;
PARALLEL_FOR_LOOP
for (int i = 0; i < CloverTerm._grid->oSites(); i++)
{
T._odata[i]()(0, 0) = timesMinusI(F._odata[i]()());
T._odata[i]()(1, 1) = timesI(F._odata[i]()());
T._odata[i]()(2, 2) = timesI(F._odata[i]()());
T._odata[i]()(3, 3) = timesMinusI(F._odata[i]()());
}
return T;
}
2017-03-27 02:54:16 +01:00
};
}
}
#endif // GRID_QCD_WILSON_CLOVER_FERMION_H