repo.or.cz
/
OpenFOAM-2.0.x.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git]
/
src
/
randomProcesses
/
fft
/
calcEk.H
blob
99cd05edb7ce09c745bdd2bf58c6db2ae6aaadbc
1
#ifndef calcEk_H
2
#define calcEk_H
3
4
#include "volFieldsFwd.H"
5
6
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
7
8
namespace Foam
9
{
10
11
class graph;
12
class Kmesh;
13
14
graph calcEk
15
(
16
const volVectorField& U,
17
const Kmesh& K
18
);
19
20
21
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
22
23
} // End namespace Foam
24
25
#endif