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
BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git]
/
applications
/
solvers
/
DNS
/
dnsFoam
/
createFields.H
blob
6c1bb42929f735ff76ef1cde36455aec48255ff9
1
Info<< "Reading field p\n" << endl;
2
volScalarField p
3
(
4
IOobject
5
(
6
"p",
7
runTime.timeName(),
8
mesh,
9
IOobject::MUST_READ,
10
IOobject::AUTO_WRITE
11
),
12
mesh
13
);
14
15
Info<< "Reading field U\n" << endl;
16
volVectorField U
17
(
18
IOobject
19
(
20
"U",
21
runTime.timeName(),
22
mesh,
23
IOobject::MUST_READ,
24
IOobject::AUTO_WRITE
25
),
26
mesh
27
);
28
29
#include "createPhi.H"