plastic.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-2024 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::mixtureViscosityModels::plastic
26 
27 Description
28  Viscosity correction model for a generic power-law plastic.
29 
30 SourceFiles
31  plastic.C
32 
33 \*---------------------------------------------------------------------------*/
34 
35 #ifndef plastic_H
36 #define plastic_H
37 
38 #include "mixtureViscosityModel.H"
39 #include "dimensionedScalar.H"
40 
41 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
42 
43 namespace Foam
44 {
45 
46 class incompressibleDriftFluxMixture;
47 
48 namespace mixtureViscosityModels
49 {
50 
51 /*---------------------------------------------------------------------------*\
52  Class plastic Declaration
53 \*---------------------------------------------------------------------------*/
54 
55 class plastic
56 :
58 {
59 protected:
60 
61  // Protected data
62 
63  //- Plastic viscosity coefficient
65 
66  //- Plastic viscosity exponent
68 
69  //- Maximum viscosity
71 
72 
73 public:
74 
75  //- Runtime type information
76  TypeName("plastic");
77 
78 
79  // Constructors
80 
81  //- Construct from mixture
83 
84 
85  //- Destructor
86  virtual ~plastic()
87  {}
88 
89 
90  // Member Functions
91 
92  //- Return the mixture viscosity
93  // given the viscosity of the continuous phase
94  virtual tmp<volScalarField> mu
95  (
96  const volScalarField& muc,
97  const volVectorField& U
98  ) const;
99 
100  //- Read phaseProperties dictionary
101  virtual bool read();
102 };
103 
104 
105 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
106 
107 } // End namespace mixtureViscosityModels
108 } // End namespace Foam
109 
110 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
111 
112 #endif
113 
114 // ************************************************************************* //
Generic GeometricField class.
Class to represent a mixture of two constant density phases.
An abstract base class for incompressible mixtureViscosityModels.
Viscosity correction model for a generic power-law plastic.
Definition: plastic.H:57
virtual tmp< volScalarField > mu(const volScalarField &muc, const volVectorField &U) const
Return the mixture viscosity.
Definition: plastic.C:81
virtual ~plastic()
Destructor.
Definition: plastic.H:85
TypeName("plastic")
Runtime type information.
dimensionedScalar muMax_
Maximum viscosity.
Definition: plastic.H:69
plastic(const incompressibleDriftFluxMixture &mixture)
Construct from mixture.
Definition: plastic.C:51
dimensionedScalar plasticViscosityCoeff_
Plastic viscosity coefficient.
Definition: plastic.H:63
virtual bool read()
Read phaseProperties dictionary.
Definition: plastic.C:102
dimensionedScalar plasticViscosityExponent_
Plastic viscosity exponent.
Definition: plastic.H:66
A class for managing temporary objects.
Definition: tmp.H:55
U
Definition: pEqn.H:72
Namespace for OpenFOAM.