From daea5297eecb03d3c884f06ffe5c0f1b9cd0dfdb Mon Sep 17 00:00:00 2001 From: Guido Cossu Date: Fri, 8 Jul 2016 16:14:16 +0100 Subject: [PATCH] Wrote the projector in the adjoint representation algebra --- lib/qcd/utils/SUn.h | 34 ++++++++++++++++++++++++++++++++-- 1 file changed, 32 insertions(+), 2 deletions(-) diff --git a/lib/qcd/utils/SUn.h b/lib/qcd/utils/SUn.h index 048e17c4..c884ad37 100644 --- a/lib/qcd/utils/SUn.h +++ b/lib/qcd/utils/SUn.h @@ -47,6 +47,10 @@ class SU { using iSU2Matrix = iScalar > >; template using iSUnAdjointMatrix = iScalar > >; + template + using iSUnAlgebraVector = iScalar > >; + + ////////////////////////////////////////////////////////////////////////////////////////////////// // Types can be accessed as SU<2>::Matrix , SU<2>::vSUnMatrix, @@ -70,10 +74,25 @@ class SU { typedef iSUnAdjointMatrix vAMatrixF; typedef iSUnAdjointMatrix vAMatrixD; + // For the projectors to the algebra + // these should be real... + // keeping complex for consistency with the SIMD vector types + typedef iSUnAlgebraVector AlgebraVector; + typedef iSUnAlgebraVector AlgebraVectorF; + typedef iSUnAlgebraVector AlgebraVectorD; + + typedef iSUnAlgebraVector vAlgebraVector; + typedef iSUnAlgebraVector vAlgebraVectorF; + typedef iSUnAlgebraVector vAlgebraVectorD; + typedef Lattice LatticeMatrix; typedef Lattice LatticeMatrixF; typedef Lattice LatticeMatrixD; + typedef Lattice LatticeAlgebraVector; + typedef Lattice LatticeAlgebraVectorF; + typedef Lattice LatticeAlgebraVectorD; + typedef iSU2Matrix SU2Matrix; typedef iSU2Matrix SU2MatrixF; typedef iSU2Matrix SU2MatrixD; @@ -713,7 +732,7 @@ class SU { } } - static void FundamentalLieAlgebraMatrix(Vector &h, LatticeMatrix &out, + static void FundamentalLieAlgebraMatrix(LatticeAlgebraVector &h, LatticeMatrix &out, Real scale = 1.0) { GridBase *grid = out._grid; LatticeMatrix la(grid); @@ -722,11 +741,22 @@ class SU { out = zero; for (int a = 0; a < generators(); a++) { generator(a, ta); - la = Complex(0.0, h[a]) * scale * ta; + la = peekColour(h,a) * scale * ta; out += la; } } + static void projectAdjointAlgebra(LatticeAlgebraVector &h_out, LatticeMatrix &in){ + GridBase *grid = in._grid; + AMatrix iTa; + + for (int a = 0; a< generators(); a++){ + generatorAdjoint(a, iTa); + AlgebraVector tmp = real(trace(iTa * in));//*factor + pokeColour(h_out, tmp, a); + } + } + template static void HotConfiguration(GridParallelRNG &pRNG, GaugeField &out) { typedef typename GaugeField::vector_type vector_type;