Skip to content
GitLab
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
58009f65
Commit
58009f65
authored
Dec 18, 2019
by
Andrew Heather
Browse files
COMP: Resolved some clang compiler warnings
parent
4dd5adac
Changes
3
Hide whitespace changes
Inline
Side-by-side
src/TurbulenceModels/turbulenceModels/RAS/kEpsilonPhitF/kEpsilonPhitF.C
View file @
58009f65
...
...
@@ -51,7 +51,7 @@ void kEpsilonPhitF<BasicTurbulenceModel>::correctNut()
template
<
class
BasicTurbulenceModel
>
volScalarField
kEpsilonPhitF
<
BasicTurbulenceModel
>::
Ts
()
const
tmp
<
volScalarField
>
kEpsilonPhitF
<
BasicTurbulenceModel
>::
Ts
()
const
{
// (LUU:Eq. 7)
return
...
...
@@ -71,7 +71,7 @@ volScalarField kEpsilonPhitF<BasicTurbulenceModel>::Ts() const
template
<
class
BasicTurbulenceModel
>
volScalarField
kEpsilonPhitF
<
BasicTurbulenceModel
>::
Ls
()
const
tmp
<
volScalarField
>
kEpsilonPhitF
<
BasicTurbulenceModel
>::
Ls
()
const
{
// (LUU:Eq. 7)
return
...
...
@@ -440,7 +440,7 @@ void kEpsilonPhitF<BasicTurbulenceModel>::correct()
==
alpha
()
*
rho
()
*
G
()
-
fvm
::
SuSp
(
2
.
0
/
3
.
0
*
alpha
()
*
rho
()
*
divU
,
k_
)
-
fvm
::
Sp
(
alpha
()
*
rho
()
/
T_
(),
k_
)
-
fvm
::
Sp
(
alpha
()
*
rho
()
*
(
1
.
0
/
T_
()
)
,
k_
)
+
fvOptions
(
alpha
,
rho
,
k_
)
);
...
...
src/TurbulenceModels/turbulenceModels/RAS/kEpsilonPhitF/kEpsilonPhitF.H
View file @
58009f65
...
...
@@ -44,7 +44,7 @@ Description
\verbatim
Standard model (Tag:LUU):
Laurence, D. R., Uribe, J. C., & Utyuzhnikov, S. V. (2005).
A robust formulation of the v2
−
f model.
A robust formulation of the v2
-
f model.
Flow, Turbulence and Combustion, 73(3-4), 169–185.
DOI:10.1007/s10494-005-1974-8
\endverbatim
...
...
@@ -168,10 +168,10 @@ protected:
virtual
void
correctNut
();
//- Return the turbulent time scale, T
volScalarField
Ts
()
const
;
tmp
<
volScalarField
>
Ts
()
const
;
//- Return the turbulent length scale, L
volScalarField
Ls
()
const
;
tmp
<
volScalarField
>
Ls
()
const
;
public:
...
...
@@ -293,4 +293,4 @@ public:
#endif
// ************************************************************************* //
\ No newline at end of file
// ************************************************************************* //
src/phaseSystemModels/reactingEulerFoam/derivedFvPatchFields/alphatWallBoilingWallFunction/alphatWallBoilingWallFunctionFvPatchScalarField.C
View file @
58009f65
...
...
@@ -153,9 +153,6 @@ alphatWallBoilingWallFunctionFvPatchScalarField
dict
.
subDict
(
"partitioningModel"
)
);
const
dictionary
*
LeidenfrostDict
=
dict
.
findDict
(
"LeidenfrostModel"
);
dmdt_
=
0
;
break
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment