phaseStabilisedSnGrad.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) 2022 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::fv::phaseStabilisedSnGrad
26 
27 Description
28  snGrad scheme with phase-fraction limited non-orthogonal correction.
29 
30  When the phase-fraction is less than 1e-3 the non-orthogonal correction is
31  set to 0.
32 
33 SourceFiles
34  phaseStabilisedSnGrad.C
35 
36 \*---------------------------------------------------------------------------*/
37 
38 #ifndef phaseStabilisedSnGrad_H
39 #define phaseStabilisedSnGrad_H
40 
41 #include "correctedSnGrad.H"
42 
43 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
44 
45 namespace Foam
46 {
47 
48 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
49 
50 namespace fv
51 {
52 
53 /*---------------------------------------------------------------------------*\
54  Class phaseStabilisedSnGrad Declaration
55 \*---------------------------------------------------------------------------*/
56 
57 template<class Type>
59 :
60  public snGradScheme<Type>
61 {
62  // Private Data
63 
64  tmp<snGradScheme<Type>> correctedScheme_;
65 
66 
67 public:
68 
69  //- Runtime type information
70  TypeName("phaseStabilised");
71 
72 
73  // Constructors
74 
75  //- Construct from mesh and data stream
76  phaseStabilisedSnGrad(const fvMesh& mesh, Istream& schemeData);
77 
78 
79  //- Destructor
80  virtual ~phaseStabilisedSnGrad();
81 
82 
83  // Member Functions
84 
85  //- Return the interpolation weighting factors for the given field
87  (
88  const VolField<Type>& vf
89  ) const;
90 
91  //- Return true if this scheme uses an explicit correction
92  virtual bool corrected() const
93  {
94  return true;
95  }
96 
97  //- Return the explicit correction to the phaseStabilisedSnGrad
98  // for the given field
99  virtual tmp<SurfaceField<Type>>
100  correction(const VolField<Type>&) const;
101 
102 
103  // Member Operators
104 
105  //- Disallow default bitwise assignment
106  void operator=(const phaseStabilisedSnGrad&) = delete;
107 };
108 
109 
110 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
111 
112 } // End namespace fv
113 
114 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
115 
116 } // End namespace Foam
117 
118 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
119 
120 #ifdef NoRepository
121  #include "phaseStabilisedSnGrad.C"
122 #endif
123 
124 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
125 
126 #endif
127 
128 // ************************************************************************* //
Generic GeometricField class.
An Istream is an abstract base class for all input systems (streams, files, token lists etc)....
Definition: Istream.H:60
Mesh data needed to do the Finite Volume discretisation.
Definition: fvMesh.H:101
snGrad scheme with phase-fraction limited non-orthogonal correction.
virtual bool corrected() const
Return true if this scheme uses an explicit correction.
virtual ~phaseStabilisedSnGrad()
Destructor.
virtual tmp< SurfaceField< Type > > correction(const VolField< Type > &) const
Return the explicit correction to the phaseStabilisedSnGrad.
virtual tmp< surfaceScalarField > deltaCoeffs(const VolField< Type > &vf) const
Return the interpolation weighting factors for the given field.
void operator=(const phaseStabilisedSnGrad &)=delete
Disallow default bitwise assignment.
phaseStabilisedSnGrad(const fvMesh &mesh, Istream &schemeData)
Construct from mesh and data stream.
TypeName("phaseStabilised")
Runtime type information.
Abstract base class for snGrad schemes.
Definition: snGradScheme.H:63
const fvMesh & mesh() const
Return mesh reference.
Definition: snGradScheme.H:117
A class for managing temporary objects.
Definition: tmp.H:55
Namespace for OpenFOAM.
labelList fv(nPoints)