

Public Member Functions | |
| regionModelFunctionObjectList (regionModel &owner) | |
| Null constructor. More... | |
| regionModelFunctionObjectList (regionModel &owner, const dictionary &dict, const bool readFields=true) | |
| Construct from mesh. More... | |
| regionModelFunctionObjectList (const regionModelFunctionObjectList &rmfol) | |
| Construct copy. More... | |
| virtual | ~regionModelFunctionObjectList () |
| Destructor. More... | |
| const regionModel & | owner () const |
| Return const access to the cloud owner. More... | |
| regionModel & | owner () |
| Return refernce to the cloud owner. More... | |
| const dictionary & | dict () const |
| Return the forces dictionary. More... | |
| virtual void | preEvolveRegion () |
| Pre-evolve hook. More... | |
| virtual void | postEvolveRegion () |
| Post-evolve hook. More... | |
Public Member Functions inherited from PtrList< regionModelFunctionObject > | |
| PtrList () | |
| Null Constructor. More... | |
| PtrList (const label) | |
| Construct with size specified. More... | |
| PtrList (const PtrList< regionModelFunctionObject > &) | |
| Copy constructor. More... | |
| PtrList (const PtrList< regionModelFunctionObject > &, const CloneArg &) | |
| Copy constructor with additional argument for clone. More... | |
| PtrList (const Xfer< PtrList< regionModelFunctionObject >> &) | |
| Construct by transferring the parameter contents. More... | |
| PtrList (PtrList< regionModelFunctionObject > &, bool reuse) | |
| Construct as copy or re-use as specified. More... | |
| PtrList (const SLPtrList< regionModelFunctionObject > &) | |
| Construct as copy of SLPtrList<T> More... | |
| PtrList (Istream &, const INew &) | |
| Construct from Istream using given Istream constructor class. More... | |
| PtrList (Istream &) | |
| Construct from Istream using default Istream constructor class. More... | |
| ~PtrList () | |
| Destructor. More... | |
| void | setSize (const label) |
| Reset size of PtrList. If extending the PtrList, new entries are. More... | |
| void | resize (const label) |
| Alias for setSize(const label) More... | |
| void | clear () |
| Clear the PtrList, i.e. set size to zero deleting all the. More... | |
| void | append (regionModelFunctionObject *) |
| Append an element at the end of the list. More... | |
| void | append (const autoPtr< regionModelFunctionObject > &) |
| void | append (const tmp< regionModelFunctionObject > &) |
| void | transfer (PtrList< regionModelFunctionObject > &) |
| Transfer the contents of the argument PtrList into this PtrList. More... | |
| Xfer< PtrList< regionModelFunctionObject > > | xfer () |
| Transfer contents to the Xfer container. More... | |
| bool | set (const label) const |
| Is element set. More... | |
| autoPtr< regionModelFunctionObject > | set (const label, regionModelFunctionObject *) |
| Set element to given T* and return old element (can be NULL) More... | |
| autoPtr< regionModelFunctionObject > | set (const label, const autoPtr< regionModelFunctionObject > &) |
| Set element to given autoPtr<T> and return old element. More... | |
| autoPtr< regionModelFunctionObject > | set (const label, const tmp< regionModelFunctionObject > &) |
| Set element to given tmp<T> and return old element. More... | |
| void | reorder (const labelUList &) |
| Reorders elements. Ordering does not have to be done in. More... | |
| void | operator= (const PtrList< regionModelFunctionObject > &) |
| Assignment. More... | |
Public Member Functions inherited from UPtrList< T > | |
| UPtrList () | |
| Null Constructor. More... | |
| UPtrList (const label) | |
| Construct with size specified. More... | |
| UPtrList (const Xfer< UPtrList< T >> &) | |
| Construct by transferring the parameter contents. More... | |
| UPtrList (UPtrList< T > &, bool reuse) | |
| Construct as copy or re-use as specified. More... | |
| label | size () const |
| Return the number of elements in the UPtrList. More... | |
| bool | empty () const |
| Return true if the UPtrList is empty (ie, size() is zero) More... | |
| T & | first () |
| Return reference to the first element of the list. More... | |
| const T & | first () const |
| Return reference to first element of the list. More... | |
| T & | last () |
| Return reference to the last element of the list. More... | |
| const T & | last () const |
| Return reference to the last element of the list. More... | |
| void | setSize (const label) |
| Reset size of UPtrList. This can only be used to set the size. More... | |
| void | resize (const label) |
| Reset size of UPtrList. This can only be used to set the size. More... | |
| void | clear () |
| Clear the UPtrList, i.e. set size to zero. More... | |
| void | transfer (UPtrList< T > &) |
| Transfer the contents of the argument UPtrList into this. More... | |
| Xfer< UPtrList< T > > | xfer () |
| Transfer contents to the Xfer container. More... | |
| bool | set (const label) const |
| Is element set. More... | |
| T * | set (const label, T *) |
| Set element. Return old element (can be NULL). More... | |
| void | reorder (const labelUList &) |
| Reorders elements. Ordering does not have to be done in. More... | |
| const T & | operator[] (const label) const |
| Return element const reference. More... | |
| T & | operator[] (const label) |
| Return element reference. More... | |
| const T * | operator() (const label) const |
| Return element const pointer. More... | |
| iterator | begin () |
| Return an iterator to begin traversing the UPtrList. More... | |
| iterator | end () |
| Return an iterator to end traversing the UPtrList. More... | |
| const_iterator | cbegin () const |
| Return an const_iterator to begin traversing the UPtrList. More... | |
| const_iterator | cend () const |
| Return an const_iterator to end traversing the UPtrList. More... | |
| const_iterator | begin () const |
| Return an const_iterator to begin traversing the UPtrList. More... | |
| const_iterator | end () const |
| Return an const_iterator to end traversing the UPtrList. More... | |
Protected Attributes | |
| regionModel & | owner_ |
| Reference to the owner region model. More... | |
| const dictionary | dict_ |
| Dictionary. More... | |
Additional Inherited Members | |
Public Types inherited from UPtrList< T > | |
| typedef T | value_type |
| Type of values the UPtrList contains. More... | |
| typedef T & | reference |
| Type that can be used for storing into UPtrList::value_type objects. More... | |
| typedef const T & | const_reference |
| Type that can be used for storing into constant UPtrList::value_type. More... | |
Protected Member Functions inherited from PtrList< regionModelFunctionObject > | |
| void | read (Istream &, const INew &inewt) |
| Read from Istream using given Istream constructor class. More... | |
Definition at line 54 of file regionModelFunctionObjectList.H.
| regionModelFunctionObjectList | ( | regionModel & | owner | ) |
Null constructor.
Definition at line 31 of file regionModelFunctionObjectList.C.
Referenced by regionModelFunctionObjectList::regionModelFunctionObjectList().

| regionModelFunctionObjectList | ( | regionModel & | owner, |
| const dictionary & | dict, | ||
| const bool | readFields = true |
||
| ) |
Construct from mesh.
Definition at line 42 of file regionModelFunctionObjectList.C.
References Foam::endl(), forAll, Foam::Info, Foam::New(), regionModelFunctionObjectList::regionModelFunctionObjectList(), setSize(), and dictionary::toc().

| regionModelFunctionObjectList | ( | const regionModelFunctionObjectList & | rmfol | ) |
Construct copy.
Definition at line 87 of file regionModelFunctionObjectList.C.
References regionModelFunctionObjectList::~regionModelFunctionObjectList().

|
virtual |
Destructor.
Definition at line 100 of file regionModelFunctionObjectList.C.
Referenced by regionModelFunctionObjectList::regionModelFunctionObjectList().

|
inline |
Return const access to the cloud owner.
Definition at line 27 of file regionModelFunctionObjectListI.H.
References regionModelFunctionObjectList::owner_.
|
inline |
Return refernce to the cloud owner.
Definition at line 34 of file regionModelFunctionObjectListI.H.
References regionModelFunctionObjectList::owner_.
|
inline |
Return the forces dictionary.
Definition at line 41 of file regionModelFunctionObjectListI.H.
References regionModelFunctionObjectList::dict_.
|
virtual |
Pre-evolve hook.
Definition at line 106 of file regionModelFunctionObjectList.C.
References forAll, and UPtrList< T >::operator[]().

|
virtual |
Post-evolve hook.
Definition at line 115 of file regionModelFunctionObjectList.C.
References forAll, and UPtrList< T >::operator[]().

|
protected |
Reference to the owner region model.
Definition at line 63 of file regionModelFunctionObjectList.H.
Referenced by regionModelFunctionObjectList::owner().
|
protected |
Definition at line 66 of file regionModelFunctionObjectList.H.
Referenced by regionModelFunctionObjectList::dict().
1.8.11