Templated wall interaction class. More...
Public Member Functions | |
TypeName ("wallModel") | |
Runtime type information. More... | |
declareRunTimeSelectionTable (autoPtr, WallModel, dictionary,(const dictionary &dict, CloudType &owner),(dict, owner)) | |
Declare runtime constructor selection table. More... | |
WallModel (const dictionary &dict, CloudType &owner, const word &type) | |
Construct from components. More... | |
virtual | ~WallModel () |
Destructor. More... | |
const CloudType & | owner () const |
Return the owner cloud object. More... | |
CloudType & | owner () |
Return non-const access to the owner cloud object. More... | |
const dictionary & | dict () const |
Return the dictionary. More... | |
const dictionary & | coeffDict () const |
Return the coefficients dictionary. More... | |
virtual scalar | pREff (const typename CloudType::parcelType &p) const =0 |
Return the effective radius for a particle for the model. More... | |
virtual bool | controlsTimestep () const =0 |
Whether the WallModel has a timestep limit that will. More... | |
virtual label | nSubCycles () const =0 |
For WallModels that control the timestep, calculate the. More... | |
virtual void | evaluateWall (typename CloudType::parcelType &p, const List< point > &flatSitePoints, const List< WallSiteData< vector >> &flatSiteData, const List< point > &sharpSitePoints, const List< WallSiteData< vector >> &sharpSiteData) const =0 |
Calculate the wall interaction for a parcel. More... | |
Static Public Member Functions | |
static autoPtr< WallModel< CloudType > > | New (const dictionary &dict, CloudType &owner) |
Selector. More... | |
Templated wall interaction class.
Definition at line 51 of file PairCollision.H.
WallModel | ( | const dictionary & | dict, |
CloudType & | owner, | ||
const word & | type | ||
) |
Construct from components.
Definition at line 32 of file WallModel.C.
|
virtual |
Destructor.
Definition at line 47 of file WallModel.C.
TypeName | ( | "wallModel" | ) |
Runtime type information.
declareRunTimeSelectionTable | ( | autoPtr | , |
WallModel< CloudType > | , | ||
dictionary | , | ||
(const dictionary &dict, CloudType &owner) | , | ||
(dict, owner) | |||
) |
Declare runtime constructor selection table.
|
static |
Selector.
Definition at line 33 of file WallModelNew.C.
const CloudType & owner | ( | ) | const |
Return the owner cloud object.
Definition at line 55 of file WallModel.C.
CloudType & owner | ( | ) |
Return non-const access to the owner cloud object.
Definition at line 63 of file WallModel.C.
const Foam::dictionary & dict | ( | ) | const |
Return the dictionary.
Definition at line 70 of file WallModel.C.
const Foam::dictionary & coeffDict | ( | ) | const |
Return the coefficients dictionary.
Definition at line 78 of file WallModel.C.
|
pure virtual |
Return the effective radius for a particle for the model.
Implemented in WallLocalSpringSliderDashpot< CloudType >, and WallSpringSliderDashpot< CloudType >.
|
pure virtual |
Whether the WallModel has a timestep limit that will.
require subCycling
Implemented in WallLocalSpringSliderDashpot< CloudType >, and WallSpringSliderDashpot< CloudType >.
|
pure virtual |
For WallModels that control the timestep, calculate the.
number of subCycles needed to satisfy the minimum allowable timestep
Implemented in WallLocalSpringSliderDashpot< CloudType >, and WallSpringSliderDashpot< CloudType >.
|
pure virtual |
Calculate the wall interaction for a parcel.
Implemented in WallLocalSpringSliderDashpot< CloudType >, and WallSpringSliderDashpot< CloudType >.