/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org \\ / A nd | Copyright (C) 2016-2019 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License This file is part of OpenFOAM. OpenFOAM is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. OpenFOAM is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenFOAM. If not, see . \*---------------------------------------------------------------------------*/ #include "regionFunctionObject.H" #include "objectRegistry.H" // * * * * * * * * * * * * * Protected Member Functions * * * * * * * * * * // template bool Foam::functionObjects::regionFunctionObject::foundObject ( const word& fieldName ) const { return obr_.foundObject(fieldName); } template const ObjectType& Foam::functionObjects::regionFunctionObject::lookupObject ( const word& fieldName ) const { return obr_.lookupObject(fieldName); } template ObjectType& Foam::functionObjects::regionFunctionObject::lookupObjectRef ( const word& fieldName ) { return obr_.lookupObjectRef(fieldName); } template bool Foam::functionObjects::regionFunctionObject::store ( const tmp& tfield ) { if (obr_.foundObject(tfield->name())) { ObjectType& field = obr_.lookupObjectRef(tfield->name()); // If there is a result field already registered assign to the new // result field otherwise transfer ownership of the new result field to // the object registry if (&field != &tfield()) { field = tfield; } else { obr_.objectRegistry::store(tfield.ptr()); } } else { obr_.objectRegistry::store(tfield.ptr()); } return true; } template bool Foam::functionObjects::regionFunctionObject::store ( const word& fieldName, const tmp& tfield, bool cacheable ) { if (cacheable && fieldName == tfield().name()) { WarningInFunction << "Cannot store cache-able field with the name used in the cache." << nl << " Either choose a different name or cache the field" << " and use the 'writeObjects' functionObject." << endl; return false; } if ( fieldName.size() && obr_.foundObject(fieldName) ) { ObjectType& field = obr_.lookupObjectRef(fieldName); // If there is a result field already registered assign to the new // result field otherwise transfer ownership of the new result field to // the object registry if (&field != &tfield()) { field = tfield; } else { obr_.objectRegistry::store(tfield.ptr()); } } else { if (fieldName.size() && fieldName != tfield().name()) { tfield.ref().rename(fieldName); } obr_.objectRegistry::store(tfield.ptr()); } return true; } // ************************************************************************* //