Skip to content

Commit

Permalink
Added foamFile test-files. Small fixes in docs.
Browse files Browse the repository at this point in the history
  • Loading branch information
Timofey Mukha committed Aug 18, 2016
1 parent 009af60 commit 9008b83
Show file tree
Hide file tree
Showing 6 changed files with 34,587 additions and 7 deletions.
14 changes: 7 additions & 7 deletions eddylicious/generators/helper_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ def delta_99(y, v):
Parameters
----------
y : ndrray
y : ndarray
The independent variable.
v : ndrray
v : ndarray
The velocity values.
Returns
Expand All @@ -70,9 +70,9 @@ def delta_star(y, v):
Parameters
----------
y : ndrray
y : ndarray
The independent variable.
v : ndrray
v : ndarray
The velocity values.
Returns
Expand All @@ -89,15 +89,15 @@ def momentum_thickness(y, v):
Parameters
----------
y : ndrray
y : ndarray
The independent variable.
v : ndrray
v : ndarray
The velocity values.
Returns
-------
float
The value of the displacement thickness.
The value of the momentum thickness.
"""
return simps(v/v[-1]*(1-v/v[-1]), x=y)
Expand Down

0 comments on commit 9008b83

Please sign in to comment.