SpalartAllmaras.C
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) 2011-2026 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 \*---------------------------------------------------------------------------*/
25 
26 #include "SpalartAllmaras.H"
27 #include "fvModels.H"
28 #include "fvConstraints.H"
29 #include "bound.H"
30 #include "wallDist.H"
31 
32 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
33 
34 namespace Foam
35 {
36 namespace RASModels
37 {
38 
39 // * * * * * * * * * * * * Protected Member Functions * * * * * * * * * * * //
40 
41 template<class BasicMomentumTransportModel>
43 {
44  return volScalarField::New(typedName("chi"), nuTilda_/this->nu());
45 }
46 
47 
48 template<class BasicMomentumTransportModel>
50 (
51  const volScalarField& chi
52 ) const
53 {
54  const volScalarField chi3(typedName("chi3"), pow3(chi));
55  return volScalarField::New(typedName("fv1"), chi3/(chi3 + pow3(Cv1_)));
56 }
57 
58 
59 template<class BasicMomentumTransportModel>
61 (
62  const volScalarField::Internal& chi,
63  const volScalarField::Internal& fv1
64 ) const
65 {
67  (
68  typedName("fv2"),
69  1.0 - chi/(1.0 + chi*fv1)
70  );
71 }
72 
73 
74 template<class BasicMomentumTransportModel>
77 (
78  const volScalarField::Internal& chi,
79  const volScalarField::Internal& fv1
80 ) const
81 {
82  const volScalarField::Internal Omega
83  (
84  typedName("Omega"),
85  ::sqrt(2.0)*mag(skew(fvc::grad(this->U_)().v()))
86  );
87 
89  (
90  typedName("Stilda"),
91  (
92  max
93  (
94  Omega
95  + fv2(chi, fv1)*nuTilda_/sqr(kappa_*this->y()()),
96  Cs_*Omega
97  )
98  )
99  );
100 }
101 
102 
103 template<class BasicMomentumTransportModel>
105 (
106  const volScalarField::Internal& Stilda
107 ) const
108 {
110  (
111  typedName("r"),
112  min
113  (
114  nuTilda_()
115  /(
116  max
117  (
118  Stilda,
119  dimensionedScalar(Stilda.dimensions(), small)
120  )
121  *sqr(kappa_*this->y()())
122  ),
123  scalar(10.0)
124  )
125  );
126 
127  const volScalarField::Internal g(typedName("g"), r + Cw2_*(pow6(r) - r));
128 
130  (
131  typedName("fw"),
132  g*pow((1.0 + pow6(Cw3_))/(pow6(g) + pow6(Cw3_)), 1.0/6.0)
133  );
134 }
135 
136 
137 template<class BasicMomentumTransportModel>
139 (
140  const volScalarField& fv1
141 )
142 {
143  this->nut_ = nuTilda_*fv1;
144  this->nut_.correctBoundaryConditions();
145  fvConstraints::New(this->mesh_).constrain(this->nut_);
146 }
147 
148 
149 template<class BasicMomentumTransportModel>
151 {
152  correctNut(fv1(this->chi()));
153 }
154 
155 
156 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
157 
158 template<class BasicMomentumTransportModel>
160 (
161  const alphaField& alpha,
162  const rhoField& rho,
163  const volVectorField& U,
164  const surfaceScalarField& alphaRhoPhi,
165  const surfaceScalarField& phi,
166  const viscosity& viscosity,
167  const word& type
168 )
169 :
170  eddyViscosity<RASModel<BasicMomentumTransportModel>>
171  (
172  type,
173  alpha,
174  rho,
175  U,
176  alphaRhoPhi,
177  phi,
178  viscosity
179  ),
180 
181  sigmaNut_("sigmaNut", this->typeDict(type), 0.66666),
182  kappa_("kappa", this->typeDict(type), 0.41),
183  Cb1_("Cb1", this->typeDict(type), 0.1355),
184  Cb2_("Cb2", this->typeDict(type), 0.622),
185  Cw1_(Cb1_/sqr(kappa_) + (1.0 + Cb2_)/sigmaNut_),
186  Cw2_("Cw2", this->typeDict(type), 0.3),
187  Cw3_("Cw3", this->typeDict(type), 2.0),
188  Cv1_("Cv1", this->typeDict(type), 7.1),
189  Cs_("Cs", this->typeDict(type), 0.3),
190 
191  nuTilda_
192  (
193  IOobject
194  (
195  "nuTilda",
196  this->runTime_.name(),
197  this->mesh_,
198  IOobject::MUST_READ,
199  IOobject::AUTO_WRITE
200  ),
201  this->mesh_
202  )
203 {}
204 
205 
206 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
207 
208 template<class BasicMomentumTransportModel>
210 {
212  {
213  sigmaNut_.readIfPresent(this->typeDict());
214  kappa_.readIfPresent(this->typeDict());
215 
216  Cb1_.readIfPresent(this->typeDict());
217  Cb2_.readIfPresent(this->typeDict());
218  Cw1_ = Cb1_/sqr(kappa_) + (1.0 + Cb2_)/sigmaNut_;
219  Cw2_.readIfPresent(this->typeDict());
220  Cw3_.readIfPresent(this->typeDict());
221  Cv1_.readIfPresent(this->typeDict());
222  Cs_.readIfPresent(this->typeDict());
223 
224  return true;
225  }
226  else
227  {
228  return false;
229  }
230 }
231 
232 
233 template<class BasicMomentumTransportModel>
236 {
237  return volScalarField::New
238  (
239  "DnuTildaEff",
240  (nuTilda_ + this->nu())/sigmaNut_
241  );
242 }
243 
244 
245 template<class BasicMomentumTransportModel>
247 {
248  return volScalarField::New
249  (
250  "k",
251  this->mesh_,
252  dimensionedScalar(dimensionSet(0, 2, -2, 0, 0), 0)
253  );
254 }
255 
256 
257 template<class BasicMomentumTransportModel>
260 {
262  << "Turbulence kinetic energy dissipation rate not defined for "
263  << "Spalart-Allmaras model. Returning zero field"
264  << endl;
265 
266  return volScalarField::New
267  (
268  "epsilon",
269  this->mesh_,
270  dimensionedScalar(dimensionSet(0, 2, -3, 0, 0), 0)
271  );
272 }
273 
274 
275 template<class BasicMomentumTransportModel>
278 {
280  << "Turbulence specific dissipation rate not defined for "
281  << "Spalart-Allmaras model. Returning zero field"
282  << endl;
283 
284  return volScalarField::New
285  (
286  "omega",
287  this->mesh_,
289  );
290 }
291 
292 
293 template<class BasicMomentumTransportModel>
295 {
296  if (!this->turbulence_)
297  {
298  return;
299  }
300 
301  // Local references
302  const alphaField& alpha = this->alpha_;
303  const rhoField& rho = this->rho_;
304  const surfaceScalarField& alphaRhoPhi = this->alphaRhoPhi_;
305  const Foam::fvModels& fvModels(Foam::fvModels::New(this->mesh_));
307  (
308  Foam::fvConstraints::New(this->mesh_)
309  );
310 
312 
313  const volScalarField chi(this->chi());
314  const volScalarField fv1(this->fv1(chi));
315 
316  const volScalarField::Internal Stilda(this->Stilda(chi, fv1));
317 
318  tmp<fvScalarMatrix> nuTildaEqn
319  (
320  fvm::ddt(alpha, rho, nuTilda_)
321  + fvm::div(alphaRhoPhi, nuTilda_)
322  - fvm::laplacian(alpha*rho*DnuTildaEff(), nuTilda_)
323  - Cb2_/sigmaNut_*alpha*rho*magSqr(fvc::grad(nuTilda_))
324  ==
325  Cb1_*alpha()*rho()*Stilda*nuTilda_()
326  - fvm::Sp
327  (
328  Cw1_*alpha()*rho()*fw(Stilda)*nuTilda_()/sqr(this->y()()),
329  nuTilda_
330  )
331  + fvModels.source(alpha, rho, nuTilda_)
332  );
333 
334  nuTildaEqn.ref().relax();
335  fvConstraints.constrain(nuTildaEqn.ref());
336  solve(nuTildaEqn);
337  fvConstraints.constrain(nuTilda_);
338  bound(nuTilda_, dimensionedScalar(nuTilda_.dimensions(), 0));
339  nuTilda_.correctBoundaryConditions();
340 
341  correctNut(fv1);
342 }
343 
344 
345 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
346 
347 } // End namespace RASModels
348 } // End namespace Foam
349 
350 // ************************************************************************* //
scalar y
Bound the given scalar field where it is below the specified minimum.
static fvConstraints & New(const word &name, const fvMesh &mesh)
Construct and return the named DemandDrivenMeshObject.
Field with dimensions and associated with geometry type GeoMesh which is used to size the field and a...
static tmp< DimensionedField< Type, GeoMesh, PrimitiveField > > New(const word &name, const GeoMesh &mesh, const dimensionSet &, const PrimitiveField< Type > &)
Return a temporary field constructed from name, mesh,.
const dimensionSet & dimensions() const
Return dimensions.
Generic GeometricField class.
void correctBoundaryConditions()
Correct boundary field.
static tmp< GeometricField< Type, GeoMesh, PrimitiveField > > New(const word &name, const Internal &, const PtrList< Patch > &, const HashPtrTable< Source > &=HashPtrTable< Source >())
Return a temporary field constructed from name,.
IOobject defines the attributes of an object for which implicit objectRegistry management is supporte...
Definition: IOobject.H:99
Templated abstract base class for RAS turbulence models.
Definition: RASModel.H:56
tmp< volScalarField > chi() const
virtual tmp< volScalarField > k() const
Return the turbulence kinetic energy.
virtual void correct()
Solve the turbulence equations and correct the turbulence viscosity.
tmp< volScalarField > DnuTildaEff() const
Return the effective diffusivity for nuTilda.
tmp< volScalarField > fv1(const volScalarField &chi) const
tmp< volScalarField::Internal > fv2(const volScalarField::Internal &chi, const volScalarField::Internal &fv1) const
virtual tmp< volScalarField > epsilon() const
Return the turbulence kinetic energy dissipation rate.
tmp< volScalarField::Internal > fw(const volScalarField::Internal &Stilda) const
SpalartAllmaras(const alphaField &alpha, const rhoField &rho, const volVectorField &U, const surfaceScalarField &alphaRhoPhi, const surfaceScalarField &phi, const viscosity &viscosity, const word &type=typeName)
Construct from components.
tmp< volScalarField::Internal > Stilda(const volScalarField::Internal &chi, const volScalarField::Internal &fv1) const
virtual tmp< volScalarField > omega() const
Return the turbulence specific dissipation rate.
virtual bool read()
Read RASProperties dictionary.
Dimension set for the base types.
Definition: dimensionSet.H:125
Eddy viscosity turbulence model base class.
Definition: eddyViscosity.H:52
Finite volume constraints.
Definition: fvConstraints.H:68
bool constrain(fvMatrix< Type > &eqn) const
Apply constraints to an equation.
Finite volume models.
Definition: fvModels.H:69
tmp< fvMatrix< Type > > source(const VolField< Type > &field) const
Return source for an equation.
BasicMomentumTransportModel::alphaField alphaField
BasicMomentumTransportModel::rhoField rhoField
A class for managing temporary objects.
Definition: tmp.H:55
T & ref() const
Return non-const reference or generate a fatal error.
Definition: tmpI.H:197
Abstract base class for all fluid physical properties.
Definition: viscosity.H:50
A class for handling words, derived from string.
Definition: word.H:63
Foam::fvConstraints & fvConstraints(Foam::fvConstraints::New(mesh))
Foam::fvModels & fvModels(Foam::fvModels::New(mesh))
U
Definition: pEqn.H:72
rho
Definition: pEqn.H:1
volScalarField alpha(IOobject("alpha", runTime.name(), mesh, IOobject::READ_IF_PRESENT, IOobject::AUTO_WRITE), lambda *max(Ua &U, zeroSensitivity))
#define WarningInFunction
Report a warning using Foam::Warning.
void correct(const RdeltaTType &rDeltaT, const RhoType &rho, volScalarField &psi, const surfaceScalarField &phiCorr, const SpType &Sp)
tmp< VolField< typename outerProduct< vector, Type >::type > > grad(const SurfaceField< Type > &ssf)
Definition: fvcGrad.C:46
tmp< fvMatrix< Type > > laplacian(const VolField< Type > &vf, const word &name)
Definition: fvmLaplacian.C:47
tmp< fvMatrix< Type > > div(const surfaceScalarField &flux, const VolField< Type > &vf, const word &name)
Definition: fvmDiv.C:48
tmp< fvMatrix< Type > > Sp(const volScalarField::Internal &, const VolField< Type > &)
tmp< fvMatrix< Type > > ddt(const VolField< Type > &vf)
Definition: fvmDdt.C:46
Namespace for OpenFOAM.
void skew(pointPatchField< tensor > &, const pointPatchField< tensor > &)
const dimensionSet & dimless
Definition: dimensions.C:138
bool read(const char *, int32_t &)
Definition: int32IO.C:85
Ostream & endl(Ostream &os)
Add newline and flush stream.
Definition: Ostream.H:288
void pow6(LagrangianPatchField< scalar > &f, const LagrangianPatchField< scalar > &f1)
tmp< DimensionedField< typename outerProduct< Type, Type >::type, GeoMesh, Field >> sqr(const DimensionedField< Type, GeoMesh, PrimitiveField > &df)
const dimensionSet & dimTime
Definition: dimensions.C:142
dimensioned< Type > min(const DimensionedField< Type, GeoMesh, PrimitiveField > &df)
word typedName(Name name)
Return the name of the object within the given type.
Definition: typeInfo.H:188
bool bound(volScalarField &, const dimensionedScalar &min)
Bound the given scalar field where it is below the specified min value.
Definition: bound.C:31
void pow3(LagrangianPatchField< scalar > &f, const LagrangianPatchField< scalar > &f1)
word name(const LagrangianState state)
Return a string representation of a Lagrangian state enumeration.
tmp< DimensionedField< typename powProduct< Type, r >::type, GeoMesh, Field > > pow(const DimensionedField< Type, GeoMesh, PrimitiveField > &df, typename powProduct< Type, r >::type)
tmp< DimensionedField< scalar, GeoMesh, Field > > mag(const DimensionedField< Type, GeoMesh, PrimitiveField > &df)
void sqrt(LagrangianPatchField< scalar > &f, const LagrangianPatchField< scalar > &f1)
tmp< DimensionedField< scalar, GeoMesh, Field > > magSqr(const DimensionedField< Type, GeoMesh, PrimitiveField > &df)
dimensioned< Type > max(const DimensionedField< Type, GeoMesh, PrimitiveField > &df)
dimensioned< scalar > dimensionedScalar
Dimensioned scalar obtained from generic dimensioned type.
fileType type(const fileName &, const bool checkVariants=true, const bool followLink=true)
Return the file type: directory or file.
Definition: POSIX.C:488
SolverPerformance< Type > solve(fvMatrix< Type > &, const word &)
Solve returning the solution statistics given convergence tolerance.