calculatedLagrangianPatchField.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) 2025 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 
28 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
29 
30 template<class Type>
32 {
34 }
35 
36 
37 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
38 
39 template<class Type>
41 (
42  const LagrangianPatch& p,
43  const regIOobject& iIo
44 )
45 :
46  LagrangianPatchField<Type>(p, iIo)
47 {}
48 
49 
50 template<class Type>
52 (
53  const LagrangianPatch& p,
54  const regIOobject& iIo,
55  const dictionary& dict
56 )
57 :
58  LagrangianPatchField<Type>(p, iIo, dict)
59 {}
60 
61 
62 template<class Type>
64 (
66 )
67 :
68  LagrangianPatchField<Type>(ptf)
69 {}
70 
71 
72 template<class Type>
74 (
76  const regIOobject& iIo
77 )
78 :
79  LagrangianPatchField<Type>(ptf, iIo)
80 {}
81 
82 
83 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
84 
85 template<class Type>
86 template<class Type2>
89 (
91 )
92 {
93  typename LagrangianPatchConstructorTable::iterator patchTypeCstrIter =
94  LagrangianPatchConstructorTablePtr_->find(pf.patch().type());
95 
96  if (patchTypeCstrIter != LagrangianPatchConstructorTablePtr_->end())
97  {
99  (
100  patchTypeCstrIter()
101  (
102  pf.patch(),
104  )
105  );
106  }
107  else
108  {
110  (
112  (
113  pf.patch(),
115  )
116  );
117  }
118 }
119 
120 
121 // ************************************************************************* //
Pre-declare SubField and related Field type.
Definition: Field.H:83
static const Field< Type > & null()
Return a null field.
Definition: Field.H:112
Base class for Lagrangian boundary conditions.
const LagrangianPatch & patch() const
Return patch.
static autoPtr< LagrangianPatchField< Type > > NewCalculatedType(const LagrangianPatchField< Type2 > &)
Return a pointer to a new calculatedPointPatchField.
static const word & calculatedType()
Return the type of the calculated form of LagrangianPatchField.
Base class for Lagrangian patches.
An auto-pointer similar to the STL auto_ptr but with automatic casting to a reference to the type and...
Definition: autoPtr.H:51
A calculated boundary condition for Lagrangian. This condition does not provide any evaluation functi...
calculatedLagrangianPatchField(const LagrangianPatch &, const regIOobject &)
Construct from patch and internal field.
A list of keywords followed by any number of values (e.g. words and numbers) or sub-dictionaries.
Definition: dictionary.H:162
regIOobject is an abstract class derived from IOobject to handle automatic object registration with t...
Definition: regIOobject.H:55
A class for handling words, derived from string.
Definition: word.H:62
dictionary dict
volScalarField & p