Templated inflow boundary model class. More...

Public Member Functions | |
| TypeName ("InflowBoundaryModel") | |
| Runtime type information. More... | |
| declareRunTimeSelectionTable (autoPtr, InflowBoundaryModel, dictionary,(const dictionary &dict, CloudType &owner),(dict, owner)) | |
| Declare runtime constructor selection table. More... | |
| InflowBoundaryModel (CloudType &owner) | |
| Construct null from owner. More... | |
| InflowBoundaryModel (const dictionary &dict, CloudType &owner, const word &type) | |
| Construct from dictionary. More... | |
| virtual | ~InflowBoundaryModel () |
| Destructor. More... | |
| const CloudType & | owner () const |
| Return const access the owner cloud object. More... | |
| CloudType & | owner () |
| Return non-const access the owner cloud object for manipulation. More... | |
| const dictionary & | dict () const |
| Return the owner cloud dictionary. More... | |
| const dictionary & | coeffDict () const |
| Return the coefficients dictionary. More... | |
| virtual void | topoChange () |
| Update following mesh change. More... | |
| virtual void | inflow ()=0 |
| Introduce particles. More... | |
Static Public Member Functions | |
| static autoPtr< InflowBoundaryModel< CloudType > > | New (const dictionary &dict, CloudType &owner) |
| Selector. More... | |
Templated inflow boundary model class.
Definition at line 53 of file InflowBoundaryModel.H.
| InflowBoundaryModel | ( | CloudType & | owner | ) |
Construct null from owner.
Definition at line 31 of file InflowBoundaryModel.C.
| InflowBoundaryModel | ( | const dictionary & | dict, |
| CloudType & | owner, | ||
| const word & | type | ||
| ) |
Construct from dictionary.
Definition at line 40 of file InflowBoundaryModel.C.
|
virtual |
Destructor.
Definition at line 56 of file InflowBoundaryModel.C.
| TypeName | ( | "InflowBoundaryModel< CloudType >" | ) |
Runtime type information.
| declareRunTimeSelectionTable | ( | autoPtr | , |
| InflowBoundaryModel< CloudType > | , | ||
| dictionary | , | ||
| (const dictionary &dict, CloudType &owner) | , | ||
| (dict, owner) | |||
| ) |
Declare runtime constructor selection table.
|
static |
Selector.
Definition at line 32 of file InflowBoundaryModelNew.C.
References dict, Foam::endl(), Foam::exit(), Foam::FatalError, FatalErrorInFunction, Foam::Info, and Foam::nl.

|
inline |
Return const access the owner cloud object.
Definition at line 63 of file InflowBoundaryModel.C.
|
inline |
Return non-const access the owner cloud object for manipulation.
Definition at line 70 of file InflowBoundaryModel.C.
|
inline |
Return the owner cloud dictionary.
Definition at line 77 of file InflowBoundaryModel.C.
|
inline |
Return the coefficients dictionary.
Definition at line 84 of file InflowBoundaryModel.C.
Referenced by FreeStream< CloudType >::FreeStream().

|
virtual |
Update following mesh change.
Reimplemented in FreeStream< CloudType >.
Definition at line 91 of file InflowBoundaryModel.C.
|
pure virtual |
Introduce particles.
Implemented in NoInflow< CloudType >, and FreeStream< CloudType >.