Chung.C
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration |
5  \\ / A nd | www.openfoam.com
6  \\/ M anipulation |
7 -------------------------------------------------------------------------------
8  Copyright (C) 2011-2015 OpenFOAM Foundation
9 -------------------------------------------------------------------------------
10 License
11  This file is part of OpenFOAM.
12 
13  OpenFOAM is free software: you can redistribute it and/or modify it
14  under the terms of the GNU General Public License as published by
15  the Free Software Foundation, either version 3 of the License, or
16  (at your option) any later version.
17 
18  OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
19  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
20  FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
21  for more details.
22 
23  You should have received a copy of the GNU General Public License
24  along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
25 
26 \*---------------------------------------------------------------------------*/
27 
28 #include "Chung.H"
30 
31 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
32 
33 namespace Foam
34 {
35  namespace compressibilityModels
36  {
37  defineTypeNameAndDebug(Chung, 0);
39  (
40  barotropicCompressibilityModel,
41  Chung,
42  dictionary
43  );
44  }
45 }
46 
47 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
48 
50 (
51  const dictionary& compressibilityProperties,
52  const volScalarField& gamma,
53  const word& psiName
54 )
55 :
56  barotropicCompressibilityModel(compressibilityProperties, gamma, psiName),
57  pSat_
58  (
59  "pSat",
61  compressibilityProperties_
62  ),
63  psiv_
64  (
65  "psiv",
67  compressibilityProperties_
68  ),
69  psil_
70  (
71  "psil",
73  compressibilityProperties_
74  ),
75  rholSat_
76  (
77  "rholSat",
78  dimDensity,
79  compressibilityProperties_
80  )
81 {
82  correct();
83 }
84 
85 
86 // * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * * //
87 
89 {
90  volScalarField sfa
91  (
92  sqrt
93  (
94  pSat_
95  /((scalar(1) - gamma_)*pSat_ + gamma_*rholSat_/psil_)
96  )
97  );
98 
99  psi_ = sqr
100  (
101  ((scalar(1) - gamma_)/sqrt(psiv_) + gamma_*sfa/sqrt(psil_))
102  *sqrt(psiv_*psil_)/sfa
103  );
104 }
105 
106 
108 (
109  const dictionary& compressibilityProperties
110 )
111 {
112  barotropicCompressibilityModel::read(compressibilityProperties);
113 
114  compressibilityProperties_.readEntry("pSat", pSat_);
115  compressibilityProperties_.readEntry("psiv", psiv_);
116  compressibilityProperties_.readEntry("psil", psil_);
117  compressibilityProperties_.readEntry("rholSat", rholSat_);
118 
119  return true;
120 }
121 
122 
123 // ************************************************************************* //
bool read(const dictionary &compressibilityProperties)
Read transportProperties dictionary.
Definition: Chung.C:101
virtual bool read(const dictionary &compressibilityProperties)=0
Read compressibilityProperties dictionary.
A list of keyword definitions, which are a keyword followed by a number of values (eg...
Definition: dictionary.H:129
dimensionedSymmTensor sqr(const dimensionedVector &dv)
dimensionedScalar sqrt(const dimensionedScalar &ds)
void correct()
Correct the Chung compressibility.
Definition: Chung.C:81
Macros for easy insertion into run-time selection tables.
A class for handling words, derived from Foam::string.
Definition: word.H:63
const dimensionSet dimPressure
Info<< "Predicted p max-min : "<< max(p).value()<< " "<< min(p).value()<< endl;rho==max(psi *p+alphal *rhol0+((alphav *psiv+alphal *psil) - psi) *pSat, rhoMin);# 1 "/home/chef2/andy/OpenFOAM/release/v2312/OpenFOAM-v2312/applications/solvers/multiphase/cavitatingFoam/alphavPsi.H" 1{ alphav=clamp((rho - rholSat)/(rhovSat - rholSat), zero_one{});alphal=1.0 - alphav;Info<< "max-min alphav: "<< max(alphav).value()<< " "<< min(alphav).value()<< endl;psiModel-> correct()
Definition: pEqn.H:63
addToRunTimeSelectionTable(barotropicCompressibilityModel, Chung, dictionary)
const dimensionSet dimDensity
const scalar gamma
Definition: EEqn.H:9
Abstract class for barotropic compressibility models.
const dimensionSet dimCompressibility
Namespace for OpenFOAM.
Chung(const dictionary &compressibilityProperties, const volScalarField &gamma, const word &psiName="psi")
Construct from components.
Definition: Chung.C:43