ParcelCloud.H
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration | Website: https://openfoam.org
5  \\ / A nd | Copyright (C) 2020-2022 OpenFOAM Foundation
6  \\/ M anipulation |
7 -------------------------------------------------------------------------------
8 License
9  This file is part of OpenFOAM.
10 
11  OpenFOAM is free software: you can redistribute it and/or modify it
12  under the terms of the GNU General Public License as published by
13  the Free Software Foundation, either version 3 of the License, or
14  (at your option) any later version.
15 
16  OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
17  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18  FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
19  for more details.
20 
21  You should have received a copy of the GNU General Public License
22  along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
23 
24 Class
25  Foam::ParcelCloud
26 
27 Description
28  Outermost template for parcel clouds. Adds the parcelCloud virtualisation
29  layer and forwards the methods required by that layer.
30 
31 \*---------------------------------------------------------------------------*/
32 
33 #ifndef ParcelCloud_H
34 #define ParcelCloud_H
35 
36 #include "parcelCloud.H"
37 
38 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
39 
40 namespace Foam
41 {
42 
43 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
44 
45 template<class CloudType>
46 class ParcelCloud
47 :
48  public CloudType,
49  virtual public parcelCloud
50 {
51 public:
52 
53  // Constructors
54 
55  //- Inherit base constructors
57 
58 
59  // Member Functions
60 
61  // Mesh changes
62 
63  //- Call this before a topology change. Stores the particles global
64  // positions in the database for use during mapping.
65  virtual void storeGlobalPositions()
66  {
68  }
69 
70  //- Update topology using the given map
71  virtual void topoChange(const polyTopoChangeMap& map)
72  {
74  }
75 
76  //- Update from another mesh using the given map
77  virtual void mapMesh(const polyMeshMap& map)
78  {
79  CloudType::mapMesh(map);
80  }
81 
82  //- Redistribute or update using the given distribution map
83  virtual void distribute(const polyDistributionMap& map)
84  {
86  }
87 
88 
89  // Evolution
90 
91  //- Evolve the cloud
92  virtual void evolve()
93  {
95  }
96 };
97 
98 
99 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
100 
101 } // End namespace Foam
102 
103 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
104 
105 #endif
106 
107 // ************************************************************************* //
void storeGlobalPositions() const
Call this before a topology change. Stores the particles global.
Definition: Cloud.C:677
Templated base class for dsmc cloud.
Definition: DSMCCloud.H:79
virtual void topoChange(const polyTopoChangeMap &)
Update topology using the given map.
Definition: DSMCCloud.C:1084
virtual void distribute(const polyDistributionMap &)
Redistribute or update using the given distribution map.
Definition: DSMCCloud.C:1112
virtual void mapMesh(const polyMeshMap &)
Update from another mesh using the given map.
Definition: DSMCCloud.C:1098
void evolve()
Evolve the cloud (move, collide)
Definition: DSMCCloud.C:940
Outermost template for parcel clouds. Adds the parcelCloud virtualisation layer and forwards the meth...
Definition: ParcelCloud.H:49
virtual void evolve()
Evolve the cloud.
Definition: ParcelCloud.H:91
virtual void storeGlobalPositions()
Call this before a topology change. Stores the particles global.
Definition: ParcelCloud.H:64
virtual void topoChange(const polyTopoChangeMap &map)
Update topology using the given map.
Definition: ParcelCloud.H:70
virtual void mapMesh(const polyMeshMap &map)
Update from another mesh using the given map.
Definition: ParcelCloud.H:76
virtual void distribute(const polyDistributionMap &map)
Redistribute or update using the given distribution map.
Definition: ParcelCloud.H:82
Virtual abstract base class for parcel clouds. As parcelCloudBase but with additional virtualisation ...
Definition: parcelCloud.H:57
Class containing mesh-to-mesh mapping information after a mesh distribution where we send parts of me...
Class containing mesh-to-mesh mapping information.
Definition: polyMeshMap.H:51
Class containing mesh-to-mesh mapping information after a change in polyMesh topology.
Namespace for OpenFOAM.
DSMCCloud< dsmcParcel > CloudType