From 505a6e7b376c290c81f99ba43cf5d19c9a98b421 Mon Sep 17 00:00:00 2001 From: Jaron Kent-Dobias Date: Sun, 23 Mar 2025 09:14:48 -0300 Subject: Wrote code to compute correlation functions. --- correlations.cpp | 76 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 76 insertions(+) create mode 100644 correlations.cpp diff --git a/correlations.cpp b/correlations.cpp new file mode 100644 index 0000000..0d48844 --- /dev/null +++ b/correlations.cpp @@ -0,0 +1,76 @@ +#include +#include +#include + +#include "eigen/Eigen/Dense" + +using Real = float; +using Vector = Eigen::Matrix; + +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; + + int opt; + + while ((opt = getopt(argc, argv, "N:E:t:w:0:T:")) != -1) { + switch (opt) { + case 'N': + N = (unsigned)atof(optarg); + break; + case 'E': + E = atof(optarg); + break; + case 't': + Δt = atof(optarg); + break; + case 'w': + Δw = atof(optarg); + break; + case '0': + T0 = atof(optarg); + break; + case 'T': + T = atof(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); + + 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(x0.data()), N * sizeof(float)); + + file.seekg((i0 + 1) * sizeof(float) * N); + + for (Real t = 0; t <= T; t += Δw) { + if (file.peek() == EOF) { + break; + } + + Vector x(N); + file.read(reinterpret_cast(x.data()), N * sizeof(float)); + + std::cout << t << "\t" << x0.dot(x) / N << std::endl; + } + + + return 0; +} -- cgit v1.2.3-70-g09d2