waveInletOutletFvPatchField.H
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) 2019-2023 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 Class
25  Foam::waveInletOutletFvPatchField
26 
27 Description
28  This boundary condition provides an inlet-outlet condition with differing
29  inlet values on either side of a wave interface. All the wave modelling
30  parameters are obtained from a centrally registered waveSuperposition
31  class.
32 
33 Usage
34  \table
35  Property | Description | Req'd? | Default
36  phi | Name of the flux field | no | phi
37  inletValueAbove | inlet value above the wave | no | None
38  inletValueBelow | inlet value below the wave | no | None
39  \endtable
40 
41  Example of the boundary condition specification:
42  \verbatim
43  <patchName>
44  {
45  type waveInletOutlet;
46  libs ("libwaves.so");
47  inletValueAbove 0.01;
48  inletValueBelow table ((0 0.01) (10 0.1));
49  }
50  \endverbatim
51 
52 See also
53  Foam::waveSuperposition
54 
55 SourceFiles
56  waveInletOutletFvPatchField.C
57 
58 \*---------------------------------------------------------------------------*/
59 
60 #ifndef waveInletOutletFvPatchField_H
61 #define waveInletOutletFvPatchField_H
62 
63 #include "mixedFvPatchField.H"
64 #include "Function1.H"
65 
66 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
67 
68 namespace Foam
69 {
70 
71 /*---------------------------------------------------------------------------*\
72  Class waveInletOutletFvPatchField Declaration
73 \*---------------------------------------------------------------------------*/
74 
75 template<class Type>
76 class waveInletOutletFvPatchField
77 :
78  public mixedFvPatchField<Type>
79 {
80  // Private Data
81 
82  //- Inlet value above the wave
83  const autoPtr<Function1<Type>> inletValueAbove_;
84 
85  //- Inlet value below the wave
86  const autoPtr<Function1<Type>> inletValueBelow_;
87 
88  //- Name of flux field
89  const word phiName_;
90 
91 
92 public:
93 
94  //- Runtime type information
95  TypeName("waveInletOutlet");
96 
97 
98  // Constructors
99 
100  //- Construct from patch, internal field and dictionary
102  (
103  const fvPatch&,
105  const dictionary&
106  );
107 
108  //- Construct by mapping the given field onto a new patch
110  (
112  const fvPatch&,
115  );
116 
117  //- Disallow copy without setting internal field reference
119  (
121  ) = delete;
122 
123  //- Copy constructor setting internal field reference
125  (
128  );
129 
130  //- Construct and return a clone setting internal field reference
132  (
134  ) const
135  {
136  return tmp<fvPatchField<Type>>
137  (
139  (
140  *this,
141  iF
142  )
143  );
144  }
145 
146 
147  // Member Functions
148 
149  //- Update the coefficients associated with the patch field
150  virtual void updateCoeffs();
151 
152  //- Write
153  virtual void write(Ostream&) const;
154 };
155 
156 
157 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
158 
159 } // End namespace Foam
160 
161 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
162 
163 #ifdef NoRepository
165 #endif
166 
167 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
168 
169 #endif
170 
171 // ************************************************************************* //
Field with dimensions and associated with geometry type GeoMesh which is used to size the field and a...
An Ostream is an abstract base class for all output systems (streams, files, token lists,...
Definition: Ostream.H:57
A list of keyword definitions, which are a keyword followed by any number of values (e....
Definition: dictionary.H:160
Foam::fvPatchFieldMapper.
tmp< fvPatchField< Type > > clone() const
Disallow clone without setting internal field reference.
Definition: fvPatchField.H:203
A finiteVolume patch using a polyPatch and a fvBoundaryMesh.
Definition: fvPatch.H:64
A class for managing temporary objects.
Definition: tmp.H:55
This boundary condition provides an inlet-outlet condition with differing inlet values on either side...
virtual void write(Ostream &) const
Write.
waveInletOutletFvPatchField(const fvPatch &, const DimensionedField< Type, volMesh > &, const dictionary &)
Construct from patch, internal field and dictionary.
TypeName("waveInletOutlet")
Runtime type information.
virtual void updateCoeffs()
Update the coefficients associated with the patch field.
Namespace for OpenFOAM.