BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / src / lagrangian / dsmc / parcels / derived / dsmcParcel / dsmcParcel.H
blob90c3040f7500f3cff5cdac10ea89bd929c06e5ff
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2011 OpenFOAM Foundation
6      \\/     M anipulation  |
7 -------------------------------------------------------------------------------
8 License
9     This file is part of OpenFOAM.
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.
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.
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/>.
24 Class
25     Foam::dsmcParcel
27 Description
28     Declaration of dsmc parcel type
30 SourceFiles
31     dsmcParcel.C
33 \*---------------------------------------------------------------------------*/
35 #ifndef dsmcParcel_H
36 #define dsmcParcel_H
38 #include "particle.H"
39 #include "DsmcParcel.H"
41 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
43 namespace Foam
46     typedef DsmcParcel<particle> dsmcParcel;
47 /*---------------------------------------------------------------------------*\
48                          Class dsmcParcel Declaration
49 \*---------------------------------------------------------------------------*/
51 class dsmcParcel
53     public DsmcParcel<dsmcParcel>
56 public:
58     //- Run-time type information
59     TypeName("dsmcParcel");
62     // Constructors
64         //- Construct from components
65         dsmcParcel
66         (
67             DsmcCloud<dsmcParcel>& owner,
68             const vector& position,
69             const vector& U,
70             const scalar Ei,
71             const label cellI,
72             const label tetFaceI,
73             const label tetPtI,
74             const label typeId
75         );
77         //- Construct from Istream
78         dsmcParcel
79         (
80             const Cloud<dsmcParcel>& c,
81             Istream& is,
82             bool readFields = true
83         );
85         //- Construct and return a clone
86         autoPtr<Particle<dsmcParcel> > clone() const
87         {
88             return autoPtr<Particle<dsmcParcel> >(new dsmcParcel(*this));
89         }
92     //- Destructor
93     virtual ~dsmcParcel();
97 template<>
98 inline bool contiguous<dsmcParcel>()
100     return true;
104 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
106 } // End namespace Foam
108 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
110 #endif
112 // ************************************************************************* //