repo.or.cz
/
OpenFOAM-1.6-ext.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fixed writing out entries in advective bc
[OpenFOAM-1.6-ext.git]
/
tutorials
/
incompressible
/
icoDyMFoam
/
movingConeMotion
/
setMotionMovingCone
/
createFields.H
blob
f5c9cf2258c1d134b91081be1e13d7740bb7986b
1
tetPolyMesh tetMesh(mesh);
2
3
Info<< "Creating field motionGamma\n" << endl;
4
elementScalarField motionGamma
5
(
6
IOobject
7
(
8
"motionGamma",
9
runTime.timeName(),
10
mesh,
11
IOobject::NO_READ,
12
IOobject::NO_WRITE
13
),
14
tetMesh,
15
dimensionedScalar("1.0", dimless, 1.0)
16
);