repo.or.cz
/
foam-extend-3.2.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git]
/
applications
/
utilities
/
postProcessing
/
wall
/
wallShearStress
/
createFields.H
blob
d069c4545db5789774099457c72b280146f082f5
1
Info<< "Reading field U\n" << endl;
2
volVectorField U
3
(
4
IOobject
5
(
6
"U",
7
runTime.timeName(),
8
mesh,
9
IOobject::MUST_READ,
10
IOobject::AUTO_WRITE
11
),
12
mesh
13
);
14
15
# include "createPhi.H"
16
17
singlePhaseTransportModel laminarTransport(U, phi);
18
19
autoPtr<incompressible::RASModel> RASModel
20
(
21
incompressible::RASModel::New(U, phi, laminarTransport)
22
);