Loading...
Searching...
No Matches
wallPointData< Type > Class Template Reference

Holds information (coordinate and normal) regarding nearest wall point. More...

#include <wallPointData.H>

Inheritance diagram for wallPointData< Type >:
Collaboration diagram for wallPointData< Type >:

Public Types

typedef Type dataType
 Type of additional data carried.

Public Member Functions

 wallPointData ()
 Default construct.
 wallPointData (const point &origin, const Type &data, const scalar distSqr)
 Construct from origin, normal, distance.
const Type & data () const
Type & data ()
template<class TrackingData>
bool updateCell (const polyMesh &mesh, const label thisCelli, const label neighbourFacei, const wallPointData< Type > &neighbourWallInfo, const scalar tol, TrackingData &td)
 Influence of neighbouring face.
template<class TrackingData>
bool updateFace (const polyMesh &mesh, const label thisFacei, const label neighbourCelli, const wallPointData< Type > &neighbourWallInfo, const scalar tol, TrackingData &td)
 Influence of neighbouring cell.
template<class TrackingData>
bool updateFace (const polyMesh &mesh, const label thisFacei, const wallPointData< Type > &neighbourWallInfo, const scalar tol, TrackingData &td)
 Influence of different value on same face.
Public Member Functions inherited from wallPoint
 wallPoint ()
 Default construct.
 wallPoint (const point &origin, const scalar distSqr)
 Construct from origin, distance-squared.
const pointorigin () const
pointorigin ()
scalar distSqr () const
scalar & distSqr ()
template<class TrackingData>
bool valid (TrackingData &td) const
 Changed or contains original (invalid) value.
template<class TrackingData>
bool sameGeometry (const polyMesh &, const wallPoint &, const scalar, TrackingData &td) const
 Check for identical geometrical data (eg, cyclics checking).
template<class TrackingData>
void leaveDomain (const polyMesh &, const polyPatch &, const label patchFacei, const point &faceCentre, TrackingData &td)
 Convert any absolute coordinates into relative to (patch)face centre.
template<class TrackingData>
void enterDomain (const polyMesh &, const polyPatch &, const label patchFacei, const point &faceCentre, TrackingData &td)
 Reverse of leaveDomain.
template<class TrackingData>
void transform (const polyMesh &, const tensor &, TrackingData &td)
 Apply rotation matrix to any coordinates.
template<class TrackingData>
bool updateCell (const polyMesh &, const label thisCelli, const label neighbourFacei, const wallPoint &neighbourInfo, const scalar tol, TrackingData &td)
 Influence of neighbouring face.
template<class TrackingData>
bool updateFace (const polyMesh &, const label thisFacei, const label neighbourCelli, const wallPoint &neighbourInfo, const scalar tol, TrackingData &td)
 Influence of neighbouring cell.
template<class TrackingData>
bool updateFace (const polyMesh &, const label thisFacei, const wallPoint &neighbourInfo, const scalar tol, TrackingData &td)
 Influence of different value on same face.
template<class TrackingData>
 wallPoint (const polyMesh &, const scalar weight, const label face0, const wallPoint &info0, const label face1, const wallPoint &info1, const scalar tol, TrackingData &td)
 Interpolate different values.
template<class TrackingData>
bool equal (const wallPoint &, TrackingData &td) const
 Test for equality, with TrackingData.
template<class TrackingData>
bool interpolate (const polyMesh &, const point &pt, const label i0, const wallPoint &f0, const label i1, const wallPoint &f1, const scalar weight, const scalar tol, TrackingData &td)
 Interpolate between two values (lerp). Returns true if causes changes. Not sure if needs to be specialised between face and cell and what index is needed...
bool operator== (const wallPoint &) const
 Test for equality.
bool operator!= (const wallPoint &) const
 Test for inequality.

Friends

Ostreamoperator<< (Ostream &, const wallPointData< Type > &)
Istreamoperator>> (Istream &, wallPointData< Type > &)

Detailed Description

template<class Type>
class Foam::wallPointData< Type >

Holds information (coordinate and normal) regarding nearest wall point.

Is like wallPoint but transfer extra (passive) data. Used e.g. in wall distance calculation with wall reflection vectors.

Source files

Definition at line 59 of file wallPointData.H.

Member Typedef Documentation

◆ dataType

template<class Type>
typedef Type dataType

Type of additional data carried.

Definition at line 96 of file wallPointData.H.

Constructor & Destructor Documentation

◆ wallPointData() [1/2]

template<class Type>
wallPointData ( )
inline

Default construct.

Definition at line 69 of file wallPointDataI.H.

References wallPoint::wallPoint().

Referenced by directionalWallPointData< Type >::directionalWallPointData(), directionalWallPointData< Type >::directionalWallPointData(), operator<<, directionalWallPointData< Type >::operator>>, operator>>, updateCell(), updateFace(), and updateFace().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ wallPointData() [2/2]

template<class Type>
wallPointData ( const point & origin,
const Type & data,
const scalar distSqr )
inline

Construct from origin, normal, distance.

Definition at line 77 of file wallPointDataI.H.

References data(), wallPoint::distSqr(), wallPoint::origin(), and wallPoint::wallPoint().

Here is the call graph for this function:

Member Function Documentation

◆ data() [1/2]

template<class Type>
const Type & data ( ) const
inline

Definition at line 121 of file wallPointData.H.

Referenced by directionalWallPointData< Type >::directionalWallPointData(), and wallPointData().

Here is the caller graph for this function:

◆ data() [2/2]

template<class Type>
Type & data ( )
inline

Definition at line 125 of file wallPointData.H.

◆ updateCell()

template<class Type>
template<class TrackingData>
bool updateCell ( const polyMesh & mesh,
const label thisCelli,
const label neighbourFacei,
const wallPointData< Type > & neighbourWallInfo,
const scalar tol,
TrackingData & td )
inline

Influence of neighbouring face.

Calls update(...) with cellCentre of celli

Definition at line 94 of file wallPointDataI.H.

References mesh, td(), and wallPointData().

Here is the call graph for this function:

◆ updateFace() [1/2]

template<class Type>
template<class TrackingData>
bool updateFace ( const polyMesh & mesh,
const label thisFacei,
const label neighbourCelli,
const wallPointData< Type > & neighbourWallInfo,
const scalar tol,
TrackingData & td )
inline

Influence of neighbouring cell.

Calls update(...) with faceCentre of facei

Definition at line 119 of file wallPointDataI.H.

References mesh, td(), update(), and wallPointData().

Here is the call graph for this function:

◆ updateFace() [2/2]

template<class Type>
template<class TrackingData>
bool updateFace ( const polyMesh & mesh,
const label thisFacei,
const wallPointData< Type > & neighbourWallInfo,
const scalar tol,
TrackingData & td )
inline

Influence of different value on same face.

Merge new and old info. Calls update(...) with faceCentre of facei

Definition at line 144 of file wallPointDataI.H.

References mesh, td(), and wallPointData().

Here is the call graph for this function:

◆ operator<<

template<class Type>
Ostream & operator<< ( Ostream & ,
const wallPointData< Type > &  )
friend

References wallPointData().

◆ operator>>

template<class Type>
Istream & operator>> ( Istream & ,
wallPointData< Type > &  )
friend

References wallPointData().


The documentation for this class was generated from the following files: