Useful functions
Initializing gauge fields.
Gaugefields.AbstractGaugefields_module.Initialize_Gaugefields
— FunctionInitialize_Gaugefields(NC,NDW,NN...;
condition = "cold",mpi = false,PEs=nothing,mpiinit = nothing,verbose_level = 2,randomnumber="Random")
Initialize gaugefields. 2D or 4D is supported.
Examples
If you want to have randomely distributed gauge fields (so-called "hot start") in four dimension, just do:
U = Initialize_Gaugefields(NC,Nwing,NX,NY,NZ,NT,condition = "hot")
If you want to have uniform gauge fields (so-called "cold start") in four dimension, just do:
U = Initialize_Gaugefields(NC,Nwing,NX,NY,NZ,NT,condition = "cold")
Return values:
U
: Dim dimensional vector. Here, Dim is a dimension (Dim = 2 or 4).
Keyword arguments:
condition
:cold
(cold start) orhot
(hot start). The default iscold
mpi
: Using MPI or not. The default isfalse
. If you want to use MPI, you should callusing MPI
.PEs
: Ifmpi = true
, we have to setPEs = [2,2,2,2]
, which is numbers of regions for MPI process.prod(PEs)
should be the number of total MPI processes.
MPI
Gaugefields with using MPI is not well tested.