Public Member Functions | |
CollisionRecordList () | |
Construct null. More... | |
CollisionRecordList (Istream &) | |
Construct from Istream. More... | |
CollisionRecordList (const labelField &pairAccessed, const labelField &pairOrigProcOfOther, const labelField &pairOrigIdOfOther, const Field< PairType > &pairData, const labelField &wallAccessed, const vectorField &wallPRel, const Field< WallType > &wallData) | |
Construct from component fields (for IO) More... | |
~CollisionRecordList () | |
Destructor. More... | |
const DynamicList< PairCollisionRecord< PairType > > & | pairRecords () const |
Return the active pair collisions. More... | |
const DynamicList< WallCollisionRecord< WallType > > & | wallRecords () const |
Return the active wall collisions. More... | |
labelField | pairAccessed () const |
Return field of pair accessed from each record, used for. More... | |
labelField | pairOrigProcOfOther () const |
Return field of pair origProcOfOther from each record,. More... | |
labelField | pairOrigIdOfOther () const |
Return field of pair origIdOfOther from each record, used. More... | |
Field< PairType > | pairData () const |
Return field of pair data from each record, used for field IO. More... | |
labelField | wallAccessed () const |
Return field of wall accessed from each record, used for field IO. More... | |
vectorField | wallPRel () const |
Return field of wall pRel from each record, used for field IO. More... | |
Field< WallType > | wallData () const |
Return field of wall data from each record, used for field IO. More... | |
PairCollisionRecord< PairType > & | matchPairRecord (label origProcOfOther, label origIdOfOther) |
Enquires if the proc and id pair of the other particle are. More... | |
bool | checkPairRecord (label origProcOfOther, label origIdOfOther) |
Enquire if the specified record exists without modifying. More... | |
WallCollisionRecord< WallType > & | matchWallRecord (const vector &pRel, scalar radius) |
Enquires if the position of wall impact relative to the. More... | |
bool | checkWallRecord (const vector &pRel, scalar radius) |
Enquire if the specified record exists without modifying. More... | |
void | update () |
Update the collision records, deleting any records not. More... | |
Friends | |
bool | operator== (const CollisionRecordList< PairType, WallType > &, const CollisionRecordList< PairType, WallType > &) |
bool | operator!= (const CollisionRecordList< PairType, WallType > &, const CollisionRecordList< PairType, WallType > &) |
Istream & | operator>> (Istream &, CollisionRecordList< PairType, WallType > &) |
Ostream & | operator (Ostream &, const CollisionRecordList< PairType, WallType > &) |
Definition at line 49 of file CollisionRecordList.H.
Construct null.
Definition at line 32 of file CollisionRecordList.C.
Referenced by CollisionRecordList< vector, vector >::CollisionRecordList().
CollisionRecordList | ( | Istream & | is | ) |
Construct from Istream.
Definition at line 40 of file CollisionRecordList.C.
CollisionRecordList | ( | const labelField & | pairAccessed, |
const labelField & | pairOrigProcOfOther, | ||
const labelField & | pairOrigIdOfOther, | ||
const Field< PairType > & | pairData, | ||
const labelField & | wallAccessed, | ||
const vectorField & | wallPRel, | ||
const Field< WallType > & | wallData | ||
) |
Construct from component fields (for IO)
Definition at line 56 of file CollisionRecordList.C.
~CollisionRecordList | ( | ) |
Destructor.
Definition at line 131 of file CollisionRecordList.C.
|
inline |
Return the active pair collisions.
Definition at line 32 of file CollisionRecordListI.H.
|
inline |
Return the active wall collisions.
Definition at line 40 of file CollisionRecordListI.H.
Foam::labelField pairAccessed | ( | ) | const |
Return field of pair accessed from each record, used for.
field IO
Definition at line 139 of file CollisionRecordList.C.
Foam::labelField pairOrigProcOfOther | ( | ) | const |
Return field of pair origProcOfOther from each record,.
used for field IO
Definition at line 154 of file CollisionRecordList.C.
Foam::labelField pairOrigIdOfOther | ( | ) | const |
Return field of pair origIdOfOther from each record, used.
for field IO
Definition at line 169 of file CollisionRecordList.C.
Foam::Field< PairType > pairData | ( | ) | const |
Return field of pair data from each record, used for field IO.
Definition at line 184 of file CollisionRecordList.C.
Foam::labelField wallAccessed | ( | ) | const |
Return field of wall accessed from each record, used for field IO.
Definition at line 199 of file CollisionRecordList.C.
Foam::vectorField wallPRel | ( | ) | const |
Return field of wall pRel from each record, used for field IO.
Definition at line 214 of file CollisionRecordList.C.
Foam::Field< WallType > wallData | ( | ) | const |
Return field of wall data from each record, used for field IO.
Definition at line 229 of file CollisionRecordList.C.
Foam::PairCollisionRecord< PairType > & matchPairRecord | ( | label | origProcOfOther, |
label | origIdOfOther | ||
) |
Enquires if the proc and id pair of the other particle are.
present in the records. If so, return non-const access to the PairCollisionRecord (hence the data) and mark the PairCollisionRecord as accessed this step, if not, create the record and return access to it.
Definition at line 245 of file CollisionRecordList.C.
Referenced by CollisionRecordList< vector, vector >::wallData().
Enquire if the specified record exists without modifying.
its accessed status
Definition at line 281 of file CollisionRecordList.C.
Referenced by CollisionRecordList< vector, vector >::matchPairRecord().
Foam::WallCollisionRecord< WallType > & matchWallRecord | ( | const vector & | pRel, |
scalar | radius | ||
) |
Enquires if the position of wall impact relative to the.
particle centre is present in the records. If so, return access to the WallCollisionRecord (hence the data) and mark the WallCollisionRecord as accesses this step, if not, create the record and return access to it.
Definition at line 303 of file CollisionRecordList.C.
Referenced by CollisionRecordList< vector, vector >::checkPairRecord().
bool checkWallRecord | ( | const vector & | pRel, |
scalar | radius | ||
) |
Enquire if the specified record exists without modifying.
its accessed status
Definition at line 335 of file CollisionRecordList.C.
Referenced by CollisionRecordList< vector, vector >::matchWallRecord().
void update | ( | ) |
Update the collision records, deleting any records not.
marked as having been accessed, then mark all records as not accessed ready for the next evaluation
Definition at line 355 of file CollisionRecordList.C.
|
friend |
|
friend |
|
friend |
|
friend |