Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Development
openfoam
Commits
a98fe1c7
Commit
a98fe1c7
authored
Jul 23, 2009
by
Andrew Heather
Browse files
updates to compressible wall functions
parent
3ee3750f
Changes
10
Hide whitespace changes
Inline
Side-by-side
src/turbulenceModels/compressible/RAS/derivedFvPatchFields/wallFunctions/mutWallFunctions/mutRoughWallFunction/mutRoughWallFunctionFvPatchScalarField.C
View file @
a98fe1c7
...
...
@@ -74,13 +74,7 @@ mutRoughWallFunctionFvPatchScalarField
const
DimensionedField
<
scalar
,
volMesh
>&
iF
)
:
fixedValueFvPatchScalarField
(
p
,
iF
),
rhoName_
(
"rho"
),
muName_
(
"mu"
),
kName_
(
"k"
),
Cmu_
(
0
.
09
),
kappa_
(
0
.
41
),
E_
(
9
.
8
),
mutWallFunctionFvPatchScalarField
(
p
,
iF
),
Ks_
(
p
.
size
(),
0
.
0
),
Cs_
(
p
.
size
(),
0
.
0
)
{}
...
...
@@ -95,13 +89,7 @@ mutRoughWallFunctionFvPatchScalarField
const
fvPatchFieldMapper
&
mapper
)
:
fixedValueFvPatchScalarField
(
ptf
,
p
,
iF
,
mapper
),
rhoName_
(
ptf
.
rhoName_
),
muName_
(
ptf
.
muName_
),
kName_
(
ptf
.
kName_
),
Cmu_
(
0
.
09
),
kappa_
(
0
.
41
),
E_
(
9
.
8
),
mutWallFunctionFvPatchScalarField
(
ptf
,
p
,
iF
,
mapper
),
Ks_
(
ptf
.
Ks_
,
mapper
),
Cs_
(
ptf
.
Cs_
,
mapper
)
{}
...
...
@@ -115,13 +103,7 @@ mutRoughWallFunctionFvPatchScalarField
const
dictionary
&
dict
)
:
fixedValueFvPatchScalarField
(
p
,
iF
,
dict
),
rhoName_
(
dict
.
lookupOrDefault
<
word
>
(
"rho"
,
"rho"
)),
muName_
(
dict
.
lookupOrDefault
<
word
>
(
"mu"
,
"mu"
)),
kName_
(
dict
.
lookupOrDefault
<
word
>
(
"k"
,
"k"
)),
Cmu_
(
dict
.
lookupOrDefault
<
scalar
>
(
"Cmu"
,
0
.
09
)),
kappa_
(
dict
.
lookupOrDefault
<
scalar
>
(
"kappa"
,
0
.
41
)),
E_
(
dict
.
lookupOrDefault
<
scalar
>
(
"E"
,
9
.
8
)),
mutWallFunctionFvPatchScalarField
(
p
,
iF
,
dict
),
Ks_
(
"Ks"
,
dict
,
p
.
size
()),
Cs_
(
"Cs"
,
dict
,
p
.
size
())
{}
...
...
@@ -133,13 +115,7 @@ mutRoughWallFunctionFvPatchScalarField
const
mutRoughWallFunctionFvPatchScalarField
&
rwfpsf
)
:
fixedValueFvPatchScalarField
(
rwfpsf
),
rhoName_
(
rwfpsf
.
rhoName_
),
muName_
(
rwfpsf
.
muName_
),
kName_
(
rwfpsf
.
kName_
),
Cmu_
(
rwfpsf
.
Cmu_
),
kappa_
(
rwfpsf
.
kappa_
),
E_
(
rwfpsf
.
E_
),
mutWallFunctionFvPatchScalarField
(
rwfpsf
),
Ks_
(
rwfpsf
.
Ks_
),
Cs_
(
rwfpsf
.
Cs_
)
{}
...
...
@@ -152,13 +128,7 @@ mutRoughWallFunctionFvPatchScalarField
const
DimensionedField
<
scalar
,
volMesh
>&
iF
)
:
fixedValueFvPatchScalarField
(
rwfpsf
,
iF
),
rhoName_
(
rwfpsf
.
rhoName_
),
muName_
(
rwfpsf
.
muName_
),
kName_
(
rwfpsf
.
kName_
),
Cmu_
(
rwfpsf
.
Cmu_
),
kappa_
(
rwfpsf
.
kappa_
),
E_
(
rwfpsf
.
E_
),
mutWallFunctionFvPatchScalarField
(
rwfpsf
,
iF
),
Ks_
(
rwfpsf
.
Ks_
),
Cs_
(
rwfpsf
.
Cs_
)
{}
...
...
@@ -171,7 +141,7 @@ void mutRoughWallFunctionFvPatchScalarField::autoMap
const
fvPatchFieldMapper
&
m
)
{
fixedValue
FvPatchScalarField
::
autoMap
(
m
);
mutWallFunction
FvPatchScalarField
::
autoMap
(
m
);
Ks_
.
autoMap
(
m
);
Cs_
.
autoMap
(
m
);
}
...
...
@@ -183,7 +153,7 @@ void mutRoughWallFunctionFvPatchScalarField::rmap
const
labelList
&
addr
)
{
fixedValue
FvPatchScalarField
::
rmap
(
ptf
,
addr
);
mutWallFunction
FvPatchScalarField
::
rmap
(
ptf
,
addr
);
const
mutRoughWallFunctionFvPatchScalarField
&
nrwfpsf
=
refCast
<
const
mutRoughWallFunctionFvPatchScalarField
>
(
ptf
);
...
...
@@ -193,23 +163,22 @@ void mutRoughWallFunctionFvPatchScalarField::rmap
}
void
mutRoughWallFunctionFvPatchScalarField
::
updateCoeffs
()
tmp
<
scalarField
>
mutRoughWallFunctionFvPatchScalarField
::
calcMut
()
const
{
const
label
patchI
=
patch
().
index
();
const
RASModel
&
rasModel
=
db
().
lookupObject
<
RASModel
>
(
"RASProperties"
);
scalar
yPlusLam
=
rasModel
.
yPlusLam
(
kappa_
,
E_
);
const
scalarField
&
y
=
rasModel
.
y
()[
patch
().
index
()];
const
scalar
yPlusLam
=
rasModel
.
yPlusLam
(
kappa_
,
E_
);
const
scalarField
&
y
=
rasModel
.
y
()[
patchI
];
const
scalarField
&
rhow
=
rasModel
.
rho
().
boundaryField
()[
patchI
];
const
tmp
<
volScalarField
>
tk
=
rasModel
.
k
();
const
volScalarField
&
k
=
tk
();
const
scalarField
&
muw
=
rasModel
.
mu
().
boundaryField
()[
patchI
];
const
scalar
Cmu25
=
pow
(
Cmu_
,
0
.
25
);
const
scalarField
&
rhow
=
patch
().
lookupPatchField
<
volScalarField
,
scalar
>
(
rhoName_
);
const
scalarField
&
k
=
db
().
lookupObject
<
volScalarField
>
(
kName_
);
const
scalarField
&
muw
=
patch
().
lookupPatchField
<
volScalarField
,
scalar
>
(
muName_
);
scalarField
&
mutw
=
*
this
;
tmp
<
scalarField
>
tmutw
(
new
scalarField
(
patch
().
size
(),
0
.
0
));
scalarField
&
mutw
=
tmutw
();
forAll
(
mutw
,
faceI
)
{
...
...
@@ -243,23 +212,15 @@ void mutRoughWallFunctionFvPatchScalarField::updateCoeffs()
mutw
[
faceI
]
=
muw
[
faceI
]
*
(
yPlus
*
kappa_
/
log
(
max
(
Edash
*
yPlus
,
1
+
1e-4
))
-
1
);
}
else
{
mutw
[
faceI
]
=
0
.
0
;
}
}
return
tmutw
;
}
void
mutRoughWallFunctionFvPatchScalarField
::
write
(
Ostream
&
os
)
const
{
fvPatchField
<
scalar
>::
write
(
os
);
writeEntryIfDifferent
<
word
>
(
os
,
"rho"
,
"rho"
,
rhoName_
);
writeEntryIfDifferent
<
word
>
(
os
,
"mu"
,
"mu"
,
muName_
);
writeEntryIfDifferent
<
word
>
(
os
,
"k"
,
"k"
,
kName_
);
os
.
writeKeyword
(
"Cmu"
)
<<
Cmu_
<<
token
::
END_STATEMENT
<<
nl
;
os
.
writeKeyword
(
"kappa"
)
<<
kappa_
<<
token
::
END_STATEMENT
<<
nl
;
os
.
writeKeyword
(
"E"
)
<<
E_
<<
token
::
END_STATEMENT
<<
nl
;
Cs_
.
writeEntry
(
"Cs"
,
os
);
Ks_
.
writeEntry
(
"Ks"
,
os
);
writeEntry
(
"value"
,
os
);
...
...
src/turbulenceModels/compressible/RAS/derivedFvPatchFields/wallFunctions/mutWallFunctions/mutRoughWallFunction/mutRoughWallFunctionFvPatchScalarField.H
View file @
a98fe1c7
...
...
@@ -43,7 +43,7 @@ SourceFiles
#ifndef mutRoughWallFunctionFvPatchScalarField_H
#define mutRoughWallFunctionFvPatchScalarField_H
#include
"
fixedValue
FvPatchField
s
.H"
#include
"
mutWallFunction
FvPatch
Scalar
Field.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
...
...
@@ -60,27 +60,11 @@ namespace RASModels
class
mutRoughWallFunctionFvPatchScalarField
:
public
fixedValue
FvPatchScalarField
public
mutWallFunction
FvPatchScalarField
{
// Private data
protected:
//- Name of density field
word
rhoName_
;
//- Name of laminar viscosity field
word
muName_
;
//- Name of turbulence kinetic energy field
word
kName_
;
//- Cmu coefficient
scalar
Cmu_
;
//- Von-karman constant
scalar
kappa_
;
//- E coefficient
scalar
E_
;
// Protected data
//- Roughness height
scalarField
Ks_
;
...
...
@@ -92,7 +76,10 @@ class mutRoughWallFunctionFvPatchScalarField
// Private member functions
//- Compute the roughness function
scalar
fnRough
(
const
scalar
KsPlus
,
const
scalar
Cs
)
const
;
virtual
scalar
fnRough
(
const
scalar
KsPlus
,
const
scalar
Cs
)
const
;
//- Calculate the turbulence viscosity
virtual
tmp
<
scalarField
>
calcMut
()
const
;
public:
...
...
@@ -181,16 +168,11 @@ public:
const
labelList
&
);
// Evaluation functions
//- Update the coefficients associated with the patch field
virtual
void
updateCoeffs
();
// I-O
//- Write
void
write
(
Ostream
&
)
const
;
virtual
void
write
(
Ostream
&
)
const
;
};
...
...
src/turbulenceModels/compressible/RAS/derivedFvPatchFields/wallFunctions/mutWallFunctions/mutSpalartAllmarasStandardRoughWallFunction/mutSpalartAllmarasStandardRoughWallFunctionFvPatchScalarField.C
View file @
a98fe1c7
...
...
@@ -27,6 +27,7 @@ License
#include
"mutSpalartAllmarasStandardRoughWallFunctionFvPatchScalarField.H"
#include
"fvPatchFieldMapper.H"
#include
"volFields.H"
#include
"RASModel.H"
#include
"addToRunTimeSelectionTable.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
...
...
@@ -47,12 +48,7 @@ mutSpalartAllmarasStandardRoughWallFunctionFvPatchScalarField
const
DimensionedField
<
scalar
,
volMesh
>&
iF
)
:
fixedValueFvPatchScalarField
(
p
,
iF
),
UName_
(
"U"
),
rhoName_
(
"rho"
),
muName_
(
"mu"
),
kappa_
(
0
.
41
),
E_
(
9
.
8
),
mutWallFunctionFvPatchScalarField
(
p
,
iF
),
roughnessHeight_
(
pTraits
<
scalar
>::
zero
),
roughnessConstant_
(
pTraits
<
scalar
>::
zero
),
roughnessFudgeFactor_
(
pTraits
<
scalar
>::
zero
)
...
...
@@ -68,12 +64,7 @@ mutSpalartAllmarasStandardRoughWallFunctionFvPatchScalarField
const
fvPatchFieldMapper
&
mapper
)
:
fixedValueFvPatchScalarField
(
ptf
,
p
,
iF
,
mapper
),
UName_
(
ptf
.
UName_
),
rhoName_
(
ptf
.
rhoName_
),
muName_
(
ptf
.
muName_
),
kappa_
(
ptf
.
kappa_
),
E_
(
ptf
.
E_
),
mutWallFunctionFvPatchScalarField
(
ptf
,
p
,
iF
,
mapper
),
roughnessHeight_
(
ptf
.
roughnessHeight_
),
roughnessConstant_
(
ptf
.
roughnessConstant_
),
roughnessFudgeFactor_
(
ptf
.
roughnessFudgeFactor_
)
...
...
@@ -88,12 +79,7 @@ mutSpalartAllmarasStandardRoughWallFunctionFvPatchScalarField
const
dictionary
&
dict
)
:
fixedValueFvPatchScalarField
(
p
,
iF
,
dict
),
UName_
(
dict
.
lookupOrDefault
<
word
>
(
"U"
,
"U"
)),
rhoName_
(
dict
.
lookupOrDefault
<
word
>
(
"rho"
,
"rho"
)),
muName_
(
dict
.
lookupOrDefault
<
word
>
(
"mu"
,
"mu"
)),
kappa_
(
dict
.
lookupOrDefault
<
scalar
>
(
"kappa"
,
0
.
41
)),
E_
(
dict
.
lookupOrDefault
<
scalar
>
(
"E"
,
9
.
8
)),
mutWallFunctionFvPatchScalarField
(
p
,
iF
,
dict
),
roughnessHeight_
(
readScalar
(
dict
.
lookup
(
"roughnessHeight"
))),
roughnessConstant_
(
readScalar
(
dict
.
lookup
(
"roughnessConstant"
))),
roughnessFudgeFactor_
(
readScalar
(
dict
.
lookup
(
"roughnessFudgeFactor"
)))
...
...
@@ -106,12 +92,7 @@ mutSpalartAllmarasStandardRoughWallFunctionFvPatchScalarField
const
mutSpalartAllmarasStandardRoughWallFunctionFvPatchScalarField
&
rwfpsf
)
:
fixedValueFvPatchScalarField
(
rwfpsf
),
UName_
(
rwfpsf
.
UName_
),
rhoName_
(
rwfpsf
.
rhoName_
),
muName_
(
rwfpsf
.
muName_
),
kappa_
(
rwfpsf
.
kappa_
),
E_
(
rwfpsf
.
E_
),
mutWallFunctionFvPatchScalarField
(
rwfpsf
),
roughnessHeight_
(
rwfpsf
.
roughnessHeight_
),
roughnessConstant_
(
rwfpsf
.
roughnessConstant_
),
roughnessFudgeFactor_
(
rwfpsf
.
roughnessFudgeFactor_
)
...
...
@@ -125,12 +106,7 @@ mutSpalartAllmarasStandardRoughWallFunctionFvPatchScalarField
const
DimensionedField
<
scalar
,
volMesh
>&
iF
)
:
fixedValueFvPatchScalarField
(
rwfpsf
,
iF
),
UName_
(
rwfpsf
.
UName_
),
rhoName_
(
rwfpsf
.
rhoName_
),
muName_
(
rwfpsf
.
muName_
),
kappa_
(
rwfpsf
.
kappa_
),
E_
(
rwfpsf
.
E_
),
mutWallFunctionFvPatchScalarField
(
rwfpsf
,
iF
),
roughnessHeight_
(
rwfpsf
.
roughnessHeight_
),
roughnessConstant_
(
rwfpsf
.
roughnessConstant_
),
roughnessFudgeFactor_
(
rwfpsf
.
roughnessFudgeFactor_
)
...
...
@@ -139,28 +115,24 @@ mutSpalartAllmarasStandardRoughWallFunctionFvPatchScalarField
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
void
mutSpalartAllmarasStandardRoughWallFunctionFvPatchScalarField
::
evaluate
(
const
Pstream
::
commsTypes
)
tmp
<
scalarField
>
mutSpalartAllmarasStandardRoughWallFunctionFvPatchScalarField
::
calcMut
()
const
{
const
scalar
yPlusLam
=
11
.
225
;
const
label
patchI
=
patch
().
index
()
;
// The reciprical of the distance to the adjacent cell centre.
const
scalarField
&
ry
=
patch
().
deltaCoeffs
();
const
RASModel
&
rasModel
=
db
().
lookupObject
<
RASModel
>
(
"RASProperties"
);
const
scalar
yPlusLam
=
rasModel
.
yPlusLam
(
kappa_
,
E_
);
const
scalarField
&
y
=
rasModel
.
y
()[
patchI
];
const
fvPatchVectorField
&
U
=
patch
().
lookupPatchField
<
volVectorField
,
vector
>
(
UName_
)
;
const
fvPatchVectorField
&
U
w
=
rasModel
.
U
().
boundaryField
()[
patchI
];
const
scalarField
&
muw
=
rasModel
.
mu
().
boundaryField
()[
patchI
]
;
const
fvPatchScalarField
&
rho
=
patch
().
lookupPatchField
<
volScalarField
,
scalar
>
(
rhoName_
);
scalarField
magUp
=
mag
(
Uw
.
patchInternalField
()
-
Uw
);
// The flow velocity at the adjacent cell centre.
scalarField
magUp
=
mag
(
U
.
patchInternalField
()
-
U
);
const
fvPatchScalarField
&
rho
=
rasModel
.
rho
().
boundaryField
()[
patchI
];
const
scalarField
&
muw
=
patch
().
lookupPatchField
<
volScalarField
,
scalar
>
(
muName_
);
scalarField
&
mutw
=
*
this
;
tmp
<
scalarField
>
tmutw
(
new
scalarField
(
patch
().
size
(),
0
.
0
));
scalarField
&
mutw
=
tmutw
();
if
(
roughnessHeight_
>
0
.
0
)
{
...
...
@@ -177,7 +149,7 @@ void mutSpalartAllmarasStandardRoughWallFunctionFvPatchScalarField::evaluate
forAll
(
mutw
,
facei
)
{
const
scalar
magUpara
=
magUp
[
facei
];
const
scalar
Re
=
rho
[
facei
]
*
magUpara
/
(
muw
[
facei
]
*
ry
[
facei
]
)
;
const
scalar
Re
=
rho
[
facei
]
*
magUpara
*
y
[
facei
]
/
muw
[
facei
];
const
scalar
kappaRe
=
kappa_
*
Re
;
scalar
yPlus
=
yPlusLam
;
...
...
@@ -185,7 +157,7 @@ void mutSpalartAllmarasStandardRoughWallFunctionFvPatchScalarField::evaluate
int
iter
=
0
;
scalar
yPlusLast
=
0
.
0
;
scalar
dKsPlusdYPlus
=
roughnessHeight_
*
r
y
[
facei
];
scalar
dKsPlusdYPlus
=
roughnessHeight_
/
y
[
facei
];
// Enforce the roughnessHeight to be less than the distance to
// the first cell centre.
...
...
@@ -194,18 +166,17 @@ void mutSpalartAllmarasStandardRoughWallFunctionFvPatchScalarField::evaluate
dKsPlusdYPlus
=
1
;
}
// Fudge factor to get results to be similar to fluent
// (at least difference between rough and smooth).
// Additional tuning parameter (fudge factor) - nominally = 1
dKsPlusdYPlus
*=
roughnessFudgeFactor_
;
do
{
yPlusLast
=
yPlus
;
// The non-dimensional roughness height
.
// The non-dimensional roughness height
scalar
KsPlus
=
yPlus
*
dKsPlusdYPlus
;
// The extra term in the law-of-the-wall
.
// The extra term in the law-of-the-wall
scalar
G
=
0
.
0
;
scalar
yPlusGPrime
=
0
.
0
;
...
...
@@ -238,7 +209,7 @@ void mutSpalartAllmarasStandardRoughWallFunctionFvPatchScalarField::evaluate
}
else
{
// Ensure immediate end and mutw = 0
.
// Ensure immediate end and mutw = 0
yPlus
=
0
;
}
...
...
@@ -253,20 +224,16 @@ void mutSpalartAllmarasStandardRoughWallFunctionFvPatchScalarField::evaluate
{
mutw
[
facei
]
=
muw
[
facei
]
*
(
yPlus
*
yPlus
/
Re
-
1
);
}
else
{
mutw
[
facei
]
=
0
.
0
;
}
}
}
}
else
{
// Smooth Walls
.
// Smooth Walls
forAll
(
mutw
,
facei
)
{
const
scalar
magUpara
=
magUp
[
facei
];
const
scalar
Re
=
rho
[
facei
]
*
magUpara
/
(
muw
[
facei
]
*
ry
[
facei
]
)
;
const
scalar
Re
=
rho
[
facei
]
*
magUpara
*
y
[
facei
]
/
muw
[
facei
];
const
scalar
kappaRe
=
kappa_
*
Re
;
scalar
yPlus
=
yPlusLam
;
...
...
@@ -290,12 +257,23 @@ void mutSpalartAllmarasStandardRoughWallFunctionFvPatchScalarField::evaluate
{
mutw
[
facei
]
=
muw
[
facei
]
*
(
yPlus
*
yPlus
/
Re
-
1
);
}
else
{
mutw
[
facei
]
=
0
.
0
;
}
}
}
return
tmutw
;
}
tmp
<
scalarField
>
mutSpalartAllmarasStandardRoughWallFunctionFvPatchScalarField
::
yPlus
()
const
{
notImplemented
(
"mutSpalartAllmarasStandardRoughWallFunctionFvPatchScalarField::yPlus()"
"const"
);
return
tmp
<
scalarField
>
(
NULL
);
}
...
...
@@ -305,11 +283,6 @@ void mutSpalartAllmarasStandardRoughWallFunctionFvPatchScalarField::write
)
const
{
fixedValueFvPatchScalarField
::
write
(
os
);
writeEntryIfDifferent
<
word
>
(
os
,
"U"
,
"U"
,
UName_
);
writeEntryIfDifferent
<
word
>
(
os
,
"rho"
,
"rho"
,
rhoName_
);
writeEntryIfDifferent
<
word
>
(
os
,
"mu"
,
"mu"
,
muName_
);
os
.
writeKeyword
(
"kappa"
)
<<
kappa_
<<
token
::
END_STATEMENT
<<
nl
;
os
.
writeKeyword
(
"E"
)
<<
E_
<<
token
::
END_STATEMENT
<<
nl
;
os
.
writeKeyword
(
"roughnessHeight"
)
<<
roughnessHeight_
<<
token
::
END_STATEMENT
<<
nl
;
os
.
writeKeyword
(
"roughnessConstant"
)
...
...
src/turbulenceModels/compressible/RAS/derivedFvPatchFields/wallFunctions/mutWallFunctions/mutSpalartAllmarasStandardRoughWallFunction/mutSpalartAllmarasStandardRoughWallFunctionFvPatchScalarField.H
View file @
a98fe1c7
...
...
@@ -37,7 +37,7 @@ SourceFiles
#ifndef mutSpalartAllmarasStandardRoughWallFunctionFvPatchScalarField_H
#define mutSpalartAllmarasStandardRoughWallFunctionFvPatchScalarField_H
#include
"
fixedValue
FvPatchField
s
.H"
#include
"
mutWallFunction
FvPatch
Scalar
Field.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
...
...
@@ -54,25 +54,11 @@ Class mutSpalartAllmarasStandardRoughWallFunctionFvPatchScalarField Declaration
class
mutSpalartAllmarasStandardRoughWallFunctionFvPatchScalarField
:
public
fixedValue
FvPatchScalarField
public
mutWallFunction
FvPatchScalarField
{
// Private data
//- Name of velocity field
word
UName_
;
//- Name of density field
word
rhoName_
;
//- Name of laminar viscosity field
word
muName_
;
//- Von Karman constant
scalar
kappa_
;
//- E coefficient
scalar
E_
;
protected:
// Protected data
// Roughness parameters
...
...
@@ -86,6 +72,12 @@ class mutSpalartAllmarasStandardRoughWallFunctionFvPatchScalarField
scalar
roughnessFudgeFactor_
;
// Protected member functions
//- Calculate the turbulence viscosity
virtual
tmp
<
scalarField
>
calcMut
()
const
;
public:
//- Runtime type information
...
...
@@ -206,15 +198,14 @@ public:
// Evaluation functions
//- Evaluate the patchField
virtual
void
evaluate
(
const
Pstream
::
commsTypes
commsType
=
Pstream
::
blocking
);
//- Calculate and return the yPlus at the boundary
virtual
tmp
<
scalarField
>
yPlus
()
const
;
// I-O
//- Write
virtual
void
write
(
Ostream
&
os
)
const
;
//- Write
virtual
void
write
(
Ostream
&
os
)
const
;
};
...
...
src/turbulenceModels/compressible/RAS/derivedFvPatchFields/wallFunctions/mutWallFunctions/mutSpalartAllmarasStandardWallFunction/mutSpalartAllmarasStandardWallFunctionFvPatchScalarField.C
View file @
a98fe1c7
...
...
@@ -48,12 +48,7 @@ mutSpalartAllmarasStandardWallFunctionFvPatchScalarField
const
DimensionedField
<
scalar
,
volMesh
>&
iF
)
:
fixedValueFvPatchScalarField
(
p
,
iF
),
UName_
(
"U"
),