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

fixed factor in time scale calc

parent a54e4ac0
No related branches found
No related tags found
No related merge requests found
...@@ -54,7 +54,7 @@ class ornstein_uhlenbeck_process{ ...@@ -54,7 +54,7 @@ class ornstein_uhlenbeck_process{
{ {
//return this->kolmogorov_constant*sqrt(this->kolmogorov_constant/ //return this->kolmogorov_constant*sqrt(this->kolmogorov_constant/
// this->ou_energy_amplitude); // this->ou_energy_amplitude);
return 10.*pow(kabs,2./3.)*this->kolmogorov_constant*sqrt(this->kolmogorov_constant/ return 1./10.*pow(kabs,2./3.)*this->kolmogorov_constant*sqrt(this->kolmogorov_constant/
this->ou_energy_amplitude); //TODO take out 10 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