Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
TurTLE
TurTLE
Commits
bba5b9df
Commit
bba5b9df
authored
Jan 27, 2020
by
Niklas Schnierstein
Committed by
Cristian Lalescu
Feb 19, 2020
Browse files
got rid of factor in tau calc
parent
91cfedad
Changes
1
Hide whitespace changes
Inline
Side-by-side
cpp/full_code/ornstein_uhlenbeck_process.hpp
View file @
bba5b9df
...
...
@@ -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
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment