1 /*---------------------------------------------------------------------------*\
3 \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
5 \\ / A nd | Copyright (C) 2004-2011 OpenCFD Ltd.
7 -------------------------------------------------------------------------------
9 This file is part of OpenFOAM.
11 OpenFOAM is free software: you can redistribute it and/or modify it
12 under the terms of the GNU General Public License as published by
13 the Free Software Foundation, either version 3 of the License, or
14 (at your option) any later version.
16 OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
17 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
21 You should have received a copy of the GNU General Public License
22 along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
24 \*---------------------------------------------------------------------------*/
26 #include "faceOnlySet.H"
27 #include "meshSearch.H"
28 #include "DynamicList.H"
31 #include "addToRunTimeSelectionTable.H"
33 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
37 defineTypeNameAndDebug(faceOnlySet, 0);
38 addToRunTimeSelectionTable(sampledSet, faceOnlySet, word);
42 // * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
44 bool Foam::faceOnlySet::trackToBoundary
46 passiveParticle& singleParticle,
47 DynamicList<point>& samplingPts,
48 DynamicList<label>& samplingCells,
49 DynamicList<label>& samplingFaces,
50 DynamicList<scalar>& samplingCurveDist
53 // distance vector between sampling points
54 const vector offset = end_ - start_;
55 const vector smallVec = tol*offset;
56 const scalar smallDist = mag(smallVec);
58 passiveParticleCloud particleCloud(mesh());
59 particle::TrackingData<passiveParticleCloud> trackData(particleCloud);
62 const point& trackPt = singleParticle.position();
66 point oldPoint = trackPt;
68 singleParticle.trackToFace(end_, trackData);
70 if (singleParticle.face() != -1 && mag(oldPoint - trackPt) > smallDist)
72 // Reached face. Sample.
73 samplingPts.append(trackPt);
74 samplingCells.append(singleParticle.cell());
75 samplingFaces.append(singleParticle.face());
76 samplingCurveDist.append(mag(trackPt - start_));
79 if (mag(trackPt - end_) < smallDist)
84 else if (singleParticle.onBoundary())
93 void Foam::faceOnlySet::calcSamples
95 DynamicList<point>& samplingPts,
96 DynamicList<label>& samplingCells,
97 DynamicList<label>& samplingFaces,
98 DynamicList<label>& samplingSegments,
99 DynamicList<scalar>& samplingCurveDist
102 // distance vector between sampling points
103 if (mag(end_ - start_) < SMALL)
105 FatalErrorIn("faceOnlySet::calcSamples()")
106 << "Incorrect sample specification :"
107 << " start equals end point." << endl
108 << " start:" << start_
113 const vector offset = (end_ - start_);
114 const vector normOffset = offset/mag(offset);
115 const vector smallVec = tol*offset;
116 const scalar smallDist = mag(smallVec);
118 // Force calculation of minimum-tet decomposition.
119 (void) mesh().tetBasePtIs();
121 // Get all boundary intersections
122 List<pointIndexHit> bHits = searchEngine().intersections
128 point bPoint(GREAT, GREAT, GREAT);
133 bPoint = bHits[0].hitPoint();
134 bFaceI = bHits[0].index();
137 // Get first tracking point. Use bPoint, bFaceI if provided.
140 label trackCellI = -1;
141 label trackFaceI = -1;
143 //Info<< "before getTrackingPoint : bPoint:" << bPoint
144 // << " bFaceI:" << bFaceI << endl;
158 //Info<< "after getTrackingPoint : "
159 // << " trackPt:" << trackPt
160 // << " trackCellI:" << trackCellI
161 // << " trackFaceI:" << trackFaceI
164 if (trackCellI == -1)
166 // Line start_ - end_ does not intersect domain at all.
167 // (or is along edge)
168 // Set points and cell/face labels to empty lists
169 //Info<< "calcSamples : Both start_ and end_ outside domain"
175 if (trackFaceI == -1)
177 // No boundary face. Check for nearish internal face
178 trackFaceI = findNearFace(trackCellI, trackPt, smallDist);
181 //Info<< "calcSamples : got first point to track from :"
182 // << " trackPt:" << trackPt
183 // << " trackCell:" << trackCellI
184 // << " trackFace:" << trackFaceI
188 // Track until hit end of all boundary intersections
191 // current segment number
194 // starting index of current segment in samplePts
195 label startSegmentI = 0;
197 // index in bHits; current boundary intersection
202 if (trackFaceI != -1)
204 //Info<< "trackPt:" << trackPt << " on face so use." << endl;
205 samplingPts.append(trackPt);
206 samplingCells.append(trackCellI);
207 samplingFaces.append(trackFaceI);
208 samplingCurveDist.append(mag(trackPt - start_));
211 // Initialize tracking starting from trackPt
212 passiveParticle singleParticle
219 bool reachedBoundary = trackToBoundary
228 // fill sampleSegments
229 for (label i = samplingPts.size() - 1; i >= startSegmentI; --i)
231 samplingSegments.append(segmentI);
235 if (!reachedBoundary)
237 //Info<< "calcSamples : Reached end of samples: "
238 // << " samplePt now:" << singleParticle.position()
244 // Go past boundary intersection where tracking stopped
245 // Use coordinate comparison instead of face comparison for
248 bool foundValidB = false;
250 while (bHitI < bHits.size())
253 (bHits[bHitI].hitPoint() - singleParticle.position())
256 //Info<< "Finding next boundary : "
257 // << "bPoint:" << bHits[bHitI].hitPoint()
258 // << " tracking:" << singleParticle.position()
259 // << " dist:" << dist
262 if (dist > smallDist)
264 // hitpoint is past tracking position
276 // No valid boundary intersection found beyond tracking position
280 // Update starting point for tracking
281 trackFaceI = bHits[bHitI].index();
282 trackPt = pushIn(bHits[bHitI].hitPoint(), trackFaceI);
283 trackCellI = getBoundaryCell(trackFaceI);
287 startSegmentI = samplingPts.size();
292 void Foam::faceOnlySet::genSamples()
294 // Storage for sample points
295 DynamicList<point> samplingPts;
296 DynamicList<label> samplingCells;
297 DynamicList<label> samplingFaces;
298 DynamicList<label> samplingSegments;
299 DynamicList<scalar> samplingCurveDist;
310 samplingPts.shrink();
311 samplingCells.shrink();
312 samplingFaces.shrink();
313 samplingSegments.shrink();
314 samplingCurveDist.shrink();
328 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
330 Foam::faceOnlySet::faceOnlySet
333 const polyMesh& mesh,
334 meshSearch& searchEngine,
340 sampledSet(name, mesh, searchEngine, axis),
353 Foam::faceOnlySet::faceOnlySet
356 const polyMesh& mesh,
357 meshSearch& searchEngine,
358 const dictionary& dict
361 sampledSet(name, mesh, searchEngine, dict),
362 start_(dict.lookup("start")),
363 end_(dict.lookup("end"))
374 // * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
376 Foam::faceOnlySet::~faceOnlySet()
380 // ************************************************************************* //