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
07fccdd7
Commit
07fccdd7
authored
Jul 21, 2009
by
henry
Browse files
Changed kQR to kqR.
parent
45fd594e
Changes
12
Hide whitespace changes
Inline
Side-by-side
etc/controlDict
View file @
07fccdd7
...
...
@@ -520,7 +520,7 @@ DebugSwitches
kOmega 0;
kOmegaSST 0;
kOmegaSSTSAS 0;
k
Q
RWallFunction 0;
k
q
RWallFunction 0;
kinematicCloud 0;
labelField 0;
labelList 0;
...
...
src/turbulenceModels/compressible/RAS/Make/files
View file @
07fccdd7
...
...
@@ -29,8 +29,8 @@ $(epsilonWallFunctions)/epsilonWallFunction/epsilonWallFunctionFvPatchScalarFiel
omegaWallFunctions = $(wallFunctions)/omegaWallFunctions
$(omegaWallFunctions)/omegaWallFunction/omegaWallFunctionFvPatchScalarField.C
k
Q
RWallFunctions = $(wallFunctions)/k
Q
RWallFunctions
$(k
Q
RWallFunctions)/k
Q
RWallFunction/k
Q
RWallFunctionFvPatchFields.C
k
q
RWallFunctions = $(wallFunctions)/k
q
RWallFunctions
$(k
q
RWallFunctions)/k
q
RWallFunction/k
q
RWallFunctionFvPatchFields.C
/* Patch fields */
derivedFvPatchFields/turbulentHeatFluxTemperature/turbulentHeatFluxTemperatureFvPatchScalarField.C
...
...
src/turbulenceModels/compressible/RAS/derivedFvPatchFields/turbulentMixingLengthFrequencyInlet/turbulentMixingLengthFrequencyInletFvPatchScalarField.C
View file @
07fccdd7
...
...
@@ -115,7 +115,9 @@ void turbulentMixingLengthFrequencyInletFvPatchScalarField::updateCoeffs()
// Lookup Cmu corresponding to the turbulence model selected
const
RASModel
&
rasModel
=
db
().
lookupObject
<
RASModel
>
(
"RASProperties"
);
const
scalar
Cmu
=
readScalar
(
rasModel
.
coeffDict
().
lookup
(
"Cmu"
));
const
scalar
Cmu
=
rasModel
.
coeffDict
().
lookupOrDefault
<
scalar
>
(
"Cmu"
,
0
.
09
);
const
scalar
Cmu25
=
pow
(
Cmu
,
0
.
25
);
const
fvPatchField
<
scalar
>&
kp
=
...
...
src/turbulenceModels/compressible/RAS/derivedFvPatchFields/wallFunctions/kqRWallFunctions/kqRWallFunction/kqRWallFunctionFvPatchField.C
View file @
07fccdd7
...
...
@@ -24,7 +24,7 @@ License
\*---------------------------------------------------------------------------*/
#include
"k
Q
RWallFunctionFvPatchField.H"
#include
"k
q
RWallFunctionFvPatchField.H"
#include
"RASModel.H"
#include
"fvPatchFieldMapper.H"
#include
"volFields.H"
...
...
@@ -43,11 +43,11 @@ namespace RASModels
// * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
template
<
class
Type
>
void
k
Q
RWallFunctionFvPatchField
<
Type
>::
checkType
()
void
k
q
RWallFunctionFvPatchField
<
Type
>::
checkType
()
{
if
(
!
isA
<
wallFvPatch
>
(
this
->
patch
()))
{
FatalErrorIn
(
"k
Q
RWallFunctionFvPatchField::checkType()"
)
FatalErrorIn
(
"k
q
RWallFunctionFvPatchField::checkType()"
)
<<
"Invalid wall function specification"
<<
nl
<<
" Patch type for patch "
<<
this
->
patch
().
name
()
<<
" must be wall"
<<
nl
...
...
@@ -60,7 +60,7 @@ void kQRWallFunctionFvPatchField<Type>::checkType()
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
template
<
class
Type
>
k
Q
RWallFunctionFvPatchField
<
Type
>::
k
Q
RWallFunctionFvPatchField
k
q
RWallFunctionFvPatchField
<
Type
>::
k
q
RWallFunctionFvPatchField
(
const
fvPatch
&
p
,
const
DimensionedField
<
Type
,
volMesh
>&
iF
...
...
@@ -73,9 +73,9 @@ kQRWallFunctionFvPatchField<Type>::kQRWallFunctionFvPatchField
template
<
class
Type
>
k
Q
RWallFunctionFvPatchField
<
Type
>::
k
Q
RWallFunctionFvPatchField
k
q
RWallFunctionFvPatchField
<
Type
>::
k
q
RWallFunctionFvPatchField
(
const
k
Q
RWallFunctionFvPatchField
&
ptf
,
const
k
q
RWallFunctionFvPatchField
&
ptf
,
const
fvPatch
&
p
,
const
DimensionedField
<
Type
,
volMesh
>&
iF
,
const
fvPatchFieldMapper
&
mapper
...
...
@@ -88,7 +88,7 @@ kQRWallFunctionFvPatchField<Type>::kQRWallFunctionFvPatchField
template
<
class
Type
>
k
Q
RWallFunctionFvPatchField
<
Type
>::
k
Q
RWallFunctionFvPatchField
k
q
RWallFunctionFvPatchField
<
Type
>::
k
q
RWallFunctionFvPatchField
(
const
fvPatch
&
p
,
const
DimensionedField
<
Type
,
volMesh
>&
iF
,
...
...
@@ -102,9 +102,9 @@ kQRWallFunctionFvPatchField<Type>::kQRWallFunctionFvPatchField
template
<
class
Type
>
k
Q
RWallFunctionFvPatchField
<
Type
>::
k
Q
RWallFunctionFvPatchField
k
q
RWallFunctionFvPatchField
<
Type
>::
k
q
RWallFunctionFvPatchField
(
const
k
Q
RWallFunctionFvPatchField
&
tkqrwfpf
const
k
q
RWallFunctionFvPatchField
&
tkqrwfpf
)
:
zeroGradientFvPatchField
<
Type
>
(
tkqrwfpf
)
...
...
@@ -114,9 +114,9 @@ kQRWallFunctionFvPatchField<Type>::kQRWallFunctionFvPatchField
template
<
class
Type
>
k
Q
RWallFunctionFvPatchField
<
Type
>::
k
Q
RWallFunctionFvPatchField
k
q
RWallFunctionFvPatchField
<
Type
>::
k
q
RWallFunctionFvPatchField
(
const
k
Q
RWallFunctionFvPatchField
&
tkqrwfpf
,
const
k
q
RWallFunctionFvPatchField
&
tkqrwfpf
,
const
DimensionedField
<
Type
,
volMesh
>&
iF
)
:
...
...
@@ -129,7 +129,7 @@ kQRWallFunctionFvPatchField<Type>::kQRWallFunctionFvPatchField
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
template
<
class
Type
>
void
k
Q
RWallFunctionFvPatchField
<
Type
>::
evaluate
void
k
q
RWallFunctionFvPatchField
<
Type
>::
evaluate
(
const
Pstream
::
commsTypes
commsType
)
...
...
@@ -139,7 +139,7 @@ void kQRWallFunctionFvPatchField<Type>::evaluate
template
<
class
Type
>
void
k
Q
RWallFunctionFvPatchField
<
Type
>::
write
(
Ostream
&
os
)
const
void
k
q
RWallFunctionFvPatchField
<
Type
>::
write
(
Ostream
&
os
)
const
{
zeroGradientFvPatchField
<
Type
>::
write
(
os
);
this
->
writeEntry
(
"value"
,
os
);
...
...
src/turbulenceModels/compressible/RAS/derivedFvPatchFields/wallFunctions/kqRWallFunctions/kqRWallFunction/kqRWallFunctionFvPatchField.H
View file @
07fccdd7
...
...
@@ -23,19 +23,19 @@ License
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Class
Foam::compressible::RASModels::k
Q
RWallFunctionFvPatchField
Foam::compressible::RASModels::k
q
RWallFunctionFvPatchField
Description
Boundary condition for turbulence k, Q, and R when using wall functions.
Simply acts as a zero gradient condition.
SourceFiles
k
Q
RWallFunctionFvPatchField.C
k
q
RWallFunctionFvPatchField.C
\*---------------------------------------------------------------------------*/
#ifndef k
Q
RWallFunctionFvPatchField_H
#define k
Q
RWallFunctionFvPatchField_H
#ifndef k
q
RWallFunctionFvPatchField_H
#define k
q
RWallFunctionFvPatchField_H
#include
"zeroGradientFvPatchField.H"
...
...
@@ -49,11 +49,11 @@ namespace RASModels
{
/*---------------------------------------------------------------------------*\
Class k
Q
RWallFunctionFvPatchField Declaration
Class k
q
RWallFunctionFvPatchField Declaration
\*---------------------------------------------------------------------------*/
template
<
class
Type
>
class
k
Q
RWallFunctionFvPatchField
class
k
q
RWallFunctionFvPatchField
:
public
zeroGradientFvPatchField
<
Type
>
{
...
...
@@ -67,20 +67,20 @@ class kQRWallFunctionFvPatchField
public:
//- Runtime type information
TypeName
(
"compressible::k
Q
RWallFunction"
);
TypeName
(
"compressible::k
q
RWallFunction"
);
// Constructors
//- Construct from patch and internal field
k
Q
RWallFunctionFvPatchField
k
q
RWallFunctionFvPatchField
(
const
fvPatch
&
,
const
DimensionedField
<
Type
,
volMesh
>&
);
//- Construct from patch, internal field and dictionary
k
Q
RWallFunctionFvPatchField
k
q
RWallFunctionFvPatchField
(
const
fvPatch
&
,
const
DimensionedField
<
Type
,
volMesh
>&
,
...
...
@@ -88,20 +88,20 @@ public:
);
//- Construct by mapping given
// k
Q
RWallFunctionFvPatchField
// k
q
RWallFunctionFvPatchField
// onto a new patch
k
Q
RWallFunctionFvPatchField
k
q
RWallFunctionFvPatchField
(
const
k
Q
RWallFunctionFvPatchField
&
,
const
k
q
RWallFunctionFvPatchField
&
,
const
fvPatch
&
,
const
DimensionedField
<
Type
,
volMesh
>&
,
const
fvPatchFieldMapper
&
);
//- Construct as copy
k
Q
RWallFunctionFvPatchField
k
q
RWallFunctionFvPatchField
(
const
k
Q
RWallFunctionFvPatchField
&
const
k
q
RWallFunctionFvPatchField
&
);
//- Construct and return a clone
...
...
@@ -109,14 +109,14 @@ public:
{
return
tmp
<
fvPatchField
<
Type
>
>
(
new
k
Q
RWallFunctionFvPatchField
(
*
this
)
new
k
q
RWallFunctionFvPatchField
(
*
this
)
);
}
//- Construct as copy setting internal field reference
k
Q
RWallFunctionFvPatchField
k
q
RWallFunctionFvPatchField
(
const
k
Q
RWallFunctionFvPatchField
&
,
const
k
q
RWallFunctionFvPatchField
&
,
const
DimensionedField
<
Type
,
volMesh
>&
);
...
...
@@ -128,7 +128,7 @@ public:
{
return
tmp
<
fvPatchField
<
Type
>
>
(
new
k
Q
RWallFunctionFvPatchField
(
*
this
,
iF
)
new
k
q
RWallFunctionFvPatchField
(
*
this
,
iF
)
);
}
...
...
@@ -160,7 +160,7 @@ public:
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#ifdef NoRepository
# include "k
Q
RWallFunctionFvPatchField.C"
# include "k
q
RWallFunctionFvPatchField.C"
#endif
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
...
...
src/turbulenceModels/compressible/RAS/derivedFvPatchFields/wallFunctions/kqRWallFunctions/kqRWallFunction/kqRWallFunctionFvPatchFields.C
View file @
07fccdd7
...
...
@@ -24,7 +24,7 @@ License
\*---------------------------------------------------------------------------*/
#include
"k
Q
RWallFunctionFvPatchFields.H"
#include
"k
q
RWallFunctionFvPatchFields.H"
#include
"fvPatchFields.H"
#include
"addToRunTimeSelectionTable.H"
#include
"volFields.H"
...
...
@@ -40,7 +40,7 @@ namespace RASModels
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
makePatchFields
(
k
Q
RWallFunction
);
makePatchFields
(
k
q
RWallFunction
);
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
...
...
src/turbulenceModels/compressible/RAS/derivedFvPatchFields/wallFunctions/kqRWallFunctions/kqRWallFunction/kqRWallFunctionFvPatchFields.H
View file @
07fccdd7
...
...
@@ -24,10 +24,10 @@ License
\*---------------------------------------------------------------------------*/
#ifndef k
Q
RWallFunctionFvPatchFields_H
#define k
Q
RWallFunctionFvPatchFields_H
#ifndef k
q
RWallFunctionFvPatchFields_H
#define k
q
RWallFunctionFvPatchFields_H
#include
"k
Q
RWallFunctionFvPatchField.H"
#include
"k
q
RWallFunctionFvPatchField.H"
#include
"fieldTypes.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
...
...
@@ -41,7 +41,7 @@ namespace RASModels
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
makePatchTypeFieldTypedefs
(
k
Q
RWallFunction
)
makePatchTypeFieldTypedefs
(
k
q
RWallFunction
)
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
...
...
src/turbulenceModels/incompressible/RAS/Make/files
View file @
07fccdd7
...
...
@@ -10,7 +10,7 @@ SpalartAllmaras/SpalartAllmaras.C
LRR/LRR.C
LaunderGibsonRSTM/LaunderGibsonRSTM.C
LaunderSharmaKE/LaunderSharmaKE.C
Q
Zeta/
Q
Zeta.C
q
Zeta/
q
Zeta.C
LienCubicKE/LienCubicKE.C
LienCubicKELowRe/LienCubicKELowRe.C
NonlinearKEShih/NonlinearKEShih.C
...
...
@@ -33,8 +33,8 @@ $(epsilonWallFunctions)/epsilonWallFunction/epsilonWallFunctionFvPatchScalarFiel
omegaWallFunctions = $(wallFunctions)/omegaWallFunctions
$(omegaWallFunctions)/omegaWallFunction/omegaWallFunctionFvPatchScalarField.C
k
Q
RWallFunctions = $(wallFunctions)/k
Q
RWallFunctions
$(k
Q
RWallFunctions)/k
Q
RWallFunction/k
Q
RWallFunctionFvPatchFields.C
k
q
RWallFunctions = $(wallFunctions)/k
q
RWallFunctions
$(k
q
RWallFunctions)/k
q
RWallFunction/k
q
RWallFunctionFvPatchFields.C
/* Patch fields */
...
...
src/turbulenceModels/incompressible/RAS/derivedFvPatchFields/wallFunctions/kqRWallFunctions/kqRWallFunction/kqRWallFunctionFvPatchField.C
View file @
07fccdd7
...
...
@@ -24,7 +24,7 @@ License
\*---------------------------------------------------------------------------*/
#include
"k
Q
RWallFunctionFvPatchField.H"
#include
"k
q
RWallFunctionFvPatchField.H"
#include
"RASModel.H"
#include
"fvPatchFieldMapper.H"
#include
"volFields.H"
...
...
@@ -43,11 +43,11 @@ namespace RASModels
// * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
template
<
class
Type
>
void
k
Q
RWallFunctionFvPatchField
<
Type
>::
checkType
()
void
k
q
RWallFunctionFvPatchField
<
Type
>::
checkType
()
{
if
(
!
isA
<
wallFvPatch
>
(
this
->
patch
()))
{
FatalErrorIn
(
"k
Q
RWallFunctionFvPatchField::checkType()"
)
FatalErrorIn
(
"k
q
RWallFunctionFvPatchField::checkType()"
)
<<
"Invalid wall function specification"
<<
nl
<<
" Patch type for patch "
<<
this
->
patch
().
name
()
<<
" must be wall"
<<
nl
...
...
@@ -60,7 +60,7 @@ void kQRWallFunctionFvPatchField<Type>::checkType()
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
template
<
class
Type
>
k
Q
RWallFunctionFvPatchField
<
Type
>::
k
Q
RWallFunctionFvPatchField
k
q
RWallFunctionFvPatchField
<
Type
>::
k
q
RWallFunctionFvPatchField
(
const
fvPatch
&
p
,
const
DimensionedField
<
Type
,
volMesh
>&
iF
...
...
@@ -73,9 +73,9 @@ kQRWallFunctionFvPatchField<Type>::kQRWallFunctionFvPatchField
template
<
class
Type
>
k
Q
RWallFunctionFvPatchField
<
Type
>::
k
Q
RWallFunctionFvPatchField
k
q
RWallFunctionFvPatchField
<
Type
>::
k
q
RWallFunctionFvPatchField
(
const
k
Q
RWallFunctionFvPatchField
&
ptf
,
const
k
q
RWallFunctionFvPatchField
&
ptf
,
const
fvPatch
&
p
,
const
DimensionedField
<
Type
,
volMesh
>&
iF
,
const
fvPatchFieldMapper
&
mapper
...
...
@@ -88,7 +88,7 @@ kQRWallFunctionFvPatchField<Type>::kQRWallFunctionFvPatchField
template
<
class
Type
>
k
Q
RWallFunctionFvPatchField
<
Type
>::
k
Q
RWallFunctionFvPatchField
k
q
RWallFunctionFvPatchField
<
Type
>::
k
q
RWallFunctionFvPatchField
(
const
fvPatch
&
p
,
const
DimensionedField
<
Type
,
volMesh
>&
iF
,
...
...
@@ -102,9 +102,9 @@ kQRWallFunctionFvPatchField<Type>::kQRWallFunctionFvPatchField
template
<
class
Type
>
k
Q
RWallFunctionFvPatchField
<
Type
>::
k
Q
RWallFunctionFvPatchField
k
q
RWallFunctionFvPatchField
<
Type
>::
k
q
RWallFunctionFvPatchField
(
const
k
Q
RWallFunctionFvPatchField
&
tkqrwfpf
const
k
q
RWallFunctionFvPatchField
&
tkqrwfpf
)
:
zeroGradientFvPatchField
<
Type
>
(
tkqrwfpf
)
...
...
@@ -114,9 +114,9 @@ kQRWallFunctionFvPatchField<Type>::kQRWallFunctionFvPatchField
template
<
class
Type
>
k
Q
RWallFunctionFvPatchField
<
Type
>::
k
Q
RWallFunctionFvPatchField
k
q
RWallFunctionFvPatchField
<
Type
>::
k
q
RWallFunctionFvPatchField
(
const
k
Q
RWallFunctionFvPatchField
&
tkqrwfpf
,
const
k
q
RWallFunctionFvPatchField
&
tkqrwfpf
,
const
DimensionedField
<
Type
,
volMesh
>&
iF
)
:
...
...
@@ -129,7 +129,7 @@ kQRWallFunctionFvPatchField<Type>::kQRWallFunctionFvPatchField
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
template
<
class
Type
>
void
k
Q
RWallFunctionFvPatchField
<
Type
>::
evaluate
void
k
q
RWallFunctionFvPatchField
<
Type
>::
evaluate
(
const
Pstream
::
commsTypes
commsType
)
...
...
@@ -139,7 +139,7 @@ void kQRWallFunctionFvPatchField<Type>::evaluate
template
<
class
Type
>
void
k
Q
RWallFunctionFvPatchField
<
Type
>::
write
(
Ostream
&
os
)
const
void
k
q
RWallFunctionFvPatchField
<
Type
>::
write
(
Ostream
&
os
)
const
{
zeroGradientFvPatchField
<
Type
>::
write
(
os
);
this
->
writeEntry
(
"value"
,
os
);
...
...
src/turbulenceModels/incompressible/RAS/derivedFvPatchFields/wallFunctions/kqRWallFunctions/kqRWallFunction/kqRWallFunctionFvPatchField.H
View file @
07fccdd7
...
...
@@ -23,19 +23,19 @@ License
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Class
Foam::incompressible::RASModels::k
Q
RWallFunctionFvPatchField
Foam::incompressible::RASModels::k
q
RWallFunctionFvPatchField
Description
Boundary condition for turbulence k, Q, and R when using wall functions.
Simply acts as a zero gradient condition.
SourceFiles
k
Q
RWallFunctionFvPatchField.C
k
q
RWallFunctionFvPatchField.C
\*---------------------------------------------------------------------------*/
#ifndef k
Q
RWallFunctionFvPatchField_H
#define k
Q
RWallFunctionFvPatchField_H
#ifndef k
q
RWallFunctionFvPatchField_H
#define k
q
RWallFunctionFvPatchField_H
#include
"zeroGradientFvPatchField.H"
...
...
@@ -49,11 +49,11 @@ namespace RASModels
{
/*---------------------------------------------------------------------------*\
Class k
Q
RWallFunctionFvPatchField Declaration
Class k
q
RWallFunctionFvPatchField Declaration
\*---------------------------------------------------------------------------*/
template
<
class
Type
>
class
k
Q
RWallFunctionFvPatchField
class
k
q
RWallFunctionFvPatchField
:
public
zeroGradientFvPatchField
<
Type
>
{
...
...
@@ -67,20 +67,20 @@ class kQRWallFunctionFvPatchField
public:
//- Runtime type information
TypeName
(
"k
Q
RWallFunction"
);
TypeName
(
"k
q
RWallFunction"
);
// Constructors
//- Construct from patch and internal field
k
Q
RWallFunctionFvPatchField
k
q
RWallFunctionFvPatchField
(
const
fvPatch
&
,
const
DimensionedField
<
Type
,
volMesh
>&
);
//- Construct from patch, internal field and dictionary
k
Q
RWallFunctionFvPatchField
k
q
RWallFunctionFvPatchField
(
const
fvPatch
&
,
const
DimensionedField
<
Type
,
volMesh
>&
,
...
...
@@ -88,20 +88,20 @@ public:
);
//- Construct by mapping given
// k
Q
RWallFunctionFvPatchField
// k
q
RWallFunctionFvPatchField
// onto a new patch
k
Q
RWallFunctionFvPatchField
k
q
RWallFunctionFvPatchField
(
const
k
Q
RWallFunctionFvPatchField
&
,
const
k
q
RWallFunctionFvPatchField
&
,
const
fvPatch
&
,
const
DimensionedField
<
Type
,
volMesh
>&
,
const
fvPatchFieldMapper
&
);
//- Construct as copy
k
Q
RWallFunctionFvPatchField
k
q
RWallFunctionFvPatchField
(
const
k
Q
RWallFunctionFvPatchField
&
const
k
q
RWallFunctionFvPatchField
&
);
//- Construct and return a clone
...
...
@@ -109,14 +109,14 @@ public:
{
return
tmp
<
fvPatchField
<
Type
>
>
(
new
k
Q
RWallFunctionFvPatchField
(
*
this
)
new
k
q
RWallFunctionFvPatchField
(
*
this
)
);
}
//- Construct as copy setting internal field reference
k
Q
RWallFunctionFvPatchField
k
q
RWallFunctionFvPatchField
(
const
k
Q
RWallFunctionFvPatchField
&
,
const
k
q
RWallFunctionFvPatchField
&
,
const
DimensionedField
<
Type
,
volMesh
>&
);
...
...
@@ -128,7 +128,7 @@ public:
{
return
tmp
<
fvPatchField
<
Type
>
>
(
new
k
Q
RWallFunctionFvPatchField
(
*
this
,
iF
)
new
k
q
RWallFunctionFvPatchField
(
*
this
,
iF
)
);
}
...
...
@@ -160,7 +160,7 @@ public:
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#ifdef NoRepository
# include "k
Q
RWallFunctionFvPatchField.C"
# include "k
q
RWallFunctionFvPatchField.C"
#endif
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
...
...
src/turbulenceModels/incompressible/RAS/derivedFvPatchFields/wallFunctions/kqRWallFunctions/kqRWallFunction/kqRWallFunctionFvPatchFields.C
View file @
07fccdd7
...
...
@@ -24,7 +24,7 @@ License
\*---------------------------------------------------------------------------*/
#include
"k
Q
RWallFunctionFvPatchFields.H"
#include
"k
q
RWallFunctionFvPatchFields.H"
#include
"fvPatchFields.H"
#include
"addToRunTimeSelectionTable.H"
#include
"volFields.H"
...
...
@@ -40,7 +40,7 @@ namespace RASModels
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
makePatchFields
(
k
Q
RWallFunction
);
makePatchFields
(
k
q
RWallFunction
);
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
...
...
src/turbulenceModels/incompressible/RAS/derivedFvPatchFields/wallFunctions/kqRWallFunctions/kqRWallFunction/kqRWallFunctionFvPatchFields.H
View file @
07fccdd7
...
...
@@ -24,10 +24,10 @@ License
\*---------------------------------------------------------------------------*/
#ifndef k
Q
RWallFunctionFvPatchFields_H
#define k
Q
RWallFunctionFvPatchFields_H
#ifndef k
q
RWallFunctionFvPatchFields_H
#define k
q
RWallFunctionFvPatchFields_H
#include
"k
Q
RWallFunctionFvPatchField.H"
#include
"k
q
RWallFunctionFvPatchField.H"
#include
"fieldTypes.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
...
...
@@ -41,7 +41,7 @@ namespace RASModels
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
makePatchTypeFieldTypedefs
(
k
Q
RWallFunction
)
makePatchTypeFieldTypedefs
(
k
q
RWallFunction
)
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
...
...
Write
Preview