From 96f1d1b828f613a7d2278a441cc86ee59cfd2526 Mon Sep 17 00:00:00 2001 From: paboyle Date: Mon, 10 Oct 2016 23:46:45 +0100 Subject: [PATCH] Debugged Domain wall and Overlap feynman rules (infinite Ls, finite mass). --- lib/qcd/action/fermion/WilsonFermion5D.cc | 184 ++++++++++------------ 1 file changed, 81 insertions(+), 103 deletions(-) diff --git a/lib/qcd/action/fermion/WilsonFermion5D.cc b/lib/qcd/action/fermion/WilsonFermion5D.cc index 28f02b67..ea3e8535 100644 --- a/lib/qcd/action/fermion/WilsonFermion5D.cc +++ b/lib/qcd/action/fermion/WilsonFermion5D.cc @@ -393,92 +393,95 @@ void WilsonFermion5D::DW(const FermionField &in, FermionField &out,int dag } template -void WilsonFermion5D::MomentumSpacePropagatorHt(FermionField &out,const FermionField &in) +void WilsonFermion5D::MomentumSpacePropagatorHt(FermionField &out,const FermionField &in, RealD mass) { - // what type LatticeComplex - GridBase *_grid = _FourDimGrid; - conformable(_grid,out._grid); + // what type LatticeComplex + GridBase *_grid = _FourDimGrid; + conformable(_grid,out._grid); + + typedef typename FermionField::vector_type vector_type; + typedef typename FermionField::scalar_type ScalComplex; + typedef iSinglet Tcomplex; + typedef Lattice > LatComplex; + + Gamma::GammaMatrix Gmu [] = { + Gamma::GammaX, + Gamma::GammaY, + Gamma::GammaZ, + Gamma::GammaT + }; - typedef typename FermionField::vector_type vector_type; - typedef typename FermionField::scalar_type ScalComplex; - typedef iSinglet Tcomplex; - typedef Lattice > LatComplex; + std::vector latt_size = _grid->_fdimensions; - Gamma::GammaMatrix Gmu [] = { - Gamma::GammaX, - Gamma::GammaY, - Gamma::GammaZ, - Gamma::GammaT - }; + + FermionField num (_grid); num = zero; - std::vector latt_size = _grid->_fdimensions; + LatComplex sk(_grid); sk = zero; + LatComplex sk2(_grid); sk2= zero; + LatComplex W(_grid); W= zero; + LatComplex a(_grid); a= zero; + LatComplex one (_grid); one = ScalComplex(1.0,0.0); + LatComplex denom(_grid); denom= zero; + LatComplex cosha(_grid); + LatComplex kmu(_grid); + LatComplex Wea(_grid); + LatComplex Wema(_grid); - - LatComplex sk(_grid); sk = zero; - LatComplex sk2(_grid); sk2= zero; - - LatComplex W(_grid); W= zero; - LatComplex a(_grid); a= zero; - LatComplex cosha(_grid); a= zero; - - LatComplex one (_grid); one = ScalComplex(1.0,0.0); - - FermionField num (_grid); num = zero; - LatComplex denom(_grid); denom= zero; - LatComplex kmu(_grid); - ScalComplex ci(0.0,1.0); - - for(int mu=0;mulSites();idx++){ - Tcomplex cc; - RealD sgn; - std::vector lcoor(Nd); - _grid->LocalIndexToLocalCoor(idx,lcoor); - peekLocalSite(cc,cosha,lcoor); - sgn= ::fabs(real(cc)); - cc = ScalComplex(::acosh(sgn),0.0); - pokeLocalSite(cc,a,lcoor); - } + LatticeCoordinate(kmu,mu); + + RealD TwoPiL = M_PI * 2.0/ latt_size[mu]; + + kmu = TwoPiL * kmu; + + sk2 = sk2 + 2.0*sin(kmu*0.5)*sin(kmu*0.5); + sk = sk + sin(kmu) *sin(kmu); + + num = num - sin(kmu)*ci*(Gamma(Gmu[mu])*in); + + } + + W = one - M5 + sk2; - std::cout << "Ht mom space num" << norm2(num)< alpha + //////////////////////////////////////////// + cosha = (one + W*W + sk) / (W*2.0); + + // FIXME Need a Lattice acosh + for(int idx=0;idx<_grid->lSites();idx++){ + std::vector lcoor(Nd); + Tcomplex cc; + RealD sgn; + _grid->LocalIndexToLocalCoor(idx,lcoor); + peekLocalSite(cc,cosha,lcoor); + assert((double)real(cc)>=1.0); + assert(fabs((double)imag(cc))<=1.0e-15); + cc = ScalComplex(::acosh(real(cc)),0.0); + pokeLocalSite(cc,a,lcoor); + } + + Wea = ( exp( a) * W ); + Wema= ( exp(-a) * W ); + + num = num + ( one - Wema ) * mass * in; + denom= ( Wea - one ) + mass*mass * (one - Wema); + out = num/denom; } template -void WilsonFermion5D::MomentumSpacePropagatorHw(FermionField &out,const FermionField &in) +void WilsonFermion5D::MomentumSpacePropagatorHw(FermionField &out,const FermionField &in,RealD mass) { - // what type LatticeComplex + Gamma::GammaMatrix Gmu [] = { + Gamma::GammaX, + Gamma::GammaY, + Gamma::GammaZ, + Gamma::GammaT + }; + GridBase *_grid = _FourDimGrid; conformable(_grid,out._grid); @@ -487,16 +490,9 @@ void WilsonFermion5D::MomentumSpacePropagatorHw(FermionField &out,const Fe typedef Lattice > LatComplex; - Gamma::GammaMatrix Gmu [] = { - Gamma::GammaX, - Gamma::GammaY, - Gamma::GammaZ, - Gamma::GammaT - }; std::vector latt_size = _grid->_fdimensions; - LatComplex sk(_grid); sk = zero; LatComplex sk2(_grid); sk2= zero; @@ -524,35 +520,17 @@ void WilsonFermion5D::MomentumSpacePropagatorHw(FermionField &out,const Fe num = num - sin(kmu)*ci*(Gamma(Gmu[mu])*in); } + num = num + mass * in ; b_k = sk2 - M5; w_k = sqrt(sk + b_k*b_k); - std::cout << "Hw M5 " << M5<