createExternalCoupledPatchGeometryTemplates.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) 2013-2024 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 
27 #include "fvMesh.H"
29 #include "IOobjectList.H"
30 
31 using namespace Foam;
32 
33 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
34 
35 template<class Type>
36 void processField
37 (
38  const fvMesh& mesh,
39  const IOobjectList& objects,
40  const word& fieldName,
41  label& processed
42 )
43 {
44  if (processed != -1)
45  {
46  return;
47  }
48 
49  IOobjectList fieldObjbjects(objects.lookupClass(VolField<Type>::typeName));
50 
51  if (fieldObjbjects.lookup(fieldName) != nullptr)
52  {
53  VolField<Type> vtf(*fieldObjbjects.lookup(fieldName), mesh);
54  const typename VolField<Type>::Boundary& bf =
55  vtf.boundaryField();
56 
57  forAll(bf, patchi)
58  {
60  {
61  Info<< "Generating external coupled geometry for field "
62  << fieldName << endl;
63 
65  refCast<const externalCoupledMixedFvPatchField<Type>>
66  (
67  bf[patchi]
68  );
69 
70  pf.writeGeometry();
71  processed = 1;
72 
73  break;
74  }
75  }
76 
77  if (processed != 1)
78  {
79  processed = 0;
80 
81  Info<< "Field " << fieldName << " found, but does not have any "
83  << " boundary conditions" << endl;
84  }
85  }
86 }
87 
88 
89 // ************************************************************************* //
#define forAll(list, i)
Loop across all elements in list.
Definition: UList.H:434
Generic GeometricBoundaryField class.
Generic GeometricField class.
List of IOobjects with searching and retrieving facilities.
Definition: IOobjectList.H:53
This boundary condition provides an interface to an external application. Values are transferred as p...
Mesh data needed to do the Finite Volume discretisation.
Definition: fvMesh.H:99
A class for handling words, derived from string.
Definition: word.H:62
label patchi
Namespace for OpenFOAM.
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
Ostream & endl(Ostream &os)
Add newline and flush stream.
Definition: Ostream.H:257
messageStream Info
bool isA(const Type &t)
Check if a dynamic_cast to typeid is possible.
Definition: typeInfo.H:166
void processField(bool &processed, const word &fieldName)
objects