ENH: meshRefinement.C: no need to dump cell centres anymore with ParaFoam handling polys

This commit is contained in:
mattijs 2012-04-10 12:29:42 +01:00
parent 15911a90c0
commit ccb510e6ff

View File

@ -2216,28 +2216,6 @@ void Foam::meshRefinement::dumpRefinementLevel() const
pointRefLevel.write();
}
// Dump cell centres
{
for (direction i=0; i<vector::nComponents; i++)
{
volScalarField cci
(
IOobject
(
"cc" + word(vector::componentNames[i]),
mesh_.time().timeName(),
mesh_,
IOobject::NO_READ,
IOobject::NO_WRITE,
false
),
mesh_.C().component(i)
);
cci.write();
}
}
}