Templated inflow boundary model class. More...
#include <InflowBoundaryModel.H>

Public Member Functions | |
| TypeName ("InflowBoundaryModel") | |
| Runtime type information. | |
| declareRunTimeSelectionTable (autoPtr, InflowBoundaryModel, dictionary,(const dictionary &dict, CloudType &owner),(dict, owner)) | |
| Declare runtime constructor selection table. | |
| InflowBoundaryModel (CloudType &owner) | |
| Construct null from owner. | |
| InflowBoundaryModel (const dictionary &dict, CloudType &owner, const word &type) | |
| Construct from dictionary. | |
| virtual | ~InflowBoundaryModel () |
| Destructor. | |
| const CloudType & | owner () const |
| Return const access the owner cloud object. | |
| CloudType & | owner () |
| Return non-const access the owner cloud object for manipulation. | |
| const dictionary & | dict () const |
| Return the owner cloud dictionary. | |
| const dictionary & | coeffDict () const |
| Return the coefficients dictionary. | |
| virtual void | autoMap (const mapPolyMesh &) |
| Remap the particles to the correct cells following mesh change. | |
| virtual void | inflow ()=0 |
| Introduce particles. | |
Static Public Member Functions | |
| static autoPtr< InflowBoundaryModel< CloudType > > | New (const dictionary &dict, CloudType &owner) |
| Selector. | |
Templated inflow boundary model class.
Definition at line 51 of file InflowBoundaryModel.H.
Construct null from owner.
Definition at line 26 of file InflowBoundaryModel.C.
References owner().
Referenced by declareRunTimeSelectionTable(), FreeStream< CloudType >::FreeStream(), and NoInflow< CloudType >::NoInflow().


| InflowBoundaryModel | ( | const dictionary & | dict, |
| CloudType & | owner, | ||
| const word & | type ) |
Construct from dictionary.
Definition at line 35 of file InflowBoundaryModel.C.
References dict(), and owner().

|
virtual |
Destructor.
Definition at line 51 of file InflowBoundaryModel.C.
| declareRunTimeSelectionTable | ( | autoPtr | , |
| InflowBoundaryModel< CloudType > | , | ||
| dictionary | , | ||
| (const dictionary &dict, CloudType &owner) | , | ||
| (dict, owner) | ) |
Declare runtime constructor selection table.
References dict(), InflowBoundaryModel(), and owner().

|
static |
Selector.
Definition at line 28 of file InflowBoundaryModelNew.C.
References dict(), Foam::endl(), Foam::exit(), Foam::FatalIOError, FatalIOErrorInLookup, Foam::Info, and owner().

Return const access the owner cloud object.
Definition at line 58 of file InflowBoundaryModel.C.
Referenced by FreeStream< CloudType >::autoMap(), declareRunTimeSelectionTable(), FreeStream< CloudType >::inflow(), InflowBoundaryModel(), InflowBoundaryModel(), and New().

Return non-const access the owner cloud object for manipulation.
Definition at line 65 of file InflowBoundaryModel.C.
|
inline |
Return the owner cloud dictionary.
Definition at line 72 of file InflowBoundaryModel.C.
Referenced by declareRunTimeSelectionTable(), FreeStream< CloudType >::FreeStream(), InflowBoundaryModel(), New(), NoInflow< CloudType >::NoInflow(), FreeStream< CloudType >::TypeName(), and NoInflow< CloudType >::TypeName().

|
inline |
Return the coefficients dictionary.
Definition at line 79 of file InflowBoundaryModel.C.
Referenced by FreeStream< CloudType >::FreeStream().

|
inlinevirtual |
Remap the particles to the correct cells following mesh change.
Reimplemented in FreeStream< CloudType >.
Definition at line 153 of file InflowBoundaryModel.H.
|
pure virtual |
Introduce particles.
Implemented in FreeStream< CloudType >, and NoInflow< CloudType >.