ENH: setToFaceZone: improved messages

This commit is contained in:
mattijs
2019-01-07 17:53:26 +00:00
parent a6a46d23b8
commit 7339d6427e
2 changed files with 22 additions and 5 deletions

View File

@ -3,7 +3,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) 2011-2017 OpenFOAM Foundation \\ / A nd | Copyright (C) 2011-2017 OpenFOAM Foundation
\\/ M anipulation | Copyright (C) 2018 OpenCFD Ltd. \\/ M anipulation | Copyright (C) 2018-2019 OpenCFD Ltd.
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
This file is part of OpenFOAM. This file is part of OpenFOAM.
@ -68,7 +68,14 @@ Foam::setToFaceZone::setToFaceZone
: :
topoSetSource(mesh), topoSetSource(mesh),
setName_(dict.get<word>("faceSet")) setName_(dict.get<word>("faceSet"))
{} {
if (dict.found("cellSet"))
{
IOWarningInFunction(dict)
<< "Ignoring entry 'cellSet' - maybe use setsToFaceZone instead ?"
<< endl;
}
}
Foam::setToFaceZone::setToFaceZone Foam::setToFaceZone::setToFaceZone

View File

@ -3,7 +3,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) 2011-2017 OpenFOAM Foundation \\ / A nd | Copyright (C) 2011-2017 OpenFOAM Foundation
\\/ M anipulation | Copyright (C) 2018 OpenCFD Ltd. \\/ M anipulation | Copyright (C) 2018-2019 OpenCFD Ltd.
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
This file is part of OpenFOAM. This file is part of OpenFOAM.
@ -112,8 +112,18 @@ void Foam::setsToFaceZone::applyToSet
{ {
if (verbose_) if (verbose_)
{ {
Info<< " Adding all faces from faceSet " << faceSetName_ if (flip_)
<< " ..." << endl; {
Info<< " Adding all faces from faceSet " << faceSetName_
<< "; orientation pointing into cellSet "
<< cellSetName_ << " ..." << endl;
}
else
{
Info<< " Adding all faces from faceSet " << faceSetName_
<< "; orientation pointing away from cellSet "
<< cellSetName_ << " ..." << endl;
}
} }
// Load the sets // Load the sets