| 50 | \*---------------------------------------------------------------------------*/ |
| 51 | |
| 52 | class cloud |
| 53 | : |
| 54 | public objectRegistry |
| 55 | { |
| 56 | |
| 57 | // Private Member Functions |
| 58 | |
| 59 | //- Disallow default bitwise copy construct |
| 60 | cloud(const cloud&); |
| 61 | |
| 62 | //- Disallow default bitwise assignment |
| 63 | void operator=(const cloud&); |
| 64 | |
| 65 | |
| 66 | public: |
| 67 | |
| 68 | //- Runtime type information |
| 69 | TypeName("cloud"); |
| 70 | |
| 71 | //- The prefix to local: %lagrangian |
| 72 | static const word prefix; |
| 73 | |
| 74 | //- The default cloud name: %defaultCloud |
| 75 | static word defaultName; |
| 76 | |
| 77 | |
| 78 | // Constructors |
| 79 | |
| 80 | //- Construct for the given objectRegistry and named cloud instance |
| 81 | cloud(const objectRegistry&, const word& cloudName = defaultName); |
| 82 | |
| 83 | |
| 84 | //- Destructor |
| 85 | virtual ~cloud(); |
| 86 | |
| 87 | |
| 88 | // Member Functions |
| 89 | |
| 90 | // Edit |
| 91 | |
| 92 | //- Remap the cells of particles corresponding to the |
| 93 | // mesh topology change |
| 94 | virtual void autoMap(const mapPolyMesh&); |
| 95 | }; |
| 96 | |
| 97 | |
| 98 | // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // |
no outgoing calls
no test coverage detected