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-2018 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 
28 #include "IOobjectList.H"
29 
30 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
31 
32 template<class Type>
33 void processField
34 (
35  const fvMesh& mesh,
36  const IOobjectList& objects,
37  const word& fieldName,
38  label& processed
39 )
40 {
41  if (processed != -1)
42  {
43  return;
44  }
45 
46  typedef GeometricField<Type, fvPatchField, volMesh> fieldType;
47 
48  const word timeName(mesh.time().timeName());
49 
50  IOobjectList fieldObjbjects(objects.lookupClass(fieldType::typeName));
51 
52  if (fieldObjbjects.lookup(fieldName) != nullptr)
53  {
54  fieldType vtf(*fieldObjbjects.lookup(fieldName), mesh);
55  const typename fieldType::Boundary& bf =
56  vtf.boundaryField();
57 
58  forAll(bf, patchi)
59  {
60  if (isA<externalCoupledMixedFvPatchField<Type>>(bf[patchi]))
61  {
62  Info<< "Generating external coupled geometry for field "
63  << fieldName << endl;
64 
65  const externalCoupledMixedFvPatchField<Type>& pf =
66  refCast<const externalCoupledMixedFvPatchField<Type>>
67  (
68  bf[patchi]
69  );
70 
71  pf.writeGeometry();
72  processed = 1;
73 
74  break;
75  }
76  }
77 
78  if (processed != 1)
79  {
80  processed = 0;
81 
82  Info<< "Field " << fieldName << " found, but does not have any "
83  << externalCoupledMixedFvPatchField<Type>::typeName
84  << " boundary conditions" << endl;
85  }
86  }
87 }
88 
89 
90 // ************************************************************************* //
bool isA(const Type &t)
Check if a dynamic_cast to typeid is possible.
Definition: typeInfo.H:134
#define forAll(list, i)
Loop across all elements in list.
Definition: UList.H:428
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:256
dynamicFvMesh & mesh
word timeName
Definition: getTimeIndex.H:3
label patchi
messageStream Info
void processField(bool &processed, const word &fieldName)