fixed writing out entries in advective bc
[OpenFOAM-1.6-ext.git] / tutorials / incompressible / icoDyMFoam / movingConeMotion / setMotionMovingCone / createFields.H
blobf5c9cf2258c1d134b91081be1e13d7740bb7986b
1     tetPolyMesh tetMesh(mesh);
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     );