Base class for Arbitrary Mesh Interface (AMI) methods. More...


Public Member Functions | |
| TypeName ("AMIMethod") | |
| Runtime type information. More... | |
| declareRunTimeSelectionTable (autoPtr, AMIMethod, components,(const SourcePatch &srcPatch, const TargetPatch &tgtPatch, const scalarField &srcMagSf, const scalarField &tgtMagSf, const faceAreaIntersect::triangulationMode &triMode, const bool reverseTarget, const bool requireMatch),(srcPatch, tgtPatch, srcMagSf, tgtMagSf, triMode, reverseTarget, requireMatch)) | |
| Declare runtime constructor selection table. More... | |
| AMIMethod (const SourcePatch &srcPatch, const TargetPatch &tgtPatch, const scalarField &srcMagSf, const scalarField &tgtMagSf, const faceAreaIntersect::triangulationMode &triMode, const bool reverseTarget, const bool requireMatch) | |
| Construct from components. More... | |
| virtual | ~AMIMethod () |
| Destructor. More... | |
| const labelList & | srcNonOverlap () const |
| Labels of faces that are not overlapped by any target faces. More... | |
| virtual bool | conformal () const |
| Flag to indicate that interpolation patches are conformal. More... | |
| virtual void | calculate (labelListList &srcAddress, scalarListList &srcWeights, labelListList &tgtAddress, scalarListList &tgtWeights, label srcFacei=-1, label tgtFacei=-1)=0 |
| Update addressing and weights. More... | |
Static Public Member Functions | |
| static autoPtr< AMIMethod > | New (const word &methodName, const SourcePatch &srcPatch, const TargetPatch &tgtPatch, const scalarField &srcMagSf, const scalarField &tgtMagSf, const faceAreaIntersect::triangulationMode &triMode, const bool reverseTarget, const bool requireMatch) |
| Selector. More... | |
Protected Types | |
| typedef treeDataPrimitivePatch< TargetPatch > | treeType |
| Local typedef to octree tree-type. More... | |
Protected Member Functions | |
| void | checkPatches () const |
| Check AMI patch coupling. More... | |
| bool | initialise (labelListList &srcAddress, scalarListList &srcWeights, labelListList &tgtAddress, scalarListList &tgtWeights, label &srcFacei, label &tgtFacei) |
| Initialise and return true if all ok. More... | |
| void | writeIntersectionOBJ (const scalar area, const face &f1, const face &f2, const pointField &f1Points, const pointField &f2Points) const |
| Write triangle intersection to OBJ file. More... | |
| void | resetTree () |
| Reset the octree for the target patch face search. More... | |
| label | findTargetFace (const label srcFacei) const |
| Find face on target patch that overlaps source face. More... | |
| void | appendNbrFaces (const label facei, const TargetPatch &patch, const DynamicList< label > &visitedFaces, DynamicList< label > &faceIDs) const |
| Add faces neighbouring facei to the ID list. More... | |
Protected Attributes | |
| const SourcePatch & | srcPatch_ |
| Reference to source patch. More... | |
| const TargetPatch & | tgtPatch_ |
| Reference to target patch. More... | |
| const bool | reverseTarget_ |
| Flag to indicate that the two patches are co-directional and. More... | |
| const bool | requireMatch_ |
| Flag to indicate that the two patches must be matched/an overlap. More... | |
| const scalarField & | srcMagSf_ |
| Source face areas. More... | |
| const scalarField & | tgtMagSf_ |
| Target face areas. More... | |
| labelList | srcNonOverlap_ |
| Labels of faces that are not overlapped by any target faces. More... | |
| autoPtr< indexedOctree< treeType > > | treePtr_ |
| Octree used to find face seeds. More... | |
| const faceAreaIntersect::triangulationMode | triMode_ |
| Face triangulation mode. More... | |
Base class for Arbitrary Mesh Interface (AMI) methods.
Definition at line 55 of file AMIMethod.H.
|
protected |
Local typedef to octree tree-type.
Definition at line 72 of file AMIMethod.H.
| AMIMethod | ( | const SourcePatch & | srcPatch, |
| const TargetPatch & | tgtPatch, | ||
| const scalarField & | srcMagSf, | ||
| const scalarField & | tgtMagSf, | ||
| const faceAreaIntersect::triangulationMode & | triMode, | ||
| const bool | reverseTarget, | ||
| const bool | requireMatch | ||
| ) |
Construct from components.
Definition at line 317 of file AMIMethod.C.
|
virtual |
Destructor.
Definition at line 341 of file AMIMethod.C.
|
protected |
Check AMI patch coupling.
Definition at line 34 of file AMIMethod.C.
References Foam::endl(), AMIMethod< SourcePatch, TargetPatch >::initialise(), Foam::nl, Foam::Pout, and WarningInFunction.

|
protected |
Initialise and return true if all ok.
Definition at line 72 of file AMIMethod.C.
References Foam::abort(), Foam::endl(), Foam::FatalError, FatalErrorInFunction, forAll, Foam::Pout, List< T >::setSize(), WarningInFunction, and AMIMethod< SourcePatch, TargetPatch >::writeIntersectionOBJ().
Referenced by AMIMethod< SourcePatch, TargetPatch >::checkPatches().


|
protected |
Write triangle intersection to OBJ file.
Definition at line 147 of file AMIMethod.C.
References Foam::endl(), forAll, Foam::name(), Foam::nl, face::points(), Foam::Pout, List< T >::size(), and Foam::meshTools::writeOBJ().
Referenced by AMIMethod< SourcePatch, TargetPatch >::initialise().


|
protected |
Reset the octree for the target patch face search.
Definition at line 198 of file AMIMethod.C.
References AMIMethod< SourcePatch, TargetPatch >::findTargetFace(), and boundBox::inflate().

|
protected |
Find face on target patch that overlaps source face.
Definition at line 230 of file AMIMethod.C.
References AMIMethod< SourcePatch, TargetPatch >::appendNbrFaces(), face::centre(), Foam::endl(), PointIndexHit< Point >::hit(), PointIndexHit< Point >::hitPoint(), PointIndexHit< Point >::index(), and Foam::Pout.
Referenced by AMIMethod< SourcePatch, TargetPatch >::resetTree().


|
protected |
Add faces neighbouring facei to the ID list.
Definition at line 261 of file AMIMethod.C.
References DynamicList< T, SizeInc, SizeMult, SizeDiv >::append(), Foam::cos(), Foam::degToRad(), and forAll.
Referenced by AMIMethod< SourcePatch, TargetPatch >::findTargetFace().


| TypeName | ( | "AMIMethod< SourcePatch, TargetPatch >" | ) |
Runtime type information.
| declareRunTimeSelectionTable | ( | autoPtr | , |
| AMIMethod< SourcePatch, TargetPatch > | , | ||
| components | , | ||
| (const SourcePatch &srcPatch, const TargetPatch &tgtPatch, const scalarField &srcMagSf, const scalarField &tgtMagSf, const faceAreaIntersect::triangulationMode &triMode, const bool reverseTarget, const bool requireMatch) | , | ||
| (srcPatch, tgtPatch, srcMagSf, tgtMagSf, triMode, reverseTarget, requireMatch) | |||
| ) |
Declare runtime constructor selection table.
|
static |
Selector.
Definition at line 31 of file AMIMethodNew.C.
References Foam::endl(), Foam::exit(), Foam::FatalError, FatalErrorInFunction, Foam::Info, and Foam::nl.

|
inline |
Labels of faces that are not overlapped by any target faces.
Note: this should be empty for correct functioning
Definition at line 28 of file AMIMethodI.H.
|
virtual |
Flag to indicate that interpolation patches are conformal.
Reimplemented in partialFaceAreaWeightAMI< SourcePatch, TargetPatch >.
Definition at line 348 of file AMIMethod.C.
|
pure virtual |
Update addressing and weights.
Implemented in faceAreaWeightAMI< SourcePatch, TargetPatch >, mapNearestAMI< SourcePatch, TargetPatch >, directAMI< SourcePatch, TargetPatch >, and partialFaceAreaWeightAMI< SourcePatch, TargetPatch >.
|
protected |
Reference to source patch.
Definition at line 78 of file AMIMethod.H.
|
protected |
Reference to target patch.
Definition at line 81 of file AMIMethod.H.
|
protected |
Flag to indicate that the two patches are co-directional and.
that the orientation of the target patch should be reversed
Definition at line 85 of file AMIMethod.H.
|
protected |
Flag to indicate that the two patches must be matched/an overlap.
exists between them
Definition at line 89 of file AMIMethod.H.
|
protected |
Source face areas.
Definition at line 92 of file AMIMethod.H.
|
protected |
Target face areas.
Definition at line 95 of file AMIMethod.H.
|
protected |
Labels of faces that are not overlapped by any target faces.
(should be empty for correct functioning)
Definition at line 99 of file AMIMethod.H.
|
protected |
Octree used to find face seeds.
Definition at line 102 of file AMIMethod.H.
|
protected |
Face triangulation mode.
Definition at line 105 of file AMIMethod.H.
1.8.11