From bba5b9dfea8a381f542a72aaf53814da57f5c3ad Mon Sep 17 00:00:00 2001 From: Niklas Schnierstein <schni@draco01.mpcdf.mpg.de> Date: Mon, 27 Jan 2020 09:56:03 +0100 Subject: [PATCH] got rid of factor in tau calc --- cpp/full_code/ornstein_uhlenbeck_process.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cpp/full_code/ornstein_uhlenbeck_process.hpp b/cpp/full_code/ornstein_uhlenbeck_process.hpp index d122677b..2d264121 100644 --- a/cpp/full_code/ornstein_uhlenbeck_process.hpp +++ b/cpp/full_code/ornstein_uhlenbeck_process.hpp @@ -52,10 +52,10 @@ class ornstein_uhlenbeck_process{ inline double gamma(double kabs) { - //return this->kolmogorov_constant*sqrt(this->kolmogorov_constant/ - // this->ou_energy_amplitude); - return 1./10.*pow(kabs,2./3.)*this->kolmogorov_constant*sqrt(this->kolmogorov_constant/ - this->ou_energy_amplitude); //TODO take out 10 + return this->kolmogorov_constant*sqrt(this->kolmogorov_constant/ + this->ou_energy_amplitude); + //return 1./10.*pow(kabs,2./3.)*this->kolmogorov_constant*sqrt(this->kolmogorov_constant/ + // this->ou_energy_amplitude); //TODO take out 10 } -- GitLab