/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | Copyright (C) 2018 OpenCFD Ltd. \\/ M anipulation | ------------------------------------------------------------------------------- | Copyright (C) 2011-2016 OpenFOAM Foundation ------------------------------------------------------------------------------- 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 . Class Foam::FaceCellWave Description Wave propagation of information through grid. Every iteration information goes through one layer of cells. Templated on information that is transferred. Handles parallel and cyclics and non-parallel cyclics. Note: whether to propagate depends on the return value of Type::update which returns true (i.e. propagate) if the value changes by more than a certain tolerance. This tolerance can be very strict for normal face-cell and parallel cyclics (we use a value of 0.01 just to limit propagation of small changes) but for non-parallel cyclics this tolerance can be critical and if chosen too small can lead to non-convergence. SourceFiles FaceCellWave.C \*---------------------------------------------------------------------------*/ #ifndef FaceCellWave_H #define FaceCellWave_H #include "bitSet.H" #include "DynamicList.H" #include "primitiveFieldsFwd.H" #include "labelPair.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // namespace Foam { // Forward declarations class polyMesh; class polyPatch; /*---------------------------------------------------------------------------*\ Class FaceCellWaveName Declaration \*---------------------------------------------------------------------------*/ TemplateName(FaceCellWave); /*---------------------------------------------------------------------------*\ Class FaceCellWave Declaration \*---------------------------------------------------------------------------*/ template class FaceCellWave : public FaceCellWaveName { // Private Member Functions //- No copy construct FaceCellWave(const FaceCellWave&) = delete; //- No copy assignment void operator=(const FaceCellWave&) = delete; protected: //- Information tagged with a source or destination id. // With std::pair as lightweight, moveable container. typedef std::pair taggedInfoType; // Protected Data //- Reference to mesh const polyMesh& mesh_; //- Optional boundary faces that information should travel through const labelPairList explicitConnections_; //- Information for all faces UList& allFaceInfo_; //- Information for all cells UList& allCellInfo_; //- Additional data to be passed into container TrackingData& td_; //- Has face changed bitSet changedFace_; //- Has cell changed bitSet changedCell_; //- List of changed faces DynamicList