summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--correlations.cpp2
-rwxr-xr-xprocess_correlations.sh3
2 files changed, 4 insertions, 1 deletions
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