Base class for packing models. More...
Public Member Functions | |
| TypeName ("packingModel") | |
| Runtime type information. More... | |
| declareRunTimeSelectionTable (autoPtr, PackingModel, dictionary,(const dictionary &dict, CloudType &owner),(dict, owner)) | |
| Declare runtime constructor selection table. More... | |
| PackingModel (CloudType &owner) | |
| Construct null from owner. More... | |
| PackingModel (const dictionary &dict, CloudType &owner, const word &type) | |
| Construct from components. More... | |
| PackingModel (const PackingModel< CloudType > &cm) | |
| Construct copy. More... | |
| virtual autoPtr< PackingModel< CloudType > > | clone () const =0 |
| Construct and return a clone. More... | |
| virtual | ~PackingModel () |
| Destructor. More... | |
| virtual vector | velocityCorrection (typename CloudType::parcelType &p, const scalar deltaT) const =0 |
| Calculate the velocity correction. More... | |
Static Public Member Functions | |
| static autoPtr< PackingModel< CloudType > > | New (const dictionary &dict, CloudType &owner) |
| Selector. More... | |
Protected Attributes | |
| autoPtr< ParticleStressModel > | particleStressModel_ |
| Protected data. More... | |
Base class for packing models.
Definition at line 58 of file MPPICCloud.H.
| PackingModel | ( | CloudType & | owner | ) |
Construct null from owner.
Definition at line 37 of file PackingModel.C.
| PackingModel | ( | const dictionary & | dict, |
| CloudType & | owner, | ||
| const word & | type | ||
| ) |
Construct from components.
Definition at line 46 of file PackingModel.C.
| PackingModel | ( | const PackingModel< CloudType > & | cm | ) |
Construct copy.
Definition at line 64 of file PackingModel.C.
|
virtual |
Destructor.
Definition at line 74 of file PackingModel.C.
| TypeName | ( | "packingModel" | ) |
Runtime type information.
| declareRunTimeSelectionTable | ( | autoPtr | , |
| PackingModel< CloudType > | , | ||
| dictionary | , | ||
| (const dictionary &dict, CloudType &owner) | , | ||
| (dict, owner) | |||
| ) |
Declare runtime constructor selection table.
|
pure virtual |
Construct and return a clone.
Implemented in Explicit< CloudType >, Implicit< CloudType >, and NoPacking< CloudType >.
|
static |
Selector.
Definition at line 83 of file PackingModel.C.
|
pure virtual |
Calculate the velocity correction.
Implemented in Explicit< CloudType >, Implicit< CloudType >, and NoPacking< CloudType >.
|
protected |