1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
#include <getopt.h>
#include <iostream>
#include <chrono>
#define WOLFF_USE_FINITE_STATES
#define WOLFF_FINITE_STATES_N WOLFF_POTTSQ
#include <wolff_models/potts.hpp>
#include <wolff_models/symmetric.hpp>
#include <wolff.hpp>
#include "simple_measurement.hpp"
using namespace wolff;
int main(int argc, char *argv[]) {
// set defaults
unsigned N = (unsigned)1e4;
unsigned D = 2;
unsigned L = 128;
double T = 2.26918531421;
vector_t<WOLFF_POTTSQ, double> H;
H.fill(0.0);
unsigned Hi = 0;
int opt;
// take command line arguments
while ((opt = getopt(argc, argv, "N:D:L:T:H:")) != -1) {
switch (opt) {
case 'N': // number of steps
N = (unsigned)atof(optarg);
break;
case 'D': // dimension
D = atoi(optarg);
break;
case 'L': // linear size
L = atoi(optarg);
break;
case 'T': // temperature
T = atof(optarg);
break;
case 'H': // external field
H[Hi] = atof(optarg);
Hi++;
break;
default:
exit(EXIT_FAILURE);
}
}
// define the spin-spin coupling
std::function <double(const potts_t<WOLFF_POTTSQ>&, const potts_t<WOLFF_POTTSQ>&)> Z = [] (const potts_t<WOLFF_POTTSQ>& s1, const potts_t<WOLFF_POTTSQ>& s2) -> double {
if (s1.x == s2.x) {
return 1.0;
} else {
return 0.0;
}
};
// define the spin-field coupling
std::function <double(const potts_t<WOLFF_POTTSQ>&)> B = [=] (const potts_t<WOLFF_POTTSQ>& s) -> double {
return H[s.x];
};
// initialize the lattice
graph<> G(D, L);
// initialize the system
wolff::system<symmetric_t<WOLFF_POTTSQ>, potts_t<WOLFF_POTTSQ>, graph<>> S(G, T, Z, B);
// initialize the random number generator
auto seed = std::chrono::high_resolution_clock::now().time_since_epoch().count();
std::mt19937 rng(seed);
// define function that generates self-inverse rotations
std::function <symmetric_t<WOLFF_POTTSQ>(std::mt19937&, const wolff::system<symmetric_t<WOLFF_POTTSQ>, potts_t<WOLFF_POTTSQ>, graph<>>&, const graph<>::vertex&)> gen_r = [] (std::mt19937& r, const wolff::system<symmetric_t<WOLFF_POTTSQ>, potts_t<WOLFF_POTTSQ>, graph<>>& S, const graph<>::vertex& v) -> symmetric_t<WOLFF_POTTSQ> {
symmetric_t<WOLFF_POTTSQ> rot;
std::uniform_int_distribution<unsigned> dist(0, WOLFF_POTTSQ - 2);
unsigned j = dist(r);
unsigned swap_v;
if (j < S.s[v.ind].x) {
swap_v = j;
} else {
swap_v = j + 1;
}
rot[S.s[v.ind].x] = swap_v;
rot[swap_v] = S.s[v.ind].x;
return rot;
};
// initailze the measurement object
simple_measurement A(S);
// run wolff N times
S.run_wolff(N, gen_r, A, rng);
// print the result of our measurements
std::cout << "Wolff complete!\nThe average energy per site was " << A.avgE() / S.nv
<< ".\nThe average magnetization per site was " << A.avgM() / S.nv
<< ".\nThe average cluster size per site was " << A.avgC() / S.nv << ".\n";
// exit
return 0;
}
|