1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-04-04 03:05:55 +01:00

Correcting sign for shGordon action

This commit is contained in:
Guido Cossu 2018-01-19 08:33:11 +00:00
parent 6347904160
commit 422dbc80cd
3 changed files with 6 additions and 4 deletions

View File

@ -29,7 +29,9 @@ class ScalarImplTypes {
static inline Field projectForce(Field& P){return P;}
static inline void update_field(Field& P, Field& U, double ep) {
std::cout << GridLogDebug << "P:\n" << P << std::endl;
U += P*ep;
std::cout << GridLogDebug << "U:\n" << U << std::endl;
}
static inline RealD FieldSquareNorm(Field& U) {

View File

@ -55,7 +55,7 @@ class shGordonAction : public QCD::Action<typename Impl::Field> {
virtual void refresh(const Field &U, GridParallelRNG &pRNG) {} // noop as no pseudoferms
virtual RealD S(const Field &phi) {
return QCD::Nd * ScalarObs<Impl>::sumphisquared(phi) + ScalarObs<Impl>::sumphider(phi) - 0.5*mass_square/(g*g)*sum(trace(exp(g*phi) + exp(-g*phi))) ;
return QCD::Nd * ScalarObs<Impl>::sumphisquared(phi) + ScalarObs<Impl>::sumphider(phi) + 0.5*mass_square/(g*g)*sum(trace(exp(g*phi) + exp(-g*phi))) ;
};
virtual void deriv(const Field &phi,
@ -65,7 +65,7 @@ class shGordonAction : public QCD::Action<typename Impl::Field> {
for (int mu = 0; mu < QCD::Nd; mu++) tmp -= Cshift(phi, mu, 1) + Cshift(phi, mu, -1);
std::cout << GridLogDebug << "Phi norm : " << norm2(phi) << std::endl;
force+= tmp - 0.5*mass_square/g*(exp(g*phi) - exp(-g*phi));
force+= tmp + 0.5*mass_square/g*(exp(g*phi) - exp(-g*phi));
}
};

View File

@ -103,7 +103,7 @@ class Integrator {
// Implement smearing only for the fundamental representation now
repr_set.at(a)->deriv(Rep.U, forceR);
GF force = Rep.RtoFundamentalProject(forceR); // Ta for the fundamental rep
Real force_abs = std::sqrt(norm2(force)/(U._grid->gSites()));
Real force_abs = std::sqrt(norm2(force))/(U._grid->gSites());
std::cout << GridLogIntegrator << "Hirep Force average: " << force_abs << std::endl;
Mom -= force * ep ;
}
@ -123,7 +123,7 @@ class Integrator {
std::cout << GridLogIntegrator << "Smearing (on/off): " << as[level].actions.at(a)->is_smeared << std::endl;
if (as[level].actions.at(a)->is_smeared) Smearer.smeared_force(force);
force = FieldImplementation::projectForce(force); // Ta for gauge fields
Real force_abs = std::sqrt(norm2(force)/U._grid->gSites());
Real force_abs = std::sqrt(norm2(force))/U._grid->gSites();
std::cout << GridLogIntegrator << "Force average: " << force_abs << std::endl;
Mom -= force * ep;
}