waveAlphaFvPatchScalarField.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-2021 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::waveAlphaFvPatchScalarField
26 
27 Description
28  This boundary condition provides a waveAlpha condition. This sets the phase
29  fraction 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  liquid | Is the alpha field that of the liquid? | no | true
38  \endtable
39 
40  Example of the boundary condition specification:
41  \verbatim
42  <patchName>
43  {
44  type waveAlpha;
45  phi phi;
46  liquid true;
47  }
48  \endverbatim
49 
50 See also
51  Foam::waveSuperposition
52 
53 SourceFiles
54  waveAlphaFvPatchScalarField.C
55 
56 \*---------------------------------------------------------------------------*/
57 
58 #ifndef waveAlphaFvPatchScalarField_H
59 #define waveAlphaFvPatchScalarField_H
60 
62 #include "waveSuperposition.H"
63 
64 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
65 
66 namespace Foam
67 {
68 
69 class fvMeshSubset;
70 
71 /*---------------------------------------------------------------------------*\
72  Class waveAlphaFvPatchScalarField Declaration
73 \*---------------------------------------------------------------------------*/
74 
75 class waveAlphaFvPatchScalarField
76 :
77  public fixedValueInletOutletFvPatchField<scalar>
78 {
79  // Private Data
80 
81  //- Is this alpha field that of the liquid under the wave?
82  const Switch liquid_;
83 
84  //- Mesh subset corresponding to the patch adjacent cells
85  mutable autoPtr<fvMeshSubset> faceCellSubset_;
86 
87  //- Time index for keeping the subset up to date
88  mutable label faceCellSubsetTimeIndex_;
89 
90 
91 public:
92 
93  //- Runtime type information
94  TypeName("waveAlpha");
95 
96 
97  // Constructors
98 
99  //- Construct from patch and internal field
101  (
102  const fvPatch&,
104  );
105 
106  //- Construct from patch, internal field and dictionary
108  (
109  const fvPatch&,
111  const dictionary&
112  );
113 
114  //- Construct by mapping given fixedValueTypeFvPatchField onto a new
115  // patch
117  (
119  const fvPatch&,
121  const fvPatchFieldMapper&
122  );
123 
124  //- Disallow copy without setting internal field reference
126  (
128  ) = delete;
129 
130  //- Copy constructor setting internal field reference
132  (
135  );
136 
137  //- Construct and return a clone setting internal field reference
139  (
141  ) const
142  {
144  (
145  new waveAlphaFvPatchScalarField(*this, iF)
146  );
147  }
148 
149 
150  // Member Functions
151 
152  // Access
154  //- Access the liquid flag
155  bool liquid() const
156  {
157  return liquid_;
158  }
159 
160  //- Access the face-cell subset
161  const fvMeshSubset& faceCellSubset() const;
162 
163 
164  // Evaluation functions
165 
166  //- Return the current modelled phase fraction field on the patch
167  // faces at the given time
168  tmp<scalarField> alpha(const scalar t) const;
170  //- Return the current modelled phase fraction field in the
171  // neighbour cells at the given time
172  tmp<scalarField> alphan(const scalar t) const;
173 
174  //- Update the coefficients associated with the patch field
175  virtual void updateCoeffs();
176 
177 
178  //- Write
179  virtual void write(Ostream&) const;
180 };
181 
182 
183 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
184 
185 } // End namespace Foam
186 
187 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
188 
189 
190 #endif
191 
192 // ************************************************************************* //
FvWallInfoData< WallInfo, label > label
A label is an int32_t or int64_t as specified by the pre-processor macro WM_LABEL_SIZE.
A list of keyword definitions, which are a keyword followed by any number of values (e...
Definition: dictionary.H:156
This boundary condition provides a waveAlpha condition. This sets the phase fraction to that specifie...
A finiteVolume patch using a polyPatch and a fvBoundaryMesh.
Definition: fvPatch.H:63
tmp< scalarField > alphan(const scalar t) const
Return the current modelled phase fraction field in the.
tmp< scalarField > alpha(const scalar t) const
Return the current modelled phase fraction field on the patch.
bool liquid() const
Access the liquid flag.
virtual void write(Ostream &) const
Write.
Foam::fvPatchFieldMapper.
An Ostream is an abstract base class for all output systems (streams, files, token lists...
Definition: Ostream.H:54
Post-processing mesh subset tool. Given the original mesh and the list of selected cells...
Definition: fvMeshSubset.H:73
waveAlphaFvPatchScalarField(const fvPatch &, const DimensionedField< scalar, volMesh > &)
Construct from patch and internal field.
virtual void updateCoeffs()
Update the coefficients associated with the patch field.
const fvMeshSubset & faceCellSubset() const
Access the face-cell subset.
Field with dimensions and associated with geometry type GeoMesh which is used to size the field and a...
TypeName("waveAlpha")
Runtime type information.
A class for managing temporary objects.
Definition: PtrList.H:53
tmp< fvPatchField< Type > > clone() const
Disallow clone without setting internal field reference.
Definition: fvPatchField.H:199
Namespace for OpenFOAM.