waveVelocityFvPatchVectorField.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) 2017-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::waveVelocityFvPatchVectorField
26 
27 Description
28  This boundary condition provides a waveVelocity condition. This sets the
29  velocity to that specified by a superposition of wave models. All the
30  wave modelling parameters are obtained from a centrally registered
31  waveSuperposition class.
32 
33 Usage
34  \table
35  Property | Description | Req'd? | Default
36  phi | Name of the flux field | no | phi
37  \endtable
38 
39  Example of the boundary condition specification:
40  \verbatim
41  <patchName>
42  {
43  type waveVelocity;
44  libs ("libwaves.so");
45  }
46  \endverbatim
47 
48 See also
49  Foam::waveSuperposition
50 
51 SourceFiles
52  waveVelocityFvPatchVectorField.C
53 
54 \*---------------------------------------------------------------------------*/
55 
56 #ifndef waveVelocityFvPatchVectorField_H
57 #define waveVelocityFvPatchVectorField_H
58 
60 #include "waveSuperposition.H"
61 
62 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
63 
64 namespace Foam
65 {
66 
67 class fvMeshSubset;
68 
69 /*---------------------------------------------------------------------------*\
70  Class waveVelocityFvPatchVectorField Declaration
71 \*---------------------------------------------------------------------------*/
72 
73 class waveVelocityFvPatchVectorField
74 :
75  public fixedValueInletOutletFvPatchField<vector>
76 {
77  // Private Data
78 
79  //- Mesh subset corresponding to the patch adjacent cells
80  mutable autoPtr<fvMeshSubset> faceCellSubset_;
81 
82  //- Time index for keeping the subset up to date
83  mutable label faceCellSubsetTimeIndex_;
84 
85 
86 public:
87 
88  //- Runtime type information
89  TypeName("waveVelocity");
90 
91 
92  // Constructors
93 
94  //- Construct from patch, internal field and dictionary
96  (
97  const fvPatch&,
99  const dictionary&
100  );
101 
102  //- Construct by mapping given mixedTypeFvPatchField onto a new patch
104  (
106  const fvPatch&,
108  const fvPatchFieldMapper&
109  );
110 
111  //- Disallow copy without setting internal field reference
113  (
115  ) = delete;
116 
117  //- Copy constructor setting internal field reference
119  (
122  );
123 
124  //- Construct and return a clone setting internal field reference
126  (
128  ) const
129  {
131  (
132  new waveVelocityFvPatchVectorField(*this, iF)
133  );
134  }
135 
136 
137  // Member Functions
138 
139  // Access
140 
141  //- Access the face-cell subset
142  const fvMeshSubset& faceCellSubset() const;
143 
144 
145  // Evaluation functions
146 
147  //- Return the current modelled velocity field on the patch faces
148  // at the given time
149  tmp<vectorField> U(const scalar t) const;
150 
151  //- Return the current modelled velocity field in the neighbour
152  // cells at the given time
153  tmp<vectorField> Un(const scalar t) const;
154 
155  //- Update the coefficients associated with the patch field
156  virtual void updateCoeffs();
157 };
158 
159 
160 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
161 
162 } // End namespace Foam
163 
164 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
165 
166 
167 #endif
168 
169 // ************************************************************************* //
Field with dimensions and associated with geometry type GeoMesh which is used to size the field and a...
A list of keyword definitions, which are a keyword followed by any number of values (e....
Definition: dictionary.H:160
Post-processing mesh subset tool. Given the original mesh and the list of selected cells,...
Definition: fvMeshSubset.H:74
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 a waveVelocity condition. This sets the velocity to that specified b...
waveVelocityFvPatchVectorField(const fvPatch &, const DimensionedField< vector, volMesh > &, const dictionary &)
Construct from patch, internal field and dictionary.
tmp< vectorField > U(const scalar t) const
Return the current modelled velocity field on the patch faces.
tmp< vectorField > Un(const scalar t) const
Return the current modelled velocity field in the neighbour.
virtual void updateCoeffs()
Update the coefficients associated with the patch field.
TypeName("waveVelocity")
Runtime type information.
const fvMeshSubset & faceCellSubset() const
Access the face-cell subset.
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