PackingModel.H File Reference
Include dependency graph for PackingModel.H:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  PackingModel< CloudType >
 Base class for packing models. More...
 

Namespaces

namespace  Foam
 Namespace for OpenFOAM.
 

Macros

#define makePackingModel(CloudType)
 
#define makePackingModelType(SS, CloudType)
 
#define makePackingModelMPPIC(CloudType)
 
#define makePackingModelTypeMPPIC(SS, CloudType)
 

Detailed Description

Original source file PackingModel.H

Definition in file PackingModel.H.

Macro Definition Documentation

◆ makePackingModel

#define makePackingModel (   CloudType)
Value:
\
typedef Foam::CloudType::kinematicCloudType kinematicCloudType; \
( \
0 \
); \
\
namespace Foam \
{ \
( \
PackingModel<kinematicCloudType>, \
dictionary \
); \
}
Templated base class for kinematic cloud.
Base class for packing models.
Definition: PackingModel.H:71
#define defineNamedTemplateTypeNameAndDebug(Type, DebugSwitch)
Define the typeName and debug information for templates.
Definition: className.H:136
Namespace for OpenFOAM.
#define defineTemplateRunTimeSelectionTable(baseType, argNames)
Define run-time selection table for template classes.

Definition at line 148 of file PackingModel.H.

◆ makePackingModelType

#define makePackingModelType (   SS,
  CloudType 
)
Value:
\
typedef Foam::CloudType::kinematicCloudType kinematicCloudType; \
(Foam::PackingModels::SS<kinematicCloudType>, 0); \
\
adddictionaryConstructorToTable \
<Foam::PackingModels::SS<kinematicCloudType>> \
add##SS##CloudType##kinematicCloudType##ConstructorToTable_;
dict add("bounds", meshBb)

Definition at line 167 of file PackingModel.H.

◆ makePackingModelMPPIC

#define makePackingModelMPPIC (   CloudType)
Value:
\
typedef Foam::CloudType::MPPICCloudType MPPICCloudType; \
( \
0 \
); \
\
namespace Foam \
{ \
( \
PackingModel<MPPICCloudType>, \
dictionary \
); \
}
Adds MPPIC modelling to kinematic clouds.
Definition: MPPICCloud.H:74

Definition at line 181 of file PackingModel.H.

◆ makePackingModelTypeMPPIC

#define makePackingModelTypeMPPIC (   SS,
  CloudType 
)
Value:
\
typedef Foam::CloudType::MPPICCloudType MPPICCloudType; \
(Foam::PackingModels::SS<MPPICCloudType>, 0); \
\
adddictionaryConstructorToTable \
<Foam::PackingModels::SS<MPPICCloudType>> \
add##SS##CloudType##MPPICCloudType##ConstructorToTable_;

Definition at line 200 of file PackingModel.H.