mirror of
https://github.com/paboyle/Grid.git
synced 2025-04-04 19:25:56 +01:00
Fixing the plaquette computation
This commit is contained in:
parent
392130a537
commit
e6acffdfc2
@ -99,7 +99,7 @@ class VariableWilsonGaugeAction : public Action<typename Gimpl::GaugeField> {
|
|||||||
|
|
||||||
public:
|
public:
|
||||||
VariableWilsonGaugeAction(std::vector<RealD> bulk, std::vector<RealD> xdim,
|
VariableWilsonGaugeAction(std::vector<RealD> bulk, std::vector<RealD> xdim,
|
||||||
GridBase *_grid, bool openBC = false)
|
GridBase *_grid)
|
||||||
: b_bulk(bulk),
|
: b_bulk(bulk),
|
||||||
b_xdim(xdim),
|
b_xdim(xdim),
|
||||||
grid(_grid),
|
grid(_grid),
|
||||||
@ -130,11 +130,6 @@ class VariableWilsonGaugeAction : public Action<typename Gimpl::GaugeField> {
|
|||||||
beta_xdim = where(coor == tau, temp, beta_xdim);
|
beta_xdim = where(coor == tau, temp, beta_xdim);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!openBC) {
|
|
||||||
temp = b_xdim[Nex - 1];
|
|
||||||
beta_xdim = where(coor == Nex - 1, temp, beta_xdim);
|
|
||||||
}
|
|
||||||
|
|
||||||
beta_xdim_shifted = Cshift(beta_xdim, Ndim - 1, -1);
|
beta_xdim_shifted = Cshift(beta_xdim, Ndim - 1, -1);
|
||||||
|
|
||||||
beta_bulk = zero;
|
beta_bulk = zero;
|
||||||
@ -143,8 +138,7 @@ class VariableWilsonGaugeAction : public Action<typename Gimpl::GaugeField> {
|
|||||||
beta_bulk = where(coor == tau, temp, beta_bulk);
|
beta_bulk = where(coor == tau, temp, beta_bulk);
|
||||||
}
|
}
|
||||||
|
|
||||||
std::cout << beta_xdim << std::endl;
|
|
||||||
std::cout << beta_xdim_shifted << std::endl;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
virtual void refresh(const GaugeField &U,
|
virtual void refresh(const GaugeField &U,
|
||||||
@ -180,6 +174,7 @@ class VariableWilsonGaugeAction : public Action<typename Gimpl::GaugeField> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
double faces = (1.0 * (Nd - 1) * (Nd - 2)) / 2.0;
|
double faces = (1.0 * (Nd - 1) * (Nd - 2)) / 2.0;
|
||||||
SumdirPlaq *= OneOnNc / (RealD(bulk_volume) * faces);
|
SumdirPlaq *= OneOnNc / (RealD(bulk_volume) * faces);
|
||||||
|
|
||||||
|
@ -170,6 +170,7 @@ class SU {
|
|||||||
ta()()(i2, i1) = 1.0;
|
ta()()(i2, i1) = 1.0;
|
||||||
ta = ta * 0.5;
|
ta = ta * 0.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
template <class cplx>
|
template <class cplx>
|
||||||
static void generatorSigmaX(int su2Index, iSUnMatrix<cplx> &ta) {
|
static void generatorSigmaX(int su2Index, iSUnMatrix<cplx> &ta) {
|
||||||
ta = zero;
|
ta = zero;
|
||||||
@ -194,6 +195,8 @@ class SU {
|
|||||||
ta = ta * nrm;
|
ta = ta * nrm;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////
|
||||||
// Map a su2 subgroup number to the pair of rows that are non zero
|
// Map a su2 subgroup number to the pair of rows that are non zero
|
||||||
////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////
|
||||||
|
@ -54,9 +54,21 @@ public:
|
|||||||
// resolution throughout the usage in this file, and rather defeats the
|
// resolution throughout the usage in this file, and rather defeats the
|
||||||
// purpose of deriving
|
// purpose of deriving
|
||||||
// from Gimpl.
|
// from Gimpl.
|
||||||
|
/*
|
||||||
plaq = Gimpl::CovShiftBackward(
|
plaq = Gimpl::CovShiftBackward(
|
||||||
U[mu], mu, Gimpl::CovShiftBackward(
|
U[mu], mu, Gimpl::CovShiftBackward(
|
||||||
U[nu], nu, Gimpl::CovShiftForward(U[mu], mu, U[nu])));
|
U[nu], nu, Gimpl::CovShiftForward(U[mu], mu, U[nu])));
|
||||||
|
*/
|
||||||
|
// _
|
||||||
|
//|< _|
|
||||||
|
plaq = Gimpl::CovShiftForward(U[mu],mu,
|
||||||
|
Gimpl::CovShiftForward(U[nu],nu,
|
||||||
|
Gimpl::CovShiftBackward(U[mu],mu,
|
||||||
|
Gimpl::CovShiftIdentityBackward(U[nu], nu))));
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
//////////////////////////////////////////////////
|
//////////////////////////////////////////////////
|
||||||
// trace of directed plaquette oriented in mu,nu plane
|
// trace of directed plaquette oriented in mu,nu plane
|
||||||
|
@ -62,32 +62,26 @@ class HmcRunner : public BinaryHmcRunner {
|
|||||||
void BuildTheAction(int argc, char **argv)
|
void BuildTheAction(int argc, char **argv)
|
||||||
|
|
||||||
{
|
{
|
||||||
|
int Ndim=5;
|
||||||
typedef WilsonImplR ImplPolicy;
|
typedef WilsonImplR ImplPolicy;
|
||||||
typedef WilsonFermionR FermionAction;
|
typedef WilsonFermionR FermionAction;
|
||||||
typedef typename FermionAction::FermionField FermionField;
|
typedef typename FermionAction::FermionField FermionField;
|
||||||
|
|
||||||
UGrid = SpaceTimeGrid::makeFourDimGrid(
|
std::vector<int> simd = GridDefaultSimd(Ndim-1,vComplex::Nsimd());
|
||||||
GridDefaultLatt(), GridDefaultSimd(Nd, vComplex::Nsimd()),
|
simd.push_back(1);
|
||||||
GridDefaultMpi());
|
|
||||||
UrbGrid = SpaceTimeGrid::makeFourDimRedBlackGrid(UGrid);
|
|
||||||
|
|
||||||
FGrid = UGrid;
|
|
||||||
FrbGrid = UrbGrid;
|
|
||||||
|
|
||||||
// temporarily need a gauge field
|
//UGrid = SpaceTimeGrid::makeFourDimGrid(GridDefaultLatt(), simd, GridDefaultMpi());
|
||||||
LatticeGaugeField U(UGrid);
|
UGrid = new GridCartesian(GridDefaultLatt(),simd,GridDefaultMpi());
|
||||||
|
|
||||||
// Gauge action
|
// Gauge action
|
||||||
int Ls = UGrid->_gdimensions[Nd - 1];
|
int Ls = UGrid->_fdimensions[Nd - 1];
|
||||||
std::vector<RealD> betat(Ls);
|
std::vector<RealD> betat(Ls,6.0);
|
||||||
std::vector<RealD> betas(Ls);
|
std::vector<RealD> betas(Ls,5.6);
|
||||||
//betat={5,6,6,6,6,6,6,5};
|
betat[Ls-1]= 0.0;
|
||||||
betat={1,1,1,0,1,1,1,1};
|
betas={5.2,5.5,5.8,6,6,5.8,5.5,5.2};
|
||||||
//betas={5.2,5.5,5.8,6,6,5.8,5.5,5.2};
|
|
||||||
betas={0,0,0,0,0,0,0,0};
|
|
||||||
bool openBC = false;
|
|
||||||
std:cout << GridLogMessage << "Betas: " << betas << std::endl;
|
std:cout << GridLogMessage << "Betas: " << betas << std::endl;
|
||||||
VariableWilsonGaugeActionR Waction(betas, betat, UGrid, openBC);
|
VariableWilsonGaugeActionR Waction(betas, betat, UGrid);
|
||||||
//WilsonGaugeActionR Waction(5.6);
|
//WilsonGaugeActionR Waction(5.6);
|
||||||
|
|
||||||
// Collect actions
|
// Collect actions
|
||||||
|
Loading…
x
Reference in New Issue
Block a user