Public Member Functions | |
forceList (liquidFilmBase &film) | |
Construct null. More... | |
forceList (liquidFilmBase &film, const dictionary &dict) | |
Construct from type name, dictionary and surface film model. More... | |
virtual | ~forceList () |
Destructor. More... | |
tmp< faVectorMatrix > | correct (areaVectorField &U) |
Return (net) force system. More... | |
![]() | |
constexpr | PtrList () noexcept |
Default construct. More... | |
PtrList (const label len) | |
Construct with specified size, each element initialized to nullptr. More... | |
PtrList (const PtrList< force > &list) | |
Copy construct using 'clone()' method on each element. More... | |
PtrList (PtrList< force > &&list) | |
Move construct. More... | |
PtrList (UList< force * > &list) | |
Take ownership of pointers in the list, set old pointers to null. More... | |
PtrList (const PtrList< force > &list, const CloneArg &cloneArgs) | |
Copy construct using 'clone()' method on each element. More... | |
PtrList (PtrList< force > &list, bool reuse) | |
Construct as copy or re-use as specified. More... | |
PtrList (const SLPtrList< force > &list) | |
Copy construct using 'clone()' on each element of SLPtrList<T> More... | |
PtrList (Istream &is, const INew &inew) | |
Construct from Istream using given Istream constructor class. More... | |
PtrList (Istream &is) | |
Construct from Istream using default Istream constructor class. More... | |
~PtrList () | |
Destructor. More... | |
PtrList< force > | clone (Args &&... args) const |
Make a copy by cloning each of the list elements. More... | |
Foam::PtrList< force > | clone (Args &&... args) const |
const force * | set (const label i) const |
Return const pointer to element (can be nullptr),. More... | |
autoPtr< force > | set (const label i, force *ptr) |
Set element to given pointer and return old element (can be null) More... | |
autoPtr< force > | set (const label i, autoPtr< force > &ptr) |
Set element to given autoPtr and return old element. More... | |
autoPtr< force > | set (const label i, autoPtr< force > &&ptr) |
Set element to given autoPtr and return old element. More... | |
autoPtr< force > | set (const label i, std::unique_ptr< force > &&ptr) |
Set element to given unique_ptr and return old element. More... | |
autoPtr< force > | set (const label i, const refPtr< force > &ptr) |
Set element to given refPtr and return old element. More... | |
autoPtr< force > | set (const label i, const tmp< force > &ptr) |
Set element to given tmp and return old element. More... | |
void | clear () |
Clear the PtrList. Delete allocated entries and set size to zero. More... | |
void | resize (const label newLen) |
Adjust size of PtrList. More... | |
void | setSize (const label newLen) |
Same as resize() More... | |
void | emplace_append (Args &&... args) |
Construct and append an element to the end of the list. More... | |
void | append (force *ptr) |
Append an element to the end of the list. More... | |
void | append (autoPtr< force > &ptr) |
Move append an element to the end of the list. More... | |
void | append (autoPtr< force > &&ptr) |
Move append an element to the end of the list. More... | |
void | append (std::unique_ptr< force > &&ptr) |
Move append an element to the end of the list. More... | |
void | append (const refPtr< force > &ptr) |
Move or clone append a refPtr to the end of the list. More... | |
void | append (const tmp< force > &ptr) |
Move or clone append a tmp to the end of the list. More... | |
autoPtr< force > | emplace (const label i, Args &&... args) |
Construct and set an element. More... | |
Foam::autoPtr< force > | emplace (const label i, Args &&... args) |
autoPtr< force > | release (const label i) |
Release ownership of the pointer at the given position. More... | |
void | transfer (PtrList< force > &list) |
Transfer into this list and annul the argument list. More... | |
void | operator= (const PtrList< force > &list) |
Copy assignment. More... | |
void | operator= (PtrList< force > &&list) |
Move assignment. More... | |
Additional Inherited Members | |
![]() | |
void | readIstream (Istream &is, const INew &inew) |
Read from Istream using Istream constructor class. More... | |
void | free () |
Delete the allocated entries, but retain the list size. More... | |
Definition at line 56 of file forceList.H.
forceList | ( | liquidFilmBase & | film | ) |
Construct null.
Definition at line 41 of file forceList.C.
forceList | ( | liquidFilmBase & | film, |
const dictionary & | dict | ||
) |
Construct from type name, dictionary and surface film model.
Definition at line 48 of file forceList.C.
References dict, Foam::endl(), forAll, Foam::Info, dictionary::lookup(), force::New(), Foam::BitOps::set(), and setSize().
|
virtual |
Destructor.
Definition at line 76 of file forceList.C.
tmp< faVectorMatrix > correct | ( | areaVectorField & | U | ) |
Return (net) force system.
Definition at line 82 of file forceList.C.
References Foam::dimDensity, Foam::dimForce, forAll, tmp< T >::ref(), and U.
Referenced by kinematicThinFilm::evolveRegion().