diff options
author | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2025-04-20 00:48:07 -0300 |
---|---|---|
committer | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2025-04-20 00:48:07 -0300 |
commit | 90c013f8c5c8663f0f5c6aad8c01574db3e4668f (patch) | |
tree | 21edfc5577f5ef3cc338f54cdd59eefcaf9bdaf5 | |
parent | a1d16ffe59415f4f477355d21da808e43d6aa531 (diff) | |
download | code-90c013f8c5c8663f0f5c6aad8c01574db3e4668f.tar.gz code-90c013f8c5c8663f0f5c6aad8c01574db3e4668f.tar.bz2 code-90c013f8c5c8663f0f5c6aad8c01574db3e4668f.zip |
Change to convention normalizing Γ₀ by τ₀
-rw-r--r-- | log-fourier_integrator.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/log-fourier_integrator.cpp b/log-fourier_integrator.cpp index fb8664b..51f5326 100644 --- a/log-fourier_integrator.cpp +++ b/log-fourier_integrator.cpp @@ -61,11 +61,13 @@ int main(int argc, char* argv[]) { LogarithmicFourierTransform fft(N, k, Δτ, 4); - Real Γ₀ = 1.0; - Real μ = Γ₀; + Real Γ₀ = 1.0 + τ₀; + Real μ = 1.0; +/* Real μ = Γ₀; if (τ₀ > 0) { μ = (sqrt(1+4*Γ₀*τ₀)-1)/(2*τ₀); } +*/ std::vector<Real> Cₜ₋₁(N); std::vector<Real> Rₜ₋₁(N); |