BUG: function objects - updated writeFileHeader for some objects - mantis #1193

This commit is contained in:
andy
2014-02-26 13:47:33 +00:00
committed by Andrew Heather
parent 042dd8ea3f
commit 02e20513d9
5 changed files with 6 additions and 1 deletions

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | \\ / O peration |
\\ / A nd | Copyright (C) 2012-2013 OpenFOAM Foundation \\ / A nd | Copyright (C) 2012-2014 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -43,6 +43,7 @@ void Foam::cloudInfo::writeFileHeader(const label i)
writeCommented(file(), "Time"); writeCommented(file(), "Time");
writeTabbed(file(), "nParcels"); writeTabbed(file(), "nParcels");
writeTabbed(file(), "mass"); writeTabbed(file(), "mass");
file() << endl;
} }

View File

@ -47,6 +47,7 @@ void Foam::DESModelRegions::writeFileHeader(const label i)
writeCommented(file(), "Time"); writeCommented(file(), "Time");
writeTabbed(file(), "LES"); writeTabbed(file(), "LES");
writeTabbed(file(), "RAS"); writeTabbed(file(), "RAS");
file() << endl;
} }

View File

@ -48,6 +48,7 @@ void Foam::wallShearStress::writeFileHeader(const label i)
writeTabbed(file(), "patch"); writeTabbed(file(), "patch");
writeTabbed(file(), "min"); writeTabbed(file(), "min");
writeTabbed(file(), "max"); writeTabbed(file(), "max");
file() << endl;
} }

View File

@ -50,6 +50,7 @@ void Foam::yPlusLES::writeFileHeader(const label i)
writeTabbed(file(), "min"); writeTabbed(file(), "min");
writeTabbed(file(), "max"); writeTabbed(file(), "max");
writeTabbed(file(), "average"); writeTabbed(file(), "average");
file() << endl;
} }

View File

@ -51,6 +51,7 @@ void Foam::yPlusRAS::writeFileHeader(const label i)
writeTabbed(file(), "min"); writeTabbed(file(), "min");
writeTabbed(file(), "max"); writeTabbed(file(), "max");
writeTabbed(file(), "average"); writeTabbed(file(), "average");
file() << endl;
} }