Bridge++  Ver. 1.2.x
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
tensorProd.cpp
Go to the documentation of this file.
1 
10 #include "tensorProd.h"
11 #include <cassert>
12 
13 // This implementation only applies to SU(3) group and Nd=4 case.
14 #define NC 3
15 #define NC2 6
16 #define NDF 18
17 #define ND 4
18 #define NCD 12
19 #define NCD2 24
20 
21 //====================================================================
22 void tensorProd_Field_F(Field_G& u, const Field_F& v1, const Field_F& v2)
23 {
24  return tensorProd_Field_F(u, 0, v1, v2);
25 }
26 
27 
28 //====================================================================
29 void tensorProd_Field_F(Field_G& u, const int ex, const Field_F& v1, const Field_F& v2)
30 {
31  int Nvol = u.nvol();
32 
33  assert(Nvol == v1.nvol());
34  assert(Nvol == v2.nvol());
35  assert(ex < u.nex());
36  assert(v1.nex() == 1);
37  assert(v2.nex() == 1);
38 
39  double *w1 = const_cast<Field_F *>(&v1)->ptr(0);
40  double *w2 = const_cast<Field_F *>(&v2)->ptr(0);
41  double *g = u.ptr(0, 0, ex);
42 
43  for (int site = 0; site < Nvol; ++site) {
44  int iw = NCD2 * site;
45  int ig = NDF * site;
46  for (int c1 = 0; c1 < NC; ++c1) {
47  for (int c2 = 0; c2 < NC; ++c2) {
48  int ig2 = c2 * 2 + c1 * NC2 + ig;
49  g[ig2] = 0.0;
50  g[ig2 + 1] = 0.0;
51  for (int s = 0; s < ND; ++s) {
52  g[ig2] +=
53  w1[2 * c2 + s * NC2 + iw] * w2[2 * c1 + s * NC2 + iw]
54  + w1[2 * c2 + 1 + s * NC2 + iw] * w2[2 * c1 + 1 + s * NC2 + iw];
55  g[ig2 + 1] +=
56  w1[2 * c2 + s * NC2 + iw] * w2[2 * c1 + 1 + s * NC2 + iw]
57  - w1[2 * c2 + 1 + s * NC2 + iw] * w2[2 * c1 + s * NC2 + iw];
58  }
59  }
60  }
61  }
62 }
63 
64 
65 //================================================================
#define NC2
Definition: tensorProd.cpp:15
double * ptr(const int jin, const int site, const int jex)
Definition: field.h:118
int nvol() const
Definition: field.h:101
Wilson-type fermion field.
Definition: field_F.h:37
#define NCD2
Definition: tensorProd.cpp:19
SU(N) gauge field.
Definition: field_G.h:36
int nex() const
Definition: field.h:102
#define ND
Definition: tensorProd.cpp:17
void tensorProd_Field_F(Field_G &u, const Field_F &v1, const Field_F &v2)
Definition: tensorProd.cpp:22
#define NC
Definition: tensorProd.cpp:14
#define NDF
Definition: tensorProd.cpp:16