summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaron Kent-Dobias <jaron@kent-dobias.com>2025-04-20 00:48:07 -0300
committerJaron Kent-Dobias <jaron@kent-dobias.com>2025-04-20 00:48:07 -0300
commit90c013f8c5c8663f0f5c6aad8c01574db3e4668f (patch)
tree21edfc5577f5ef3cc338f54cdd59eefcaf9bdaf5
parenta1d16ffe59415f4f477355d21da808e43d6aa531 (diff)
downloadcode-90c013f8c5c8663f0f5c6aad8c01574db3e4668f.tar.gz
code-90c013f8c5c8663f0f5c6aad8c01574db3e4668f.tar.bz2
code-90c013f8c5c8663f0f5c6aad8c01574db3e4668f.zip
Change to convention normalizing Γ₀ by τ₀
-rw-r--r--log-fourier_integrator.cpp6
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);