Bridge++  Ver. 1.2.x
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
smear_HYP_SF.cpp
Go to the documentation of this file.
1 
14 #include "smear_HYP_SF.h"
15 
16 #ifdef USE_PARAMETERS_FACTORY
17 #include "parameters_factory.h"
18 #endif
19 
20 using std::valarray;
21 
22 #ifdef USE_FACTORY
23 namespace {
24  Smear *create_object(Projection *proj)
25  {
26  return new Smear_HYP_SF(proj);
27  }
28 
29 
30  bool init = Smear::Factory::Register("HYP_SF", create_object);
31 }
32 #endif
33 
34 //- parameter entries
35 namespace {
36  void append_entry(Parameters& param)
37  {
38  param.Register_double("alpha1", 0.0);
39  param.Register_double("alpha2", 0.0);
40  param.Register_double("alpha3", 0.0);
41  param.Register_double_vector("phi", std::valarray<double>());
42  param.Register_double_vector("phipr", std::valarray<double>());
43 
44  param.Register_string("verbose_level", "NULL");
45  }
46 
47 
48 #ifdef USE_PARAMETERS_FACTORY
49  bool init_param = ParametersFactory::Register("Smear.HYP_SF", append_entry);
50 #endif
51 }
52 //- end
53 
54 //- parameters class
56 //- end
57 
58 const std::string Smear_HYP_SF::class_name = "Smear_HYP_SF";
59 
60 //====================================================================
62 {
63  const string str_vlevel = params.get_string("verbose_level");
64 
65  m_vl = vout.set_verbose_level(str_vlevel);
66 
67  //- fetch and check input parameters
68  double alpha1, alpha2, alpha3;
69  valarray<double> phi, phipr;
70 
71  int err = 0;
72  err += params.fetch_double("alpha1", alpha1);
73  err += params.fetch_double("alpha2", alpha2);
74  err += params.fetch_double("alpha3", alpha3);
75  err += params.fetch_double_vector("phi", phi);
76  err += params.fetch_double_vector("phipr", phipr);
77 
78  if (err) {
79  vout.crucial(m_vl, "%s: fetch error, input parameter not found.\n", class_name.c_str());
80  abort();
81  }
82 
83 
84  set_parameters(alpha1, alpha2, alpha3, &phi[0], &phipr[0]);
85 }
86 
87 
88 //====================================================================
89 void Smear_HYP_SF::set_parameters(double alpha1, double alpha2, double alpha3,
90  double *phi, double *phipr)
91 {
92  //- print input parameters
93  vout.general(m_vl, "Parameters of %s:\n", class_name.c_str());
94  vout.general(m_vl, " alpha1 = %10.6F\n", alpha1);
95  vout.general(m_vl, " alpha2 = %10.6F\n", alpha2);
96  vout.general(m_vl, " alpha3 = %10.6F\n", alpha3);
97 
98  vout.general(m_vl, " phi1 = %12.6f\n", phi[0]);
99  vout.general(m_vl, " phi2 = %12.6f\n", phi[1]);
100  vout.general(m_vl, " phi3 = %12.6f\n", phi[2]);
101  vout.general(m_vl, " phipr1= %12.6f\n", phipr[0]);
102  vout.general(m_vl, " phipr2= %12.6f\n", phipr[1]);
103  vout.general(m_vl, " phipr3= %12.6f\n", phipr[2]);
104 
105  //- range check
106  // NB. alpha1,alpha2,alpha3 == 0 is allowed.
107  // NB. phi,phipr == 0 is allowed.
108 
109  //- store values
110  m_alpha1 = alpha1;
111  m_alpha2 = alpha2;
112  m_alpha3 = alpha3;
113 
114  //- post-process
115  set_wk.set_parameters(phi, phipr);
116 }
117 
118 
119 //====================================================================
121 {
124 
125  m_U.resize(m_Ndim);
126  m_v1.resize(size_v1());
127  m_v2.resize(size_v2());
128 }
129 
130 
131 //====================================================================
132 void Smear_HYP_SF::smear(Field_G& Usmear, const Field_G& U)
133 {
134  assert(U.nvol() == m_Nvol);
135  assert(U.nex() == m_Ndim);
136 
137  assert(Usmear.nvol() == m_Nvol);
138  assert(Usmear.nex() == m_Ndim);
139 
140  for (int mu = 0; mu < m_Ndim; ++mu) {
141  m_U[mu].setpart_ex(0, U, mu);
142  if (mu != 3) set_wk.set_boundary_wk(m_U[mu]);
143  }
144 
145  step1();
146  // vout.general(m_vl,"level-1 step finished.\n");
147  step2();
148  // vout.general(m_vl,"level-2 step finished.\n");
149  step3(Usmear);
150  // vout.general(m_vl,"level-3 step finished.\n");
151 }
152 
153 
154 //====================================================================
156 {
157  Field_G c1(m_Nvol, 1);
158 
159  for (int mu = 0; mu < m_Ndim; ++mu) {
160  for (int nu = 0; nu < m_Ndim; ++nu) {
161  if (nu == mu) continue;
162 
163  for (int rho = nu + 1; rho < m_Ndim; ++rho) {
164  if (rho == mu) continue;
165  int sig = 6 - mu - nu - rho;
166  staple(c1, m_U[mu], m_U[sig], mu, sig);
167  c1 *= m_alpha3 / 2.0;
168  m_proj->project(m_v1[index_v1(mu, nu, rho)], m_alpha3, c1, m_U[mu]);
169 
170  if (mu != 3) set_wk.set_boundary_wk(m_v1[index_v1(mu, nu, rho)]);
171  }
172  }
173  }
174 }
175 
176 
177 //====================================================================
179 {
180  Field_G c2(m_Nvol, 1), u_tmp(m_Nvol, 1);
181 
182  for (int mu = 0; mu < m_Ndim; ++mu) {
183  for (int nu = 0; nu < m_Ndim; ++nu) {
184  if (nu == mu) continue;
185  c2 = 0.0;
186 
187  for (int rho = 0; rho < m_Ndim; ++rho) {
188  if ((rho != mu) && (rho != nu)) {
189  staple(u_tmp, m_v1[index_v1(mu, nu, rho)],
190  m_v1[index_v1(rho, nu, mu)], mu, rho);
191  c2.addpart_ex(0, u_tmp, 0);
192  }
193  }
194 
195  c2 *= m_alpha2 / 4.0;
196  m_proj->project(m_v2[index_v2(mu, nu)], m_alpha2, c2, m_U[mu]);
197 
198  if (mu != 3) set_wk.set_boundary_wk(m_v2[index_v2(mu, nu)]);
199  }
200  }
201 }
202 
203 
204 //====================================================================
206 {
207  Field_G c3(m_Nvol, 1), u_tmp(m_Nvol, 1);
208 
209  for (int mu = 0; mu < m_Ndim; ++mu) {
210  c3 = 0.0;
211 
212  for (int nu = 0; nu < m_Ndim; ++nu) {
213  if (nu != mu) {
214  staple(u_tmp, m_v2[index_v2(mu, nu)],
215  m_v2[index_v2(nu, mu)], mu, nu);
216  c3.addpart_ex(0, u_tmp, 0);
217  }
218  }
219 
220  c3 *= m_alpha1 / 6.0;
221  m_proj->project(u_tmp, m_alpha1, c3, m_U[mu]);
222 
223  if (mu != 3) set_wk.set_boundary_wk(u_tmp);
224 
225  v.setpart_ex(mu, u_tmp, 0);
226  }
227 }
228 
229 
230 //====================================================================
232  const Field_G& u_mu, const Field_G& u_nu,
233  int mu, int nu)
234 {
235  Field_G v1(m_Nvol, 1), v2(m_Nvol, 1);
236 
237  //- upper direction
238  m_shift.backward(v1, u_mu, nu);
239  if (nu == 3) set_wk.set_boundary_wkpr(v1);
240  mult_Field_Gnn(v2, 0, u_nu, 0, v1, 0);
241 
242  m_shift.backward(v1, u_nu, mu);
243  if (mu == 3) set_wk.set_boundary_wkpr(v1);
244  mult_Field_Gnd(c, 0, v2, 0, v1, 0);
245 
246  //- lower direction
247  m_shift.backward(v2, u_nu, mu);
248  if (mu == 3) set_wk.set_boundary_wkpr(v2);
249  mult_Field_Gnn(v1, 0, u_mu, 0, v2, 0);
250  mult_Field_Gdn(v2, 0, u_nu, 0, v1, 0);
251  m_shift.forward(v1, v2, nu);
252  c.addpart_ex(0, v1, 0);
253  // if(mu!=3) c.set_boundary_zero();
254 }
255 
256 
257 //====================================================================
258 //============================================================END=====
BridgeIO vout
Definition: bridgeIO.cpp:207
void staple(Field_G &, const Field_G &, const Field_G &, int mu, int nu)
void set_boundary_wkpr(const Mat_SU_N &U)
Set the boundary spatial link at t=Nt-1 for SF bc.
Definition: field_G_SF.cpp:76
int index_v2(int mu, int nu)
Definition: smear_HYP_SF.h:89
void Register_string(const string &, const string &)
Definition: parameters.cpp:352
void mult_Field_Gdn(Field_G &w, const int ex, const Field_G &u1, const int ex1, const Field_G &u2, const int ex2)
int index_v1(int mu, int nu, int rho)
Definition: smear_HYP_SF.h:81
void general(const char *format,...)
Definition: bridgeIO.cpp:38
double m_alpha2
Definition: smear_HYP_SF.h:47
int nvol() const
Definition: field.h:101
void smear(Field_G &Usmear, const Field_G &U)
Class for parameters.
Definition: parameters.h:40
double m_alpha1
Definition: smear_HYP_SF.h:47
Field_G_SF set_wk
Definition: smear_HYP_SF.h:54
void addpart_ex(int ex, const Field &w, int exw)
Definition: field.h:162
void set_parameters(const Parameters &params)
double m_alpha3
Definition: smear_HYP_SF.h:47
int fetch_double_vector(const string &key, std::valarray< double > &val) const
Definition: parameters.cpp:158
SU(N) gauge field.
Definition: field_G.h:36
void step3(Field_G &)
void mult_Field_Gnd(Field_G &w, const int ex, const Field_G &u1, const int ex1, const Field_G &u2, const int ex2)
std::valarray< Field_G > m_v1
Definition: smear_HYP_SF.h:50
void set_boundary_wk(const Mat_SU_N &U)
Set the boundary spatial link at t=0 for SF bc.
Definition: field_G_SF.cpp:50
void mult_Field_Gnn(Field_G &w, const int ex, const Field_G &u1, const int ex1, const Field_G &u2, const int ex2)
void backward(Field &, const Field &, const int mu)
int nex() const
Definition: field.h:102
ShiftField_lex m_shift
Definition: smear_HYP_SF.h:52
void crucial(const char *format,...)
Definition: bridgeIO.cpp:26
base class for projection operator into gauge group.
Definition: projection.h:33
void set_parameters(const Parameters_Field_G_SF &params)
Set the parameter with Parameters_Field_G_SF class.
Definition: field_G_SF.cpp:268
static const std::string class_name
Definition: smear_HYP_SF.h:43
static bool Register(const std::string &realm, const creator_callback &cb)
std::valarray< Field_G > m_v2
Definition: smear_HYP_SF.h:51
void Register_double_vector(const string &, const std::valarray< double > &)
Definition: parameters.cpp:338
std::valarray< Field_G > m_U
Definition: smear_HYP_SF.h:49
void Register_double(const string &, const double)
Definition: parameters.cpp:324
base class for smearing of link variables.
Definition: smear.h:36
virtual void project(Field_G &v, double alpha, const Field_G &C, const Field_G &U)=0
projection V = P[alpha, C, U]
void setpart_ex(int ex, const Field &w, int exw)
Definition: field.h:150
int fetch_double(const string &key, double &val) const
Definition: parameters.cpp:124
string get_string(const string &key) const
Definition: parameters.cpp:85
Bridge::VerboseLevel m_vl
Definition: smear.h:39
Projection * m_proj
Definition: smear_HYP_SF.h:48
static VerboseLevel set_verbose_level(const std::string &str)
Definition: bridgeIO.cpp:191
void forward(Field &, const Field &, const int mu)