reconstructLagrangianPositions.C
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration | Website: https://openfoam.org
5  \\ / A nd | Copyright (C) 2011-2022 OpenFOAM Foundation
6  \\/ M anipulation |
7 -------------------------------------------------------------------------------
8 License
9  This file is part of OpenFOAM.
10 
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.
15 
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
19  for more details.
20 
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/>.
23 
24 \*---------------------------------------------------------------------------*/
25 
26 #include "reconstructLagrangian.H"
27 #include "labelIOList.H"
28 #include "passiveParticleCloud.H"
29 
30 // * * * * * * * * * * * * * * * Global Functions * * * * * * * * * * * * * //
31 
33 (
34  const polyMesh& mesh,
35  const word& cloudName,
36  const PtrList<fvMesh>& meshes,
37  const labelListList& faceProcAddressing,
38  const labelListList& cellProcAddressing
39 )
40 {
41  passiveParticleCloud lagrangianPositions
42  (
43  mesh,
44  cloudName,
45  IDLList<passiveParticle>()
46  );
47 
48  forAll(meshes, i)
49  {
50  const labelList& cellMap = cellProcAddressing[i];
51  const labelList& faceMap = faceProcAddressing[i];
52 
53  Cloud<passiveParticle> lpi(meshes[i], cloudName, false);
54 
55  forAllConstIter(Cloud<passiveParticle>, lpi, iter)
56  {
57  const passiveParticle& ppi = iter();
58 
59  const label mappedCell = cellMap[ppi.cell()];
60 
61  // Inverting sign if necessary and subtracting 1 from
62  // faceProcAddressing
63  label mappedTetFace = mag(faceMap[ppi.tetFace()]) - 1;
64 
65  lagrangianPositions.append
66  (
67  new passiveParticle
68  (
69  mesh,
70  ppi.coordinates(),
71  mappedCell,
72  mappedTetFace,
73  ppi.procTetPt(meshes[i], mesh, mappedCell, mappedTetFace)
74  )
75  );
76  }
77  }
78 
79  IOPosition<Cloud<passiveParticle>>(lagrangianPositions).write();
80 }
81 
82 
83 // ************************************************************************* //
#define forAll(list, i)
Loop across all elements in list.
Definition: UList.H:434
#define forAllConstIter(Container, container, iter)
Iterate across all elements in the container object of type.
Definition: UList.H:477
void write(std::ostream &os, const bool binary, List< floatScalar > &fField)
Write floats ascii or binary.
void reconstructLagrangianPositions(const polyMesh &mesh, const word &cloudName, const PtrList< fvMesh > &meshes, const labelListList &faceProcAddressing, const labelListList &cellProcAddressing)
List< label > labelList
A List of labels.
Definition: labelList.H:56
intWM_LABEL_SIZE_t label
A label is an int32_t or int64_t as specified by the pre-processor macro WM_LABEL_SIZE.
Definition: label.H:59
List< labelList > labelListList
A List of labelList.
Definition: labelList.H:57
dimensioned< scalar > mag(const dimensioned< Type > &)
Pair< int > faceMap(const label facePi, const face &faceP, const label faceNi, const face &faceN)
const word cloudName(propsDict.lookup("cloudName"))