Bugfix: clean-up
This commit is contained in:
parent
4f948a2d87
commit
183c98c718
2 changed files with 3 additions and 3 deletions
|
@ -13,7 +13,7 @@ tmp<fv::convectionScheme<scalar> > mvConvection
|
|||
label inertIndex = -1;
|
||||
volScalarField Yt("Yt", 0.0*Y[0]);
|
||||
|
||||
for (label i=0; i<Y.size(); i++)
|
||||
for (label i = 0; i < Y.size(); i++)
|
||||
{
|
||||
if (Y[i].name() != inertSpecie)
|
||||
{
|
||||
|
|
|
@ -119,12 +119,12 @@ int main(int argc, char *argv[])
|
|||
<< exit(FatalError);
|
||||
}
|
||||
|
||||
Foam::word regionName = polyMesh::defaultRegion;
|
||||
word regionName = polyMesh::defaultRegion;
|
||||
|
||||
if (args.optionReadIfPresent("region", regionName))
|
||||
{
|
||||
Info<< "Selecting region " << regionName << " for time = "
|
||||
<< runTime.timeName() << Foam::nl << Foam::endl;
|
||||
<< runTime.timeName() << nl << endl;
|
||||
}
|
||||
|
||||
// Set all times on processor meshes equal to reconstructed mesh
|
||||
|
|
Reference in a new issue