From 4999894d546b8b91092cddde6b373b66184ec9bb Mon Sep 17 00:00:00 2001 From: Jaron Kent-Dobias Date: Wed, 26 Mar 2025 17:25:54 -0300 Subject: Changed correlations processing to make it easier --- correlations.cpp | 2 +- process_correlations.sh | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100755 process_correlations.sh diff --git a/correlations.cpp b/correlations.cpp index ef0222e..94d8b74 100644 --- a/correlations.cpp +++ b/correlations.cpp @@ -27,7 +27,7 @@ int main(int argc, char* argv[]) { E = atof(optarg); break; case 't': - Δt = atof(optarg); + Δt = pow(10, -atof(optarg)); break; case 'w': Δw = atof(optarg); diff --git a/process_correlations.sh b/process_correlations.sh new file mode 100755 index 0000000..0fe006e --- /dev/null +++ b/process_correlations.sh @@ -0,0 +1,3 @@ +#!/bin/bash + +for T0 in 1 10 100 1000 10000; do for file in $(ls *.dat); do ../code/correlations -N $(echo $file | cut -d_ -f1) -E $(echo $file | cut -d_ -f2) -T 100 -0 0 -t $(echo $file | cut -d_ -f3) -w $(echo $file | cut -d_ -f4) -i $(echo $file | cut -d_ -f5 | cut -d. -f1); done; done -- cgit v1.2.3-70-g09d2