segregatedBlendingMethod.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) 2014-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::blendingMethods::segregated
26 
27 Description
28  Blending method for segregated configurations. E.g., a churning flow in
29  which it is never appropriate to consider one phase continuous.
30 
31 SourceFiles
32  segregatedBlendingMethod.C
33 
34 \*---------------------------------------------------------------------------*/
35 
36 #ifndef segregatedBlendingMethod_H
37 #define segregatedBlendingMethod_H
38 
39 #include "blendingMethod.H"
40 
41 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
42 
43 namespace Foam
44 {
45 namespace blendingMethods
46 {
47 
48 /*---------------------------------------------------------------------------*\
49  Class segregated Declaration
50 \*---------------------------------------------------------------------------*/
51 
52 class segregated
53 :
54  public blendingMethod
55 {
56 protected:
57 
58  // Protected Member Functions
59 
60  //- Evaluate the blending function
62  (
63  const UPtrList<const volScalarField>& alphas,
64  const label phaseSet,
65  const label systemSet
66  ) const;
67 
68 
69 public:
70 
71  //- Runtime type information
72  TypeName("segregated");
73 
74 
75  // Constructors
76 
77  //- Construct from a dictionary and an interface
79  (
80  const dictionary& dict,
81  const phaseInterface& interface
82  );
83 
84 
85  //- Destructor
86  ~segregated();
87 
88 
89  // Member Functions
90 
91  //- Return whether or not a phase can be considered segregated
92  virtual bool canBeContinuous(const label index) const;
93 
94  //- Return whether or not this interface can segregate
95  virtual bool canSegregate() const;
96 };
97 
98 
99 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
100 
101 } // End namespace blendingMethods
102 } // End namespace Foam
103 
104 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
105 
106 #endif
107 
108 // ************************************************************************* //
A templated 1D list of pointers to objects of type <T>, where the size of the array is known and used...
Definition: UPtrList.H:66
Abstract base class for functions that are used to combine interfacial sub-models according to the vo...
Blending method for segregated configurations. E.g., a churning flow in which it is never appropriate...
virtual tmp< volScalarField > fContinuous(const UPtrList< const volScalarField > &alphas, const label phaseSet, const label systemSet) const
Evaluate the blending function.
virtual bool canSegregate() const
Return whether or not this interface can segregate.
virtual bool canBeContinuous(const label index) const
Return whether or not a phase can be considered segregated.
TypeName("segregated")
Runtime type information.
segregated(const dictionary &dict, const phaseInterface &interface)
Construct from a dictionary and an interface.
A list of keyword definitions, which are a keyword followed by any number of values (e....
Definition: dictionary.H:160
Class to represent an interface between phases. Derivations can further specify the configuration of ...
A class for managing temporary objects.
Definition: tmp.H:55
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
dictionary dict