2016-01-02 14:51:32 +00:00
|
|
|
/*************************************************************************************
|
|
|
|
|
|
|
|
Grid physics library, www.github.com/paboyle/Grid
|
|
|
|
|
2016-07-16 01:52:44 +01:00
|
|
|
Source file: ./tests/Test_gpdwf_force.cc
|
2016-01-02 14:51:32 +00:00
|
|
|
|
|
|
|
Copyright (C) 2015
|
|
|
|
|
2016-07-16 01:52:44 +01:00
|
|
|
Author: paboyle <paboyle@ph.ed.ac.uk>
|
2016-01-02 14:51:32 +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
|
|
|
|
*************************************************************************************/
|
|
|
|
/* END LEGAL */
|
2016-07-16 01:52:44 +01:00
|
|
|
#include <Grid/Grid.h>
|
2015-08-01 14:07:05 +01:00
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
using namespace Grid;
|
|
|
|
|
|
|
|
int main (int argc, char ** argv)
|
|
|
|
{
|
|
|
|
Grid_init(&argc,&argv);
|
|
|
|
|
2018-02-24 22:19:28 +00:00
|
|
|
Coordinate latt_size = GridDefaultLatt();
|
|
|
|
Coordinate simd_layout = GridDefaultSimd(Nd,vComplex::Nsimd());
|
|
|
|
Coordinate mpi_layout = GridDefaultMpi();
|
2015-08-01 14:07:05 +01:00
|
|
|
|
2016-07-16 01:52:44 +01:00
|
|
|
GridCartesian * UGrid = SpaceTimeGrid::makeFourDimGrid(GridDefaultLatt(),
|
|
|
|
GridDefaultSimd(Nd,vComplex::Nsimd()),
|
|
|
|
GridDefaultMpi());
|
2015-08-01 14:07:05 +01:00
|
|
|
GridRedBlackCartesian * UrbGrid = SpaceTimeGrid::makeFourDimRedBlackGrid(UGrid);
|
2016-07-16 01:52:44 +01:00
|
|
|
GridCartesian * FGrid = UGrid;
|
2015-08-01 14:07:05 +01:00
|
|
|
|
|
|
|
std::vector<int> seeds4({1,2,3,4});
|
|
|
|
GridParallelRNG RNG4(UGrid); RNG4.SeedFixedIntegers(seeds4);
|
|
|
|
|
|
|
|
int threads = GridThread::GetThreads();
|
|
|
|
std::cout<<GridLogMessage << "Grid is setup to use "<<threads<<" threads"<<std::endl;
|
|
|
|
|
2016-07-16 01:52:44 +01:00
|
|
|
typedef typename GparityDomainWallFermionR::FermionField FermionField;
|
|
|
|
FermionField phi (FGrid); gaussian(RNG4,phi);
|
|
|
|
FermionField Mphi (FGrid);
|
|
|
|
FermionField MphiPrime (FGrid);
|
2015-08-01 14:07:05 +01:00
|
|
|
|
|
|
|
LatticeGaugeField U(UGrid);
|
|
|
|
|
2020-10-07 18:07:00 +01:00
|
|
|
SU<Nc>::HotConfiguration(RNG4,U);
|
2015-08-01 14:07:05 +01:00
|
|
|
|
|
|
|
////////////////////////////////////
|
|
|
|
// Unmodified matrix element
|
|
|
|
////////////////////////////////////
|
|
|
|
RealD mass=0.01;
|
2016-07-16 01:52:44 +01:00
|
|
|
|
|
|
|
const int nu = 3;
|
|
|
|
std::vector<int> twists(Nd,0); twists[nu] = 1;
|
|
|
|
GparityWilsonFermionR::ImplParams params; params.twists = twists;
|
|
|
|
GparityWilsonFermionR Wil(U,*UGrid,*UrbGrid,mass,params);
|
|
|
|
Wil.M (phi,Mphi);
|
2015-08-01 14:07:05 +01:00
|
|
|
|
|
|
|
ComplexD S = innerProduct(Mphi,Mphi); // pdag MdagM p
|
|
|
|
|
|
|
|
// get the deriv of phidag MdagM phi with respect to "U"
|
|
|
|
LatticeGaugeField UdSdU(UGrid);
|
|
|
|
LatticeGaugeField tmp(UGrid);
|
|
|
|
|
2016-07-16 01:52:44 +01:00
|
|
|
Wil.MDeriv(tmp , Mphi, phi,DaggerNo ); UdSdU=tmp;
|
|
|
|
Wil.MDeriv(tmp , phi, Mphi,DaggerYes ); UdSdU=(UdSdU+tmp);
|
2015-08-01 14:07:05 +01:00
|
|
|
|
2016-07-16 01:52:44 +01:00
|
|
|
FermionField Ftmp (FGrid);
|
2015-08-01 14:07:05 +01:00
|
|
|
|
|
|
|
////////////////////////////////////
|
|
|
|
// Modify the gauge field a little
|
|
|
|
////////////////////////////////////
|
2018-03-05 12:55:41 +00:00
|
|
|
RealD dt = 0.01;
|
2015-08-01 14:07:05 +01:00
|
|
|
|
|
|
|
LatticeColourMatrix mommu(UGrid);
|
|
|
|
LatticeColourMatrix forcemu(UGrid);
|
|
|
|
LatticeGaugeField mom(UGrid);
|
|
|
|
LatticeGaugeField Uprime(UGrid);
|
|
|
|
|
|
|
|
for(int mu=0;mu<Nd;mu++){
|
|
|
|
|
2017-05-06 00:46:31 +01:00
|
|
|
// Traceless antihermitian momentum; gaussian in lie alg
|
2020-10-07 18:07:00 +01:00
|
|
|
SU<Nc>::GaussianFundamentalLieAlgebraMatrix(RNG4, mommu);
|
2015-08-01 14:07:05 +01:00
|
|
|
|
|
|
|
PokeIndex<LorentzIndex>(mom,mommu,mu);
|
|
|
|
|
|
|
|
// fourth order exponential approx
|
2020-06-05 23:52:35 +01:00
|
|
|
autoView( mom_v, mom, CpuRead);
|
|
|
|
autoView( U_v , U, CpuRead);
|
|
|
|
autoView(Uprime_v, Uprime, CpuWrite);
|
2018-03-04 16:40:11 +00:00
|
|
|
|
2019-06-15 12:53:27 +01:00
|
|
|
thread_foreach(i,mom_v,{
|
2018-03-04 16:40:11 +00:00
|
|
|
Uprime_v[i](mu) = U_v[i](mu)
|
|
|
|
+ mom_v[i](mu)*U_v[i](mu)*dt
|
|
|
|
+ mom_v[i](mu) *mom_v[i](mu) *U_v[i](mu)*(dt*dt/2.0)
|
|
|
|
+ mom_v[i](mu) *mom_v[i](mu) *mom_v[i](mu) *U_v[i](mu)*(dt*dt*dt/6.0)
|
|
|
|
+ mom_v[i](mu) *mom_v[i](mu) *mom_v[i](mu) *mom_v[i](mu) *U_v[i](mu)*(dt*dt*dt*dt/24.0)
|
|
|
|
+ mom_v[i](mu) *mom_v[i](mu) *mom_v[i](mu) *mom_v[i](mu) *mom_v[i](mu) *U_v[i](mu)*(dt*dt*dt*dt*dt/120.0)
|
|
|
|
+ mom_v[i](mu) *mom_v[i](mu) *mom_v[i](mu) *mom_v[i](mu) *mom_v[i](mu) *mom_v[i](mu) *U_v[i](mu)*(dt*dt*dt*dt*dt*dt/720.0)
|
2015-08-01 14:07:05 +01:00
|
|
|
;
|
2018-01-28 01:00:55 +00:00
|
|
|
});
|
2018-03-04 16:40:11 +00:00
|
|
|
|
2015-08-01 14:07:05 +01:00
|
|
|
}
|
|
|
|
|
2016-07-16 01:52:44 +01:00
|
|
|
Wil.ImportGauge(Uprime);
|
|
|
|
Wil.M (phi,MphiPrime);
|
2015-08-01 14:07:05 +01:00
|
|
|
|
|
|
|
ComplexD Sprime = innerProduct(MphiPrime ,MphiPrime);
|
|
|
|
|
|
|
|
//////////////////////////////////////////////
|
|
|
|
// Use derivative to estimate dS
|
|
|
|
//////////////////////////////////////////////
|
|
|
|
|
|
|
|
for(int mu=0;mu<Nd;mu++){
|
|
|
|
mommu = PeekIndex<LorentzIndex>(UdSdU,mu);
|
|
|
|
mommu=Ta(mommu)*2.0;
|
|
|
|
PokeIndex<LorentzIndex>(UdSdU,mommu,mu);
|
|
|
|
}
|
|
|
|
|
2018-01-27 23:46:02 +00:00
|
|
|
LatticeComplex dS(UGrid); dS = Zero();
|
2015-08-01 14:07:05 +01:00
|
|
|
for(int mu=0;mu<Nd;mu++){
|
|
|
|
forcemu = PeekIndex<LorentzIndex>(UdSdU,mu);
|
|
|
|
mommu = PeekIndex<LorentzIndex>(mom,mu);
|
|
|
|
|
|
|
|
// Update PF action density
|
|
|
|
dS = dS+trace(mommu*forcemu)*dt;
|
|
|
|
}
|
|
|
|
|
2017-05-30 23:37:02 +01:00
|
|
|
ComplexD dSpred = sum(dS);
|
2015-08-01 14:07:05 +01:00
|
|
|
|
|
|
|
std::cout << GridLogMessage << " S "<<S<<std::endl;
|
|
|
|
std::cout << GridLogMessage << " Sprime "<<Sprime<<std::endl;
|
|
|
|
std::cout << GridLogMessage << "dS "<<Sprime-S<<std::endl;
|
|
|
|
std::cout << GridLogMessage << "predict dS "<< dSpred <<std::endl;
|
|
|
|
|
2017-05-08 20:06:41 +01:00
|
|
|
assert( fabs(real(Sprime-S-dSpred)) < 2.0 ) ;
|
2017-05-06 00:46:31 +01:00
|
|
|
|
2015-08-01 14:07:05 +01:00
|
|
|
std::cout<< GridLogMessage << "Done" <<std::endl;
|
|
|
|
Grid_finalize();
|
|
|
|
}
|