mirror of
https://github.com/paboyle/Grid.git
synced 2025-04-11 14:40:46 +01:00
Namespace, indent
This commit is contained in:
parent
e6efc93a7c
commit
7828887604
@ -1,4 +1,4 @@
|
|||||||
/*************************************************************************************
|
/*************************************************************************************
|
||||||
|
|
||||||
Grid physics library, www.github.com/paboyle/Grid
|
Grid physics library, www.github.com/paboyle/Grid
|
||||||
|
|
||||||
@ -24,129 +24,127 @@ Author: paboyle <paboyle@ph.ed.ac.uk>
|
|||||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||||
|
|
||||||
See the full license in the file "LICENSE" in the top level distribution directory
|
See the full license in the file "LICENSE" in the top level distribution directory
|
||||||
*************************************************************************************/
|
*************************************************************************************/
|
||||||
/* END LEGAL */
|
/* END LEGAL */
|
||||||
#ifndef QCD_PLAQ_PLUS_RECTANGLE_ACTION_H
|
#ifndef QCD_PLAQ_PLUS_RECTANGLE_ACTION_H
|
||||||
#define QCD_PLAQ_PLUS_RECTANGLE_ACTION_H
|
#define QCD_PLAQ_PLUS_RECTANGLE_ACTION_H
|
||||||
|
|
||||||
namespace Grid{
|
NAMESPACE_BEGIN(Grid);
|
||||||
namespace QCD{
|
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////
|
||||||
// PlaqPlusRectangleActoin
|
// PlaqPlusRectangleActoin
|
||||||
////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////
|
||||||
template<class Gimpl>
|
template<class Gimpl>
|
||||||
class PlaqPlusRectangleAction : public Action<typename Gimpl::GaugeField> {
|
class PlaqPlusRectangleAction : public Action<typename Gimpl::GaugeField> {
|
||||||
public:
|
public:
|
||||||
|
|
||||||
INHERIT_GIMPL_TYPES(Gimpl);
|
INHERIT_GIMPL_TYPES(Gimpl);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
RealD c_plaq;
|
RealD c_plaq;
|
||||||
RealD c_rect;
|
RealD c_rect;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
PlaqPlusRectangleAction(RealD b,RealD c): c_plaq(b),c_rect(c){};
|
PlaqPlusRectangleAction(RealD b,RealD c): c_plaq(b),c_rect(c){};
|
||||||
|
|
||||||
virtual std::string action_name(){return "PlaqPlusRectangleAction";}
|
virtual std::string action_name(){return "PlaqPlusRectangleAction";}
|
||||||
|
|
||||||
virtual void refresh(const GaugeField &U, GridParallelRNG& pRNG) {}; // noop as no pseudoferms
|
virtual void refresh(const GaugeField &U, GridParallelRNG& pRNG) {}; // noop as no pseudoferms
|
||||||
|
|
||||||
virtual std::string LogParameters(){
|
virtual std::string LogParameters(){
|
||||||
std::stringstream sstream;
|
std::stringstream sstream;
|
||||||
sstream << GridLogMessage << "["<<action_name() <<"] c_plaq: " << c_plaq << std::endl;
|
sstream << GridLogMessage << "["<<action_name() <<"] c_plaq: " << c_plaq << std::endl;
|
||||||
sstream << GridLogMessage << "["<<action_name() <<"] c_rect: " << c_rect << std::endl;
|
sstream << GridLogMessage << "["<<action_name() <<"] c_rect: " << c_rect << std::endl;
|
||||||
return sstream.str();
|
return sstream.str();
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
virtual RealD S(const GaugeField &U) {
|
|
||||||
RealD vol = U._grid->gSites();
|
|
||||||
|
|
||||||
RealD plaq = WilsonLoops<Gimpl>::avgPlaquette(U);
|
|
||||||
RealD rect = WilsonLoops<Gimpl>::avgRectangle(U);
|
|
||||||
|
|
||||||
RealD action=c_plaq*(1.0 -plaq)*(Nd*(Nd-1.0))*vol*0.5
|
|
||||||
+c_rect*(1.0 -rect)*(Nd*(Nd-1.0))*vol;
|
|
||||||
|
|
||||||
return action;
|
|
||||||
};
|
|
||||||
|
|
||||||
virtual void deriv(const GaugeField &Umu,GaugeField & dSdU) {
|
|
||||||
//extend Ta to include Lorentz indexes
|
|
||||||
RealD factor_p = c_plaq/RealD(Nc)*0.5;
|
|
||||||
RealD factor_r = c_rect/RealD(Nc)*0.5;
|
|
||||||
|
|
||||||
GridBase *grid = Umu._grid;
|
|
||||||
|
|
||||||
std::vector<GaugeLinkField> U (Nd,grid);
|
|
||||||
std::vector<GaugeLinkField> U2(Nd,grid);
|
|
||||||
|
|
||||||
for(int mu=0;mu<Nd;mu++){
|
|
||||||
U[mu] = PeekIndex<LorentzIndex>(Umu,mu);
|
|
||||||
WilsonLoops<Gimpl>::RectStapleDouble(U2[mu],U[mu],mu);
|
|
||||||
}
|
|
||||||
|
|
||||||
GaugeLinkField dSdU_mu(grid);
|
|
||||||
GaugeLinkField staple(grid);
|
|
||||||
|
|
||||||
for (int mu=0; mu < Nd; mu++){
|
|
||||||
|
|
||||||
// Staple in direction mu
|
|
||||||
|
|
||||||
WilsonLoops<Gimpl>::Staple(staple,Umu,mu);
|
|
||||||
|
|
||||||
dSdU_mu = Ta(U[mu]*staple)*factor_p;
|
|
||||||
|
|
||||||
WilsonLoops<Gimpl>::RectStaple(Umu,staple,U2,U,mu);
|
|
||||||
|
|
||||||
dSdU_mu = dSdU_mu + Ta(U[mu]*staple)*factor_r;
|
|
||||||
|
|
||||||
PokeIndex<LorentzIndex>(dSdU, dSdU_mu, mu);
|
|
||||||
}
|
|
||||||
|
|
||||||
};
|
|
||||||
|
|
||||||
};
|
|
||||||
|
|
||||||
// Convenience for common physically defined cases.
|
|
||||||
//
|
|
||||||
// RBC c1 parameterisation is not really RBC but don't have good
|
|
||||||
// reference and we are happy to change name if prior use of this plaq coeff
|
|
||||||
// parameterisation is made known to us.
|
|
||||||
template<class Gimpl>
|
|
||||||
class RBCGaugeAction : public PlaqPlusRectangleAction<Gimpl> {
|
|
||||||
public:
|
|
||||||
INHERIT_GIMPL_TYPES(Gimpl);
|
|
||||||
RBCGaugeAction(RealD beta,RealD c1) : PlaqPlusRectangleAction<Gimpl>(beta*(1.0-8.0*c1), beta*c1) {};
|
|
||||||
virtual std::string action_name(){return "RBCGaugeAction";}
|
|
||||||
};
|
|
||||||
|
|
||||||
template<class Gimpl>
|
|
||||||
class IwasakiGaugeAction : public RBCGaugeAction<Gimpl> {
|
|
||||||
public:
|
|
||||||
INHERIT_GIMPL_TYPES(Gimpl);
|
|
||||||
IwasakiGaugeAction(RealD beta) : RBCGaugeAction<Gimpl>(beta,-0.331) {};
|
|
||||||
virtual std::string action_name(){return "IwasakiGaugeAction";}
|
|
||||||
};
|
|
||||||
|
|
||||||
template<class Gimpl>
|
|
||||||
class SymanzikGaugeAction : public RBCGaugeAction<Gimpl> {
|
|
||||||
public:
|
|
||||||
INHERIT_GIMPL_TYPES(Gimpl);
|
|
||||||
SymanzikGaugeAction(RealD beta) : RBCGaugeAction<Gimpl>(beta,-1.0/12.0) {};
|
|
||||||
virtual std::string action_name(){return "SymanzikGaugeAction";}
|
|
||||||
};
|
|
||||||
|
|
||||||
template<class Gimpl>
|
|
||||||
class DBW2GaugeAction : public RBCGaugeAction<Gimpl> {
|
|
||||||
public:
|
|
||||||
INHERIT_GIMPL_TYPES(Gimpl);
|
|
||||||
DBW2GaugeAction(RealD beta) : RBCGaugeAction<Gimpl>(beta,-1.4067) {};
|
|
||||||
virtual std::string action_name(){return "DBW2GaugeAction";}
|
|
||||||
};
|
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
|
virtual RealD S(const GaugeField &U) {
|
||||||
|
RealD vol = U._grid->gSites();
|
||||||
|
|
||||||
|
RealD plaq = WilsonLoops<Gimpl>::avgPlaquette(U);
|
||||||
|
RealD rect = WilsonLoops<Gimpl>::avgRectangle(U);
|
||||||
|
|
||||||
|
RealD action=c_plaq*(1.0 -plaq)*(Nd*(Nd-1.0))*vol*0.5
|
||||||
|
+c_rect*(1.0 -rect)*(Nd*(Nd-1.0))*vol;
|
||||||
|
|
||||||
|
return action;
|
||||||
|
};
|
||||||
|
|
||||||
|
virtual void deriv(const GaugeField &Umu,GaugeField & dSdU) {
|
||||||
|
//extend Ta to include Lorentz indexes
|
||||||
|
RealD factor_p = c_plaq/RealD(Nc)*0.5;
|
||||||
|
RealD factor_r = c_rect/RealD(Nc)*0.5;
|
||||||
|
|
||||||
|
GridBase *grid = Umu._grid;
|
||||||
|
|
||||||
|
std::vector<GaugeLinkField> U (Nd,grid);
|
||||||
|
std::vector<GaugeLinkField> U2(Nd,grid);
|
||||||
|
|
||||||
|
for(int mu=0;mu<Nd;mu++){
|
||||||
|
U[mu] = PeekIndex<LorentzIndex>(Umu,mu);
|
||||||
|
WilsonLoops<Gimpl>::RectStapleDouble(U2[mu],U[mu],mu);
|
||||||
|
}
|
||||||
|
|
||||||
|
GaugeLinkField dSdU_mu(grid);
|
||||||
|
GaugeLinkField staple(grid);
|
||||||
|
|
||||||
|
for (int mu=0; mu < Nd; mu++){
|
||||||
|
|
||||||
|
// Staple in direction mu
|
||||||
|
|
||||||
|
WilsonLoops<Gimpl>::Staple(staple,Umu,mu);
|
||||||
|
|
||||||
|
dSdU_mu = Ta(U[mu]*staple)*factor_p;
|
||||||
|
|
||||||
|
WilsonLoops<Gimpl>::RectStaple(Umu,staple,U2,U,mu);
|
||||||
|
|
||||||
|
dSdU_mu = dSdU_mu + Ta(U[mu]*staple)*factor_r;
|
||||||
|
|
||||||
|
PokeIndex<LorentzIndex>(dSdU, dSdU_mu, mu);
|
||||||
|
}
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
// Convenience for common physically defined cases.
|
||||||
|
//
|
||||||
|
// RBC c1 parameterisation is not really RBC but don't have good
|
||||||
|
// reference and we are happy to change name if prior use of this plaq coeff
|
||||||
|
// parameterisation is made known to us.
|
||||||
|
template<class Gimpl>
|
||||||
|
class RBCGaugeAction : public PlaqPlusRectangleAction<Gimpl> {
|
||||||
|
public:
|
||||||
|
INHERIT_GIMPL_TYPES(Gimpl);
|
||||||
|
RBCGaugeAction(RealD beta,RealD c1) : PlaqPlusRectangleAction<Gimpl>(beta*(1.0-8.0*c1), beta*c1) {};
|
||||||
|
virtual std::string action_name(){return "RBCGaugeAction";}
|
||||||
|
};
|
||||||
|
|
||||||
|
template<class Gimpl>
|
||||||
|
class IwasakiGaugeAction : public RBCGaugeAction<Gimpl> {
|
||||||
|
public:
|
||||||
|
INHERIT_GIMPL_TYPES(Gimpl);
|
||||||
|
IwasakiGaugeAction(RealD beta) : RBCGaugeAction<Gimpl>(beta,-0.331) {};
|
||||||
|
virtual std::string action_name(){return "IwasakiGaugeAction";}
|
||||||
|
};
|
||||||
|
|
||||||
|
template<class Gimpl>
|
||||||
|
class SymanzikGaugeAction : public RBCGaugeAction<Gimpl> {
|
||||||
|
public:
|
||||||
|
INHERIT_GIMPL_TYPES(Gimpl);
|
||||||
|
SymanzikGaugeAction(RealD beta) : RBCGaugeAction<Gimpl>(beta,-1.0/12.0) {};
|
||||||
|
virtual std::string action_name(){return "SymanzikGaugeAction";}
|
||||||
|
};
|
||||||
|
|
||||||
|
template<class Gimpl>
|
||||||
|
class DBW2GaugeAction : public RBCGaugeAction<Gimpl> {
|
||||||
|
public:
|
||||||
|
INHERIT_GIMPL_TYPES(Gimpl);
|
||||||
|
DBW2GaugeAction(RealD beta) : RBCGaugeAction<Gimpl>(beta,-1.4067) {};
|
||||||
|
virtual std::string action_name(){return "DBW2GaugeAction";}
|
||||||
|
};
|
||||||
|
|
||||||
|
NAMESPACE_END(Grid);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user