mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: Updated function object reading and output messages
This commit is contained in:
@ -264,9 +264,6 @@ bool Foam::functionObjects::wallBoundedStreamLine::read(const dictionary& dict)
|
|||||||
{
|
{
|
||||||
if (streamLineBase::read(dict))
|
if (streamLineBase::read(dict))
|
||||||
{
|
{
|
||||||
Info<< type() << " " << name() << ":" << nl;
|
|
||||||
|
|
||||||
|
|
||||||
// Make sure that the mesh is trackable
|
// Make sure that the mesh is trackable
|
||||||
if (debug)
|
if (debug)
|
||||||
{
|
{
|
||||||
|
|||||||
@ -232,10 +232,11 @@ Foam::functionObjects::forceCoeffs::forceCoeffs
|
|||||||
(
|
(
|
||||||
const word& name,
|
const word& name,
|
||||||
const Time& runTime,
|
const Time& runTime,
|
||||||
const dictionary& dict
|
const dictionary& dict,
|
||||||
|
const bool readFields
|
||||||
)
|
)
|
||||||
:
|
:
|
||||||
forces(name, runTime, dict),
|
forces(name, runTime, dict, false),
|
||||||
magUInf_(Zero),
|
magUInf_(Zero),
|
||||||
lRef_(Zero),
|
lRef_(Zero),
|
||||||
Aref_(Zero),
|
Aref_(Zero),
|
||||||
@ -247,9 +248,12 @@ Foam::functionObjects::forceCoeffs::forceCoeffs
|
|||||||
CmPitchBinFilePtr_(),
|
CmPitchBinFilePtr_(),
|
||||||
CmYawBinFilePtr_()
|
CmYawBinFilePtr_()
|
||||||
{
|
{
|
||||||
|
if (readFields)
|
||||||
|
{
|
||||||
read(dict);
|
read(dict);
|
||||||
setCoordinateSystem(dict, "liftDir", "dragDir");
|
setCoordinateSystem(dict, "liftDir", "dragDir");
|
||||||
Info<< endl;
|
Info<< endl;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -268,7 +268,8 @@ public:
|
|||||||
(
|
(
|
||||||
const word& name,
|
const word& name,
|
||||||
const Time& runTime,
|
const Time& runTime,
|
||||||
const dictionary&
|
const dictionary&,
|
||||||
|
const bool readFields = true
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user