Templated pair interaction class. More...

Public Member Functions | |
| TypeName ("pairModel") | |
| Runtime type information. More... | |
| declareRunTimeSelectionTable (autoPtr, PairModel, dictionary,(const dictionary &dict, CloudType &owner),(dict, owner)) | |
| Declare runtime constructor selection table. More... | |
| PairModel (const dictionary &dict, CloudType &owner, const word &type) | |
| Construct from components. More... | |
| virtual | ~PairModel () |
| Destructor. More... | |
| const CloudType & | owner () const |
| Return the owner cloud object. More... | |
| const dictionary & | dict () const |
| Return the dictionary. More... | |
| const dictionary & | coeffDict () const |
| Return the coefficients dictionary. More... | |
| virtual bool | controlsTimestep () const =0 |
| Whether the PairModel has a timestep limit that will. More... | |
| virtual label | nSubCycles () const =0 |
| For PairModels that control the timestep, calculate the. More... | |
| virtual void | evaluatePair (typename CloudType::parcelType &pA, typename CloudType::parcelType &pB) const =0 |
| Calculate the pair interaction between parcels. More... | |
Static Public Member Functions | |
| static autoPtr< PairModel< CloudType > > | New (const dictionary &dict, CloudType &owner) |
| Selector. More... | |
Templated pair interaction class.
Definition at line 48 of file PairCollision.H.
| PairModel | ( | const dictionary & | dict, |
| CloudType & | owner, | ||
| const word & | type | ||
| ) |
Construct from components.
Definition at line 32 of file PairModel.C.
|
virtual |
Destructor.
Definition at line 47 of file PairModel.C.
| TypeName | ( | "pairModel" | ) |
Runtime type information.
| declareRunTimeSelectionTable | ( | autoPtr | , |
| PairModel< CloudType > | , | ||
| dictionary | , | ||
| (const dictionary &dict, CloudType &owner) | , | ||
| (dict, owner) | |||
| ) |
Declare runtime constructor selection table.
|
static |
Selector.
Definition at line 33 of file PairModelNew.C.
References dict, Foam::endl(), Foam::exit(), Foam::FatalError, FatalErrorInFunction, Foam::Info, dictionary::lookup(), and Foam::nl.

| const CloudType & owner | ( | ) | const |
Return the owner cloud object.
Definition at line 55 of file PairModel.C.
| const Foam::dictionary & dict | ( | ) | const |
Return the dictionary.
Definition at line 62 of file PairModel.C.
| const Foam::dictionary & coeffDict | ( | ) | const |
Return the coefficients dictionary.
Definition at line 70 of file PairModel.C.
|
pure virtual |
Whether the PairModel has a timestep limit that will.
require subCycling
Implemented in PairSpringSliderDashpot< CloudType >.
|
pure virtual |
For PairModels that control the timestep, calculate the.
number of subCycles needed to satisfy the minimum allowable timestep
Implemented in PairSpringSliderDashpot< CloudType >.
|
pure virtual |
Calculate the pair interaction between parcels.
Implemented in PairSpringSliderDashpot< CloudType >.
1.8.11