diff options
author | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2025-04-04 16:31:11 -0300 |
---|---|---|
committer | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2025-04-04 16:31:11 -0300 |
commit | 61a2a8aaf7a4c02f75ac85e42841285aba7ef5a1 (patch) | |
tree | 2131f41358582b2fb21cf49d3b95a522f78ea18a /get_energy.cpp | |
parent | 82c348698ccaa41b2f455ba017113cab03590016 (diff) | |
download | code-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.cpp | 2 |
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; } |