Bridge++  Ver. 1.2.x
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
action_F_Standard_lex.cpp
Go to the documentation of this file.
1 
14 #include "action_F_Standard_lex.h"
15 
16 const std::string Action_F_Standard_lex::class_name = "Action_F_Standard_lex";
17 
18 //====================================================================
20 {
22 
24 }
25 
26 
27 //====================================================================
29 {
30  int Nc = CommonParameters::Nc();
31  int Nvol = CommonParameters::Nvol();
32  int Ndim = CommonParameters::Ndim();
33  int NinG = 2 * Nc * Nc;
34 
35  vout.detailed(m_vl, "%s:\n", class_name.c_str());
36 
37  m_force.reset(NinG, Nvol, Ndim);
38 
39  // link variable update flag
40  m_status_linkv = 0;
41 }
42 
43 
44 //====================================================================
46 {
47  m_U = U;
48 
49  m_fopr->set_config(U);
51 }
52 
53 
54 //====================================================================
56 {
57  int Nvol = CommonParameters::Nvol();
58  int Ndim = CommonParameters::Ndim();
59 
60  int NinF = m_fopr->field_nin();
61  int NvolF = m_fopr->field_nvol();
62  int NexF = m_fopr->field_nex();
63  int size_psf = NinF * NvolF * NexF * CommonParameters::NPE();
64 
65  assert(NvolF == Nvol);
66  m_psf.reset(NinF, NvolF, NexF);
67 
68  vout.general(m_vl, " %s: %s\n", class_name.c_str(), m_label.c_str());
69 
70  Field xi(NinF, NvolF, NexF);
71  rand->gauss_lex_global(xi);
72 
74  m_fopr->set_mode("Ddag");
75 
76  m_psf = m_fopr->mult(xi);
77 
78  double xi2 = xi.norm();
79  double H_psf = xi2 * xi2;
80 
81  vout.general(m_vl, " H_Fstandard = %18.8f\n", H_psf);
82  vout.general(m_vl, " H_F/dof = %18.8f\n", H_psf / size_psf);
83 
84  return H_psf;
85 }
86 
87 
88 //====================================================================
90 {
91  int Nvol = CommonParameters::Nvol();
92  int Ndim = CommonParameters::Ndim();
93 
94  int NinF = m_fopr->field_nin();
95  int NvolF = m_fopr->field_nvol();
96  int NexF = m_fopr->field_nex();
97  int size_psf = NinF * NvolF * NexF * CommonParameters::NPE();
98 
99  Field v1(NinF, NvolF, NexF);
100 
101  vout.detailed(m_vl, " %s: %s\n", class_name.c_str(), m_label.c_str());
102 
103  int Nconv;
104  double diff;
105 
107  m_fprop_H->invert_DdagD(v1, m_psf, Nconv, diff);
108 
109  vout.general(m_vl, " Fprop_H: %6d %18.15e\n", Nconv, diff);
110 
111  double H_psf = v1 * m_psf;
112 
113  vout.general(m_vl, " H_Fstandard = %18.8f\n", H_psf);
114  vout.general(m_vl, " H_F/dof = %18.8f\n", H_psf / size_psf);
115 
116  return H_psf;
117 }
118 
119 
120 //====================================================================
122 {
123  if (m_status_linkv == 0) {
124  int Nin = m_U->nin();
125  int Nvol = m_U->nvol();
126  int Nex = m_U->nex();
127  int Nc = CommonParameters::Nc();
128  int Ndim = CommonParameters::Ndim();
129 
130  int NinF = m_fopr->field_nin();
131  int NvolF = m_fopr->field_nvol();
132  int NexF = m_fopr->field_nex();
133  Field eta(NinF, NvolF, NexF);
134 
135  vout.detailed(m_vl, " %s: %s\n", class_name.c_str(), m_label.c_str());
136 
137  int Nconv;
138  double diff;
139 
141  m_fprop_MD->invert_DdagD(eta, m_psf, Nconv, diff);
142 
143  vout.detailed(m_vl, " Fprop_MD: %6d %18.15e\n", Nconv, diff);
144 
146 
147  Field force(Nin, Nvol, Nex);
148  force = m_fopr_force->force_core(eta);
149 
150  m_force = force;
151  ++m_status_linkv;
152 
153  double Fave, Fmax, Fdev;
154  m_force.stat(Fave, Fmax, Fdev);
155  vout.general(m_vl,
156  " Fstandard_ave = %12.6f Fstandard_max = %12.6f Fstandard_dev = %12.6f\n",
157  Fave, Fmax, Fdev);
158 
159  return m_force;
160  } else {
161  vout.general(m_vl, " %s returns previous force.\n", class_name.c_str());
162  return m_force;
163  }
164 }
165 
166 
167 //====================================================================
168 //============================================================END=====
BridgeIO vout
Definition: bridgeIO.cpp:207
void set_config(Field *U)
setting pointer to the gauge configuration.
void detailed(const char *format,...)
Definition: bridgeIO.cpp:50
virtual void set_config(Field *)=0
virtual const Field mult(const Field &)=0
multiplies fermion operator to a given field and returns the resultant field.
void general(const char *format,...)
Definition: bridgeIO.cpp:38
virtual void set_config(Field *)=0
setting pointer to the gauge configuration.
Container of Field-type object.
Definition: field.h:37
virtual void set_config(Field *)=0
double calcH()
calculate Hamiltonian of this action term.
double langevin(RandomNumbers *)
Langevis step.
int nvol() const
Definition: field.h:101
Class for parameters.
Definition: parameters.h:40
virtual void gauss_lex_global(Field &)
gaussian random number defined on global lattice.
virtual int field_nin()=0
returns the on-site d.o.f. for which the fermion operator is defined.
void set_parameter_verboselevel(const Bridge::VerboseLevel vl)
Definition: action.h:46
int nin() const
Definition: field.h:100
virtual void invert_DdagD(Field &, const Field &, int &, double &)=0
void reset(const int Nin, const int Nvol, const int Nex, const element_type cmpl=COMPLEX)
Definition: field.h:82
double norm() const
Definition: field.h:210
virtual int field_nex()=0
returns the external d.o.f. for which the fermion operator is defined.
int nex() const
Definition: field.h:102
virtual void force_core(Field &, const Field &)
Definition: force.cpp:58
Bridge::VerboseLevel get_VerboseLevel() const
Definition: parameters.cpp:116
Bridge::VerboseLevel m_vl
Definition: action.h:64
Base class of random number generators.
Definition: randomNumbers.h:40
Bridge::VerboseLevel vl
Definition: checker.cpp:18
VerboseLevel
Definition: bridgeIO.h:25
virtual void set_mode(std::string mode)
setting the mode of multiplication if necessary. Default implementation here is just to avoid irrelev...
Definition: fopr.h:75
void stat(double &Fave, double &Fmax, double &Fdev) const
determines the statistics of the field. average, maximum value, and deviation is determined over glob...
Definition: field.cpp:544
const Field force()
returns force for molcular dynamical update of conjugate momenta.
virtual int field_nvol()=0
returns the volume for which the fermion operator is defined.
static const std::string class_name
static int NPE()