summaryrefslogtreecommitdiff
path: root/get_energy.cpp
diff options
context:
space:
mode:
authorJaron Kent-Dobias <jaron@kent-dobias.com>2025-04-04 16:31:11 -0300
committerJaron Kent-Dobias <jaron@kent-dobias.com>2025-04-04 16:31:11 -0300
commit61a2a8aaf7a4c02f75ac85e42841285aba7ef5a1 (patch)
tree2131f41358582b2fb21cf49d3b95a522f78ea18a /get_energy.cpp
parent82c348698ccaa41b2f455ba017113cab03590016 (diff)
downloadcode-61a2a8aaf7a4c02f75ac85e42841285aba7ef5a1.tar.gz
code-61a2a8aaf7a4c02f75ac85e42841285aba7ef5a1.tar.bz2
code-61a2a8aaf7a4c02f75ac85e42841285aba7ef5a1.zip
Adopted new scaling of Γ₀ to keep z and y moderate
Diffstat (limited to 'get_energy.cpp')
-rw-r--r--get_energy.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/get_energy.cpp b/get_energy.cpp
index b6e835f..6e14d9b 100644
--- a/get_energy.cpp
+++ b/get_energy.cpp
@@ -75,7 +75,7 @@ int main(int argc, char* argv[]) {
std::vector<Complex> Ct = fft.fourier(C);
std::vector<Complex> Rt = fft.fourier(R);
- Real z = estimateZ(fft, C, Ct, R, Rt, p, s, λ, y);
+ Real z = estimateZ(fft, C, Ct, R, Rt, p, s, λ, τ₀, y);
std::cout << y << " " << e << " " << Ct[0].real() << " " << z << std::endl;
}