/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | Copyright (C) 2015-2016 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 "refinementHistoryConstraint.H" #include "addToRunTimeSelectionTable.H" #include "syncTools.H" #include "refinementHistory.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // namespace Foam { defineTypeName(refinementHistoryConstraint); addToRunTimeSelectionTable ( decompositionConstraint, refinementHistoryConstraint, dictionary ); } // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // Foam::refinementHistoryConstraint::refinementHistoryConstraint ( const dictionary& constraintsDict, const word& modelType ) : decompositionConstraint(constraintsDict, typeName) { if (decompositionConstraint::debug) { Info<< type() << " : setting constraints to preserve refinement history" << endl; } } Foam::refinementHistoryConstraint::refinementHistoryConstraint() : decompositionConstraint(dictionary(), typeName) { if (decompositionConstraint::debug) { Info<< type() << " : setting constraints to refinement history" << endl; } } // * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * * // void Foam::refinementHistoryConstraint::add ( const polyMesh& mesh, boolList& blockedFace, PtrList& specifiedProcessorFaces, labelList& specifiedProcessor, List& explicitConnections ) const { autoPtr storagePtr; refinementHistory const* refPtr = NULL; if (mesh.foundObject("refinementHistory")) { if (decompositionConstraint::debug) { Info<< type() << " : found refinementHistory" << endl; } refPtr = &mesh.lookupObject("refinementHistory"); } else { if (decompositionConstraint::debug) { Info<< type() << " : reading refinementHistory from time " << mesh.facesInstance() << endl; } storagePtr.reset ( new refinementHistory ( IOobject ( "refinementHistory", mesh.facesInstance(), polyMesh::meshSubDir, mesh, IOobject::READ_IF_PRESENT, IOobject::NO_WRITE ), mesh.nCells() ) ); } const refinementHistory& history = ( storagePtr.valid() ? storagePtr() : *refPtr ); if (history.active()) { // refinementHistory itself implements decompositionConstraint history.add ( blockedFace, specifiedProcessorFaces, specifiedProcessor, explicitConnections ); } } void Foam::refinementHistoryConstraint::apply ( const polyMesh& mesh, const boolList& blockedFace, const PtrList& specifiedProcessorFaces, const labelList& specifiedProcessor, const List& explicitConnections, labelList& decomposition ) const { autoPtr storagePtr; refinementHistory const* refPtr = NULL; if (mesh.foundObject("refinementHistory")) { //if (decompositionConstraint::debug) //{ // Info<< type() << " : found refinementHistory" << endl; //} refPtr = &mesh.lookupObject("refinementHistory"); } else { //if (decompositionConstraint::debug) //{ // Info<< type() << " : reading refinementHistory from time " // << mesh.facesInstance() << endl; //} storagePtr.reset ( new refinementHistory ( IOobject ( "refinementHistory", mesh.facesInstance(), polyMesh::meshSubDir, mesh, IOobject::READ_IF_PRESENT, IOobject::NO_WRITE ), mesh.nCells() ) ); } const refinementHistory& history = ( storagePtr.valid() ? storagePtr() : *refPtr ); if (history.active()) { // refinementHistory itself implements decompositionConstraint history.apply ( blockedFace, specifiedProcessorFaces, specifiedProcessor, explicitConnections, decomposition ); } } // ************************************************************************* //