/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org \\ / A nd | Copyright (C) 2013-2022 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 . Class Foam::findCellParticle Description Particle class that finds cells by tracking SourceFiles findCellParticle.C \*---------------------------------------------------------------------------*/ #ifndef findCellParticle_H #define findCellParticle_H #include "particle.H" #include "Cloud.H" #include "autoPtr.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // namespace Foam { class findCellParticleCloud; // Forward declaration of friend functions and operators class findCellParticle; Ostream& operator<<(Ostream&, const findCellParticle&); /*---------------------------------------------------------------------------*\ Class findCellParticle Declaration \*---------------------------------------------------------------------------*/ class findCellParticle : public particle { // Private Data //- Displacement over which to track vector displacement_; //- Passive data label data_; public: friend class Cloud; //- Class used to pass tracking data to the trackToFace function class trackingData : public particle::trackingData { labelListList& cellToData_; List>& cellToEnd_; public: // Constructors trackingData ( Cloud& cloud, labelListList& cellToData, List>& cellToEnd ) : particle::trackingData(cloud), cellToData_(cellToData), cellToEnd_(cellToEnd) {} // Member Functions labelListList& cellToData() { return cellToData_; } List>& cellToEnd() { return cellToEnd_; } }; // Constructors //- Construct from components findCellParticle ( const polyMesh& mesh, const barycentric& coordinates, const label celli, const label tetFacei, const label tetPtI, const vector& displacement, const label data ); //- Construct from a position and a cell, searching for the rest of the // required topology findCellParticle ( const polyMesh& mesh, const vector& position, const label celli, const vector& displacement, const label data ); //- Construct from Istream findCellParticle(Istream& is, bool readFields = true); //- Construct and return a clone autoPtr clone() const { return autoPtr(new findCellParticle(*this)); } //- Construct from Istream and return static autoPtr New(Istream& is) { return autoPtr(new findCellParticle(is)); } // Member Functions //- Displacement over which to track const vector& displacement() const { return displacement_; } //- Displacement over which to track vector& displacement() { return displacement_; } //- Transported label label data() const { return data_; } //- Transported label label& data() { return data_; } // Tracking //- Track all particles to their end point bool move(Cloud&, trackingData&, const scalar); //- Overridable function to handle the particle hitting a wedge void hitWedgePatch(Cloud&, trackingData&); //- Overridable function to handle the particle hitting a // symmetry plane void hitSymmetryPlanePatch(Cloud&, trackingData&); //- Overridable function to handle the particle hitting a // symmetry patch void hitSymmetryPatch(Cloud&, trackingData&); //- Overridable function to handle the particle hitting a cyclic void hitCyclicPatch(Cloud&, trackingData&); //- Overridable function to handle the particle hitting a cyclicAMI void hitCyclicAMIPatch ( const vector&, const scalar, Cloud&, trackingData& ); //- Overridable function to handle the particle hitting a //- processorPatch void hitProcessorPatch(Cloud&, trackingData&); //- Overridable function to handle the particle hitting a wallPatch void hitWallPatch(Cloud&, trackingData&); // Ostream Operator friend Ostream& operator<<(Ostream&, const findCellParticle&); }; template<> inline bool contiguous() { return true; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // } // End namespace Foam // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #endif // ************************************************************************* //