blob: 94d8b7468d94f499c406488241944f7413f553d4 (
plain)
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
|
#include <getopt.h>
#include <fstream>
#include <iostream>
#include "eigen/Eigen/Dense"
using Real = float;
using Vector = Eigen::Matrix<Real, Eigen::Dynamic, 1>;
int main(int argc, char* argv[]) {
unsigned N = 10;
Real E = 0;
Real Δt = 1e-4;
Real Δw = 1e-2;
Real T0 = 0;
Real T = 100;
std::string id;
int opt;
while ((opt = getopt(argc, argv, "N:E:t:w:0:T:i:")) != -1) {
switch (opt) {
case 'N':
N = (unsigned)atof(optarg);
break;
case 'E':
E = atof(optarg);
break;
case 't':
Δt = pow(10, -atof(optarg));
break;
case 'w':
Δw = atof(optarg);
break;
case '0':
T0 = atof(optarg);
break;
case 'T':
T = atof(optarg);
break;
case 'i':
id = optarg;
break;
default:
exit(1);
}
}
std::string filebase = std::to_string(N) + "_" + std::to_string(E) + "_" + std::to_string(-std::log10(Δt)) + "_" + std::to_string(Δw) + "_" + id;
std::ifstream file(filebase + ".dat", std::ios::binary|std::ios::in|std::ios::ate);
unsigned size = file.tellg() / (N * sizeof(float)) - 1;
unsigned i0 = T0 / Δw;
if (i0 > size) {
return 0;
}
file.seekg((i0 + 1) * sizeof(float) * N);
Vector x0(N);
file.read(reinterpret_cast<char*>(x0.data()), N * sizeof(float));
file.seekg((i0 + 1) * sizeof(float) * N);
std::ofstream outfile("correlations/" + filebase + "_" + std::to_string(T0) + ".dat");
for (Real t = 0; t <= T; t += Δw) {
if (file.peek() == EOF) {
break;
}
Vector x(N);
file.read(reinterpret_cast<char*>(x.data()), N * sizeof(float));
outfile << t << "\t" << x0.dot(x) / N << std::endl;
}
return 0;
}
|