/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011-2013 OpenFOAM Foundation Copyright (C) 2021 OpenCFD Ltd. ------------------------------------------------------------------------------- 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::pointMesh Description Mesh representing a set of points created from polyMesh. \*---------------------------------------------------------------------------*/ #ifndef pointMesh_H #define pointMesh_H #include "GeoMesh.H" #include "MeshObject.H" #include "polyMesh.H" #include "pointBoundaryMesh.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // namespace Foam { /*---------------------------------------------------------------------------*\ Class pointMesh Declaration \*---------------------------------------------------------------------------*/ class pointMesh : public MeshObject, public GeoMesh { // Permanent Data //- Boundary mesh pointBoundaryMesh boundary_; // Private Member Functions //- Map all fields void mapFields(const mapPolyMesh& mpm); //- No copy construct pointMesh(const pointMesh&) = delete; //- No copy assignment void operator=(const pointMesh&) = delete; public: // Declare name of the class and its debug switch ClassName("pointMesh"); typedef pointMesh Mesh; typedef pointBoundaryMesh BoundaryMesh; // Constructors //- Construct from polyMesh explicit pointMesh(const polyMesh& pMesh); //- Destructor ~pointMesh() = default; // Member Functions //- Return size. Number of points static label size(const Mesh& mesh) { return mesh.GeoMesh::mesh_.nPoints(); } //- Return size. Number of points label size() const { return size(*this); } //- Return reference to boundary mesh const pointBoundaryMesh& boundary() const { return boundary_; } //- Return parallel info const globalMeshData& globalData() const { return GeoMesh::mesh_.globalData(); } //- Return database. For now is its polyMesh. const objectRegistry& thisDb() const { return GeoMesh::mesh_.thisDb(); } //- Return Time from polyMesh. const Time& time() const { return GeoMesh::mesh_.time(); } // Mesh motion //- Move points bool movePoints(); //- Update the mesh corresponding to given map void updateMesh(const mapPolyMesh& mpm); // Member Operators bool operator!=(const pointMesh& pm) const { return &pm != this; } bool operator==(const pointMesh& pm) const { return &pm == this; } }; // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // } // End namespace Foam // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #endif // ************************************************************************* //