Go to the documentation of this file.
37 #ifndef InflowBoundaryModel_H
38 #define InflowBoundaryModel_H
53 template<
class CloudType>
54 class InflowBoundaryModel
134 virtual void inflow() = 0;
144 #define makeInflowBoundaryModel(CloudType) \
146 defineNamedTemplateTypeNameAndDebug(InflowBoundaryModel<CloudType>, 0); \
148 defineTemplateRunTimeSelectionTable \
150 InflowBoundaryModel<CloudType>, \
155 #define makeInflowBoundaryModelType(SS, CloudType) \
157 defineNamedTemplateTypeNameAndDebug(SS<CloudType>, 0); \
159 InflowBoundaryModel<CloudType>:: \
160 adddictionaryConstructorToTable<SS<CloudType> > \
161 add##SS##CloudType##ConstructorToTable_;
InflowBoundaryModel(CloudType &owner)
Construct null from owner.
const dictionary & coeffDict() const
Return the coefficients dictionary.
A class for handling words, derived from string.
virtual ~InflowBoundaryModel()
Destructor.
const CloudType & owner() const
Return const access the owner cloud object.
TypeName("InflowBoundaryModel")
Runtime type information.
const dictionary & dict() const
Return the owner cloud dictionary.
const dictionary coeffDict_
The coefficients dictionary.
static autoPtr< InflowBoundaryModel< CloudType > > New(const dictionary &dict, CloudType &owner)
Selector.
Templated base class for dsmc cloud.
A list of keyword definitions, which are a keyword followed by any number of values (e....
declareRunTimeSelectionTable(autoPtr, InflowBoundaryModel, dictionary,(const dictionary &dict, CloudType &owner),(dict, owner))
Declare runtime constructor selection table.
An auto-pointer similar to the STL auto_ptr but with automatic casting to a reference to the type and...
virtual void inflow()=0
Introduce particles.
Macros to ease declaration of run-time selection tables.
const dictionary & dict_
The cloud dictionary.
Class containing mesh-to-mesh mapping information after a change in polyMesh topology.
virtual void autoMap(const mapPolyMesh &)
Remap the particles to the correct cells following mesh change.
fileName::Type type(const fileName &)
Return the file type: DIRECTORY or FILE.
Templated inflow boundary model class.