|
LandauGinzburg
|
Execute the NR method and Compute sign of determinant. More...
#include "field_nicolai.hpp"
Go to the source code of this file.
Classes | |
| struct | lg_params_t |
| Structure lg_params_t. More... | |
Functions | |
| void | NicolaiConf (const lg_params_t lp) |
| Solve a Landau–Ginzburg model by NR method; Parallel computing with openmp. | |
| void | Test_SignDet (const int Li, const int num_f, const int loop) |
| Test program: computation of sign_det() in Potential; Compare signs and times, which are computed by using two forms of jacobian. | |
| int | main (int argc, char *argv[]) |
| Main function. | |
Variables | |
| const double | SOL_ID_MAXVAL = 1.0e-11 |
| Identification of scalar solutions. | |
| const double | MAX_NRERR = 1.0e-14 |
| Max error of NR iteration. | |
| const double | NR_INTERRUPTION = 1.0e9 |
| Interruption of NR iteration. | |
Execute the NR method and Compute sign of determinant.
Definition in file field_conf.cpp.
| int main | ( | int | argc, |
| char * | argv[] ) |
Main function.
Definition at line 275 of file field_conf.cpp.
| void NicolaiConf | ( | const lg_params_t | params | ) |
Solve a Landau–Ginzburg model by NR method; Parallel computing with openmp.
Definition at line 75 of file field_conf.cpp.
| void Test_SignDet | ( | const int | Li, |
| const int | num_f, | ||
| const int | loop ) |
Test program: computation of sign_det() in Potential; Compare signs and times, which are computed by using two forms of jacobian.
| Li | Physical box size, N_0=N_1, which must be even integer |
| num_f | Number of superfields |
| loop | Number of trials |
Definition at line 150 of file field_conf.cpp.
| const double MAX_NRERR = 1.0e-14 |
Max error of NR iteration.
Definition at line 25 of file field_conf.cpp.
| const double NR_INTERRUPTION = 1.0e9 |
Interruption of NR iteration.
Interrupt NR iteration if nr_err / min(nr_err) >= this parameter
Definition at line 33 of file field_conf.cpp.
| const double SOL_ID_MAXVAL = 1.0e-11 |
Identification of scalar solutions.
If the norm of difference between two Scalars < SOL_ID_MAXVAL, we regard those configurations as identical ones
Definition at line 18 of file field_conf.cpp.