Poly patch which can do interpolative mapping of values from another globally conforming poly patch. More...


Public Member Functions | |
| TypeName ("mapped") | |
| Runtime type information. More... | |
| mappedPolyPatch (const word &name, const label size, const label start, const label index, const polyBoundaryMesh &bm, const word &patchType) | |
| Construct from components. More... | |
| mappedPolyPatch (const word &name, const dictionary &dict, const label index, const polyBoundaryMesh &bm, const word &patchType) | |
| Construct from dictionary. More... | |
| mappedPolyPatch (const mappedPolyPatch &, const polyBoundaryMesh &) | |
| Construct as copy, resetting the boundary mesh. More... | |
| mappedPolyPatch (const mappedPolyPatch &pp, const polyBoundaryMesh &bm, const label index, const label newSize, const label newStart) | |
| Construct given the original patch and resetting the. More... | |
| virtual autoPtr< polyPatch > | clone (const polyBoundaryMesh &bm) const |
| Construct and return a clone, resetting the boundary mesh. More... | |
| virtual autoPtr< polyPatch > | clone (const polyBoundaryMesh &bm, const label index, const label newSize, const label newStart) const |
| Construct and return a clone, resetting the face list. More... | |
| virtual | ~mappedPolyPatch () |
| Destructor. More... | |
| virtual void | write (Ostream &) const |
| Write the polyPatch data as a dictionary. More... | |
Public Member Functions inherited from polyPatch | |
| TypeName ("patch") | |
| Runtime type information. More... | |
| declareRunTimeSelectionTable (autoPtr, polyPatch, word,(const word &name, const label size, const label start, const label index, const polyBoundaryMesh &bm, const word &patchType),(name, size, start, index, bm, patchType)) | |
| declareRunTimeSelectionTable (autoPtr, polyPatch, dictionary,(const word &name, const dictionary &dict, const label index, const polyBoundaryMesh &bm, const word &patchType),(name, dict, index, bm, patchType)) | |
| polyPatch (const word &name, const label size, const label start, const label index, const polyBoundaryMesh &bm, const word &patchType) | |
| Construct from components. More... | |
| polyPatch (const word &name, const dictionary &dict, const label index, const polyBoundaryMesh &bm, const word &patchType) | |
| Construct from dictionary. More... | |
| polyPatch (const polyPatch &, const polyBoundaryMesh &) | |
| Copy constructor, resetting the boundary mesh. More... | |
| polyPatch (const polyPatch &pp, const polyBoundaryMesh &bm, const label index, const label newSize, const label newStart) | |
| Construct given the original patch and resetting the. More... | |
| polyPatch (const polyPatch &) | |
| Copy constructor. More... | |
| virtual | ~polyPatch () |
| Destructor. More... | |
| label | start () const |
| Return start label of this patch in the polyMesh face list. More... | |
| const polyBoundaryMesh & | boundaryMesh () const |
| Return boundaryMesh reference. More... | |
| virtual bool | coupled () const |
| Return true if this patch is geometrically coupled (i.e. faces and. More... | |
| template<class T > | |
| const UIndirectList< T > | patchInternalList (const UList< T > &internalValues) const |
| Extract face cell data. More... | |
| template<class T > | |
| const List< T >::subList | patchSlice (const UList< T > &l) const |
| Slice list to patch. More... | |
| template<class T > | |
| const Field< T >::subField | patchSlice (const Field< T > &l) const |
| Slice Field to patch. More... | |
| const vectorField::subField | faceCentres () const |
| Return face centres. More... | |
| const vectorField::subField | faceAreas () const |
| Return face areas. More... | |
| const scalarField::subField | magFaceAreas () const |
| Return face area magnitudes. More... | |
| tmp< vectorField > | faceCellCentres () const |
| Return face cell centres. More... | |
| const labelUList & | faceCells () const |
| Return face-cell addressing. More... | |
| const labelList & | meshEdges () const |
| Return global edge index for local edges. More... | |
| virtual void | clearAddressing () |
| Clear addressing. More... | |
| label | whichFace (const label l) const |
| Return label of face in patch from global face label. More... | |
| virtual void | initOrder (PstreamBuffers &, const primitivePatch &) const |
| Initialise ordering for primitivePatch. Does not. More... | |
| virtual bool | order (PstreamBuffers &, const primitivePatch &, labelList &faceMap, labelList &rotation) const |
| Return new ordering for primitivePatch. More... | |
| void | operator= (const polyPatch &) |
| Assignment. More... | |
Public Member Functions inherited from patchIdentifier | |
| patchIdentifier (const word &name, const label index, const word &physicalType=word::null, const wordList &inGroups=wordList()) | |
| Construct from components. More... | |
| patchIdentifier (const word &name, const dictionary &, const label index) | |
| Construct from dictionary. More... | |
| patchIdentifier (const patchIdentifier &, const label index) | |
| Construct from geometric patch, resetting the index. More... | |
| virtual | ~patchIdentifier () |
| Destructor. More... | |
| const word & | name () const |
| Return name. More... | |
| label | index () const |
| Return the index of this patch in the boundaryMesh. More... | |
| const word & | physicalType () const |
| Return the optional physical type of the patch. More... | |
| word & | physicalType () |
| Return the optional physical type of the patch for modification. More... | |
| const wordList & | inGroups () const |
| Return the optional groups patch belongs to. More... | |
| wordList & | inGroups () |
| Return the optional groups patch belongs to for modification. More... | |
| bool | inGroup (const word &) const |
| Test if in group. More... | |
| void | write (Ostream &) const |
| Write patchIdentifier as a dictionary. More... | |
Public Member Functions inherited from PrimitivePatch< SubList< face >, const pointField & > | |
| PrimitivePatch (const SubList< face > &faces, const Field< PointType > &points) | |
| Construct from components. More... | |
| PrimitivePatch (SubList< face > &&faces, Field< PointType > &&points) | |
| Move constructor from components. More... | |
| PrimitivePatch (SubList< face > &faces, Field< PointType > &points, const bool reuse) | |
| Construct from components, reuse storage. More... | |
| PrimitivePatch (const PrimitivePatch< SubList< face >, const pointField & > &) | |
| Copy constructor. More... | |
| PrimitivePatch (PrimitivePatch< SubList< face >, const pointField & > &&) | |
| Move constructor. More... | |
| autoPtr< PrimitivePatch< SubList< face >, const pointField & > > | clone () const |
| Construct and return a clone. More... | |
| ~PrimitivePatch () | |
| Destructor. More... | |
| const Field< PointType > & | points () const |
| Return reference to global points. More... | |
| label | nPoints () const |
| Return number of points supporting patch faces. More... | |
| label | nEdges () const |
| Return number of edges in patch. More... | |
| const edgeList & | edges () const |
| Return list of edges, address into LOCAL point list. More... | |
| label | nInternalEdges () const |
| Number of internal edges. More... | |
| bool | isInternalEdge (const label edgeI) const |
| Is internal edge? More... | |
| const labelList & | boundaryPoints () const |
| Return list of boundary points,. More... | |
| const labelListList & | faceFaces () const |
| Return face-face addressing. More... | |
| const labelListList & | edgeFaces () const |
| Return edge-face addressing. More... | |
| const labelListList & | faceEdges () const |
| Return face-edge addressing. More... | |
| const labelListList & | pointEdges () const |
| Return point-edge addressing. More... | |
| const labelListList & | pointFaces () const |
| Return point-face addressing. More... | |
| const List< FaceType > & | localFaces () const |
| Return patch faces addressing into local point list. More... | |
| const labelList & | meshPoints () const |
| Return labelList of mesh points in patch. They are constructed. More... | |
| const Map< label > & | meshPointMap () const |
| Mesh point map. Given the global point index find its. More... | |
| const Field< PointType > & | localPoints () const |
| Return pointField of points in patch. More... | |
| const labelList & | localPointOrder () const |
| Return orders the local points for most efficient search. More... | |
| label | whichPoint (const label gp) const |
| Given a global point index, return the local point index. More... | |
| label | whichEdge (const edge &) const |
| Given an edge in local point labels, return its. More... | |
| labelList | meshEdges (const edgeList &allEdges, const labelListList &cellEdges, const labelList &faceCells) const |
| Return labels of patch edges in the global edge list using. More... | |
| labelList | meshEdges (const edgeList &allEdges, const labelListList &pointEdges) const |
| Return labels of patch edges in the global edge list using. More... | |
| const Field< PointType > & | faceCentres () const |
| Return face centres for patch. More... | |
| const Field< PointType > & | faceAreas () const |
| Return face areas for patch. More... | |
| const Field< PointType > & | faceNormals () const |
| Return face normals for patch. More... | |
| const Field< PointType > & | pointNormals () const |
| Return point normals for patch. More... | |
| List< objectHit > | projectPoints (const ToPatch &targetPatch, const Field< PointType > &projectionDirection, const intersection::algorithm=intersection::algorithm::fullRay, const intersection::direction=intersection::direction::vector) const |
| Project vertices of patch onto another patch. More... | |
| Foam::List< Foam::objectHit > | projectPoints (const ToPatch &targetPatch, const Field< PointType > &projectionDirection, const intersection::algorithm alg, const intersection::direction dir) const |
| List< objectHit > | projectFaceCentres (const ToPatch &targetPatch, const Field< PointType > &projectionDirection, const intersection::algorithm=intersection::algorithm::fullRay, const intersection::direction=intersection::direction::vector) const |
| Project vertices of patch onto another patch. More... | |
| Foam::List< Foam::objectHit > | projectFaceCentres (const ToPatch &targetPatch, const Field< PointType > &projectionDirection, const intersection::algorithm alg, const intersection::direction dir) const |
| const labelListList & | edgeLoops () const |
| Return list of closed loops of boundary vertices. More... | |
| surfaceTopo | surfaceType () const |
| Calculate surface type formed by patch. More... | |
| bool | checkTopology (const bool report=false, labelHashSet *setPtr=nullptr) const |
| Check surface formed by patch for manifoldness (see above). More... | |
| bool | checkPointManifold (const bool report=false, labelHashSet *setPtr=nullptr) const |
| Checks primitivePatch for faces sharing point but not edge. More... | |
| void | clearOut () |
| void | clearGeom () |
| void | clearTopology () |
| void | clearPatchMeshAddr () |
| void | operator= (const PrimitivePatch< SubList< face >, const pointField & > &) |
| Assignment operator. More... | |
| void | operator= (PrimitivePatch< SubList< face >, const pointField & > &&) |
| Move assignment operator. More... | |
Public Member Functions inherited from SubList< T > | |
| SubList (const UList< T > &list, const label subSize) | |
| Construct from UList and sub-list size. More... | |
| SubList (const UList< T > &list, const label subSize, const label startIndex) | |
| Construct from UList, sub-list size and start index. More... | |
| SubList (const SubList< T > &sl)=default | |
| Copy constructor. More... | |
| void | transfer (UList< T > &) |
| Transfer the contents of the argument List into this list. More... | |
| operator const Foam::List< T > & () const | |
| Allow cast to a const List<T>&. More... | |
| void | operator= (const SubList< T > &) |
| Assignment of all entries to the given sub-list. More... | |
| void | operator= (const UList< T > &) |
| Assignment of all entries to the given list. More... | |
| void | operator= (const T &) |
| Assignment of all entries to the given value. More... | |
| void | operator= (const zero) |
| Assignment of all entries to zero. More... | |
Public Member Functions inherited from UList< T > | |
| UList () | |
| Null constructor. More... | |
| UList (T *__restrict__ v, label size) | |
| Construct from components. More... | |
| UList (const UList< T > &)=default | |
| Copy construct. More... | |
| label | fcIndex (const label i) const |
| Return the forward circular index, i.e. the next index. More... | |
| label | rcIndex (const label i) const |
| Return the reverse circular index, i.e. the previous index. More... | |
| std::streamsize | byteSize () const |
| Return the binary size in number of characters of the UList. More... | |
| const T * | cdata () const |
| Return a const pointer to the first data element,. More... | |
| T * | data () |
| Return a pointer to the first data element,. More... | |
| T & | first () |
| Return the first element of the list. More... | |
| const T & | first () const |
| Return first element of the list. More... | |
| T & | last () |
| Return the last element of the list. More... | |
| const T & | last () const |
| Return the last element of the list. More... | |
| void | checkStart (const label start) const |
| Check start is within valid range (0 ... size-1) More... | |
| void | checkSize (const label size) const |
| Check size is within valid range (0 ... size) More... | |
| void | checkIndex (const label i) const |
| Check index i is within valid range (0 ... size-1) More... | |
| void | shallowCopy (const UList< T > &) |
| Copy the pointer held by the given UList. More... | |
| void | deepCopy (const UList< T > &) |
| Copy elements of the given UList. More... | |
| T & | operator[] (const label) |
| Return element of UList. More... | |
| const T & | operator[] (const label) const |
| Return element of constant UList. More... | |
| operator const Foam::List< T > & () const | |
| Allow cast to a const List<T>&. More... | |
| void | operator= (const T &) |
| Assignment of all entries to the given value. More... | |
| void | operator= (const zero) |
| Assignment of all entries to zero. More... | |
| iterator | begin () |
| Return an iterator to begin traversing the UList. More... | |
| iterator | end () |
| Return an iterator to end traversing the UList. More... | |
| const_iterator | cbegin () const |
| Return const_iterator to begin traversing the constant UList. More... | |
| const_iterator | cend () const |
| Return const_iterator to end traversing the constant UList. More... | |
| const_iterator | begin () const |
| Return const_iterator to begin traversing the constant UList. More... | |
| const_iterator | end () const |
| Return const_iterator to end traversing the constant UList. More... | |
| reverse_iterator | rbegin () |
| Return reverse_iterator to begin reverse traversing the UList. More... | |
| reverse_iterator | rend () |
| Return reverse_iterator to end reverse traversing the UList. More... | |
| const_reverse_iterator | crbegin () const |
| Return const_reverse_iterator to begin reverse traversing the UList. More... | |
| const_reverse_iterator | crend () const |
| Return const_reverse_iterator to end reverse traversing the UList. More... | |
| const_reverse_iterator | rbegin () const |
| Return const_reverse_iterator to begin reverse traversing the UList. More... | |
| const_reverse_iterator | rend () const |
| Return const_reverse_iterator to end reverse traversing the UList. More... | |
| label | size () const |
| Return the number of elements in the UList. More... | |
| label | max_size () const |
| Return size of the largest possible UList. More... | |
| bool | empty () const |
| Return true if the UList is empty (ie, size() is zero) More... | |
| void | swap (UList< T > &) |
| Swap two ULists of the same type in constant time. More... | |
| bool | operator== (const UList< T > &) const |
| Equality operation on ULists of the same type. More... | |
| bool | operator!= (const UList< T > &) const |
| The opposite of the equality operation. Takes linear time. More... | |
| bool | operator< (const UList< T > &) const |
| Compare two ULists lexicographically. Takes linear time. More... | |
| bool | operator> (const UList< T > &) const |
| Compare two ULists lexicographically. Takes linear time. More... | |
| bool | operator<= (const UList< T > &) const |
| Return true if !(a > b). Takes linear time. More... | |
| bool | operator>= (const UList< T > &) const |
| Return true if !(a < b). Takes linear time. More... | |
| const bool & | operator[] (const label i) const |
Public Member Functions inherited from mappedPatchBase | |
| TypeName ("mappedPatchBase") | |
| Runtime type information. More... | |
| mappedPatchBase (const polyPatch &) | |
| Construct from patch. More... | |
| mappedPatchBase (const polyPatch &pp, const word &nbrRegionName, const word &nbrPatchName, const cyclicTransform &transform) | |
| Construct from components. More... | |
| mappedPatchBase (const polyPatch &pp, const dictionary &dict, const transformType tt) | |
| Construct from dictionary. More... | |
| mappedPatchBase (const polyPatch &, const mappedPatchBase &) | |
| Construct as copy, resetting patch. More... | |
| virtual | ~mappedPatchBase () |
| Destructor. More... | |
| void | clearOut (const bool move) |
| Clear out data on mesh change. More... | |
| template<class Type > | |
| tmp< Field< Type > > | fromNeighbour (const Field< Type > &nbrFld) const |
| Map/interpolate the neighbour patch field to this patch. More... | |
| template<class Type > | |
| tmp< Field< Type > > | fromNeighbour (const tmp< Field< Type >> &nbrFld) const |
| Map/interpolate the neighbour patch field to this patch. More... | |
| template<class Type > | |
| tmp< Field< Type > > | toNeighbour (const Field< Type > &fld) const |
| Map/interpolate patch field to the neighbour patch. More... | |
| template<class Type > | |
| tmp< Field< Type > > | toNeighbour (const tmp< Field< Type >> &fld) const |
| Map/interpolate patch field to the neighbour patch. More... | |
| template<class Type > | |
| Foam::tmp< Foam::Field< Type > > | fromNeighbour (const Field< Type > &nbrFld) const |
| template<class Type > | |
| Foam::tmp< Foam::Field< Type > > | fromNeighbour (const tmp< Field< Type >> &nbrFld) const |
| template<class Type > | |
| Foam::tmp< Foam::Field< Type > > | toNeighbour (const Field< Type > &fld) const |
| template<class Type > | |
| Foam::tmp< Foam::Field< Type > > | toNeighbour (const tmp< Field< Type >> &fld) const |
Public Member Functions inherited from mappedPatchBaseBase | |
| TypeName ("mappedPatchBaseBase") | |
| Runtime type information. More... | |
| mappedPatchBaseBase (const polyPatch &) | |
| Construct from patch. More... | |
| mappedPatchBaseBase (const polyPatch &pp, const word &nbrRegionName, const word &nbrPatchName, const cyclicTransform &transform) | |
| Construct from components. More... | |
| mappedPatchBaseBase (const polyPatch &pp, const dictionary &dict, const transformType tt) | |
| Construct from dictionary. More... | |
| mappedPatchBaseBase (const polyPatch &, const mappedPatchBaseBase &) | |
| Construct as copy, resetting patch. More... | |
| virtual | ~mappedPatchBaseBase () |
| Destructor. More... | |
| const word & | nbrRegionName () const |
| Name of the region to map from. More... | |
| const word & | nbrPatchName () const |
| Name of the patch to map from. More... | |
| const transformer & | transform () const |
| The transformation between the patches. More... | |
| bool | sameRegion () const |
| Is the neighbour region the same as for this patch? More... | |
| bool | samePatch () const |
| Is the neighbour patch the same as this patch? More... | |
| bool | sameUntransformedPatch () const |
| Is the neighbour patch the same as this patch with no transform? More... | |
| bool | haveNbr () const |
| Is the neighbour available? More... | |
| const polyMesh & | nbrMesh () const |
| Get the mesh for the region to map from. More... | |
| const polyPatch & | nbrPolyPatch () const |
| Get the patch to map from. More... | |
| template<class PatchField , class FieldType > | |
| void | validateForField (const PatchField &field, const FieldType &iF, const dictionary &context, const label froms=from::any) const |
| Validate that the map is appropriate for the given. More... | |
| template<class PatchFieldType , class FieldType > | |
| void | validateMapForField (const PatchFieldType &field, const FieldType &iF, const dictionary &context, const label froms) |
| template<class PatchFieldType , class FieldType > | |
| void | validateForField (const PatchFieldType &field, const FieldType &iF, const dictionary &context, const label froms) const |
Protected Member Functions | |
| virtual void | calcGeometry (PstreamBuffers &) |
| Calculate the patch geometry. More... | |
| virtual void | movePoints (PstreamBuffers &, const pointField &) |
| Correct patches after moving points. More... | |
| virtual void | topoChange (PstreamBuffers &) |
| Update of the patch topology. More... | |
Protected Member Functions inherited from polyPatch | |
| virtual void | initCalcGeometry (PstreamBuffers &) |
| Initialise the calculation of the patch geometry. More... | |
| virtual void | movePoints (const pointField &p) |
| Correct patches after moving points. More... | |
| virtual void | initMovePoints (PstreamBuffers &, const pointField &) |
| Initialise the patches for moving points. More... | |
| virtual void | initTopoChange (PstreamBuffers &) |
| Initialise the update of the patch topology. More... | |
| virtual void | clearGeom () |
| Clear geometry. More... | |
| virtual void | rename (const wordList &newNames) |
| Reset the patch name. More... | |
| virtual void | reorder (const labelUList &newToOldIndex) |
| Reset the patch index. More... | |
Protected Member Functions inherited from mappedPatchBase | |
| virtual tmp< vectorField > | patchFaceAreas () const |
| Get the face-areas for this patch. More... | |
| virtual tmp< pointField > | patchFaceCentres () const |
| Get the face-centres for this patch. More... | |
| virtual tmp< pointField > | patchLocalPoints () const |
| Get the local points for this patch. More... | |
| tmp< vectorField > | nbrPatchFaceAreas () const |
| Get the face-areas for the neighbour patch. More... | |
| tmp< pointField > | nbrPatchFaceCentres () const |
| Get the face-centres for the neighbour patch. More... | |
| tmp< pointField > | nbrPatchLocalPoints () const |
| Get the local points for the neighbour patch. More... | |
| bool | mappingIsValid () const |
| Return whether or not the mapping is valid. More... | |
| void | calcMapping () const |
| Calculate mapping. More... | |
| virtual void | clearOut () const |
| Clear out data on mesh change. More... | |
| bool | nbrPatchIsMapped () const |
| Return whether or not the neighbour patch is of mapped type. More... | |
| const mappedPatchBase & | nbrMappedPatch () const |
| Get the mapped neighbouring patch. More... | |
| bool | symmetric () const |
| Determine whether the neighbouring patch maps from this patch in. More... | |
Additional Inherited Members | |
Public Types inherited from PrimitivePatch< SubList< face >, const pointField & > | |
| enum | surfaceTopo |
| Enumeration defining the surface type. Used in check routines. More... | |
| typedef SubList< face > | FaceListType |
| typedef std::remove_reference< SubList< face > >::type::value_type | FaceType |
| typedef const pointField & | PointFieldType |
| typedef std::remove_reference< const pointField & >::type::value_type | PointType |
Public Types inherited from UList< T > | |
| typedef T | value_type |
| Type of values the UList contains. More... | |
| typedef T & | reference |
| Type that can be used for storing into. More... | |
| typedef const T & | const_reference |
| Type that can be used for storing into. More... | |
| typedef label | difference_type |
| The type that can represent the difference between any two. More... | |
| typedef label | size_type |
| The type that can represent the size of a UList. More... | |
| typedef T * | iterator |
| Random access iterator for traversing UList. More... | |
| typedef const T * | const_iterator |
| Random access iterator for traversing UList. More... | |
| typedef std::reverse_iterator< iterator > | reverse_iterator |
| Reverse iterator for reverse traversal of UList. More... | |
| typedef std::reverse_iterator< const_iterator > | const_reverse_iterator |
| Reverse iterator for reverse traversal of constant UList. More... | |
Public Types inherited from mappedPatchBaseBase | |
| enum class | transformType { none , defaultNone , specified } |
| The type of the transformation permitted/required by this patch. More... | |
| enum class | moveUpdate { always , detect , never } |
| Enumeration for the condition that triggers re-calculation of the. More... | |
Static Public Member Functions inherited from polyPatch | |
| static autoPtr< polyPatch > | New (const word &patchType, const word &name, const label size, const label start, const label index, const polyBoundaryMesh &bm) |
| Return a pointer to a new patch created on freestore from. More... | |
| static autoPtr< polyPatch > | New (const word &name, const dictionary &dict, const label index, const polyBoundaryMesh &bm) |
| Return a pointer to a new patch created on freestore from. More... | |
| static autoPtr< polyPatch > | New (const word &patchType, const word &name, const dictionary &dict, const label index, const polyBoundaryMesh &bm) |
| Return a pointer to a new patch created on freestore from. More... | |
| static bool | constraintType (const word &pt) |
| Return true if the given type is a constraint type. More... | |
| static wordList | constraintTypes () |
| Return a list of all the constraint patch types. More... | |
Static Public Member Functions inherited from SubList< T > | |
| static const SubList< T > & | null () |
| Return a null SubList. More... | |
Static Public Member Functions inherited from UList< T > | |
| static const UList< T > & | null () |
| Return a null UList. More... | |
Static Public Member Functions inherited from mappedPatchBase | |
| static const mappedPatchBase & | getMap (const polyPatch &patch) |
| Cast the given polyPatch to a mappedPatchBase. Handle errors. More... | |
Static Public Member Functions inherited from mappedPatchBaseBase | |
| template<class PatchField , class FieldType > | |
| static void | validateMapForField (const PatchField &field, const FieldType &iF, const dictionary &context, const label froms=from::any) |
| Validate that the map exists and is appropriate for the given. More... | |
| static bool | moving (const polyPatch &patch, const polyPatch &nbrPatch) |
| Return whether or not the patches have moved. More... | |
| static bool | specified (const dictionary &dict) |
| Return whether or not the given dictionary contains a. More... | |
Static Public Attributes inherited from polyPatch | |
| static int | disallowGenericPolyPatch |
| Debug switch to disallow the use of genericPolyPatch. More... | |
Static Public Attributes inherited from mappedPatchBaseBase | |
| static const NamedEnum< moveUpdate, 3 > | moveUpdateNames_ {"always", "detect", "never"} |
| Names of the move-update conditions. More... | |
Protected Attributes inherited from patchIdentifier | |
| word | name_ |
| Name of patch. More... | |
| label | index_ |
| Index of patch in boundary. More... | |
| word | physicalType_ |
| Optional physical type. More... | |
| wordList | inGroups_ |
| Optional groups patch belongs to. More... | |
Protected Attributes inherited from mappedPatchBase | |
| const bool | usingTree_ |
| Are we using the tree mapping method, or a patch-to-patch. More... | |
| autoPtr< distributionMap > | treeMapPtr_ |
| Distributor (if using tree) More... | |
| labelList | treeNbrPatchFaceIndices_ |
| Indices of the neighbouring patch faces who's values. More... | |
| autoPtr< patchToPatch > | patchToPatchPtr_ |
| Patch-to-patch intersection engine (if using patch-to-patch) More... | |
| const scalar | matchTol_ |
| Matching tolerance. More... | |
| label | mappingIsValid_ |
| Is the mapping engine up to date? Zero if out of date. One if out. More... | |
| label | nbrMappingIsValid_ |
| If the neighbour's mapping engine (if there is one) up to date? More... | |
Protected Attributes inherited from mappedPatchBaseBase | |
| const polyPatch & | patch_ |
| Patch to map to. More... | |
| const coupleGroupIdentifier | coupleGroup_ |
| Couple group for the region/patch to map from. More... | |
| word | nbrRegionName_ |
| Name of the region to map from. More... | |
| word | nbrPatchName_ |
| Name of the patch to map from. More... | |
| cyclicTransform | transform_ |
| The transformation between the patches. More... | |
| const moveUpdate | moveUpdate_ |
| The condition that triggers re-calculation following motion. More... | |
Static Protected Attributes inherited from mappedPatchBase | |
| static const scalar | defaultMatchTol_ = 1e-4 |
| Default Matching tolerance. More... | |
Poly patch which can do interpolative mapping of values from another globally conforming poly patch.
Definition at line 51 of file mappedPolyPatch.H.
| mappedPolyPatch | ( | const word & | name, |
| const label | size, | ||
| const label | start, | ||
| const label | index, | ||
| const polyBoundaryMesh & | bm, | ||
| const word & | patchType | ||
| ) |
Construct from components.
Definition at line 69 of file mappedPolyPatch.C.
References List< T >::append(), Foam::findIndex(), and patchIdentifier::inGroups().
Referenced by mappedPolyPatch::clone().


| mappedPolyPatch | ( | const word & | name, |
| const dictionary & | dict, | ||
| const label | index, | ||
| const polyBoundaryMesh & | bm, | ||
| const word & | patchType | ||
| ) |
Construct from dictionary.
Definition at line 90 of file mappedPolyPatch.C.
References List< T >::append(), Foam::findIndex(), and patchIdentifier::inGroups().

| mappedPolyPatch | ( | const mappedPolyPatch & | pp, |
| const polyBoundaryMesh & | bm | ||
| ) |
Construct as copy, resetting the boundary mesh.
Definition at line 110 of file mappedPolyPatch.C.
| mappedPolyPatch | ( | const mappedPolyPatch & | pp, |
| const polyBoundaryMesh & | bm, | ||
| const label | index, | ||
| const label | newSize, | ||
| const label | newStart | ||
| ) |
Construct given the original patch and resetting the.
face list and boundary mesh information
Definition at line 121 of file mappedPolyPatch.C.
|
virtual |
Destructor.
Definition at line 137 of file mappedPolyPatch.C.
|
protectedvirtual |
Calculate the patch geometry.
Reimplemented from polyPatch.
Definition at line 42 of file mappedPolyPatch.C.
References polyPatch::calcGeometry(), and mappedPatchBase::clearOut().

|
protectedvirtual |
Correct patches after moving points.
Reimplemented from polyPatch.
Definition at line 49 of file mappedPolyPatch.C.
References mappedPatchBase::clearOut(), polyPatch::movePoints(), and p.

|
protectedvirtual |
Update of the patch topology.
Reimplemented from polyPatch.
Definition at line 60 of file mappedPolyPatch.C.
References mappedPatchBase::clearOut(), and polyPatch::topoChange().

| TypeName | ( | "mapped" | ) |
Runtime type information.
|
inlinevirtual |
Construct and return a clone, resetting the boundary mesh.
Reimplemented from polyPatch.
Definition at line 119 of file mappedPolyPatch.H.
References mappedPolyPatch::mappedPolyPatch().

|
inlinevirtual |
Construct and return a clone, resetting the face list.
and boundary mesh
Reimplemented from polyPatch.
Definition at line 126 of file mappedPolyPatch.H.
|
virtual |
Write the polyPatch data as a dictionary.
Reimplemented from mappedPatchBase.
Definition at line 143 of file mappedPolyPatch.C.
References mappedPatchBase::write(), and polyPatch::write().
