mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
BUG: function objects - updated writeFileHeader for some objects - mantis #1193
This commit is contained in:
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user