Skip to content
Snippets Groups Projects
Commit bba5b9df authored by Niklas Schnierstein's avatar Niklas Schnierstein Committed by Cristian Lalescu
Browse files

got rid of factor in tau calc

parent 91cfedad
No related branches found
No related tags found
No related merge requests found
......@@ -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
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment