Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Development
openfoam
Commits
8d7689b2
Commit
8d7689b2
authored
Nov 24, 2010
by
mattijs
Browse files
Merge branch 'master' of /home/noisy3/OpenFOAM/OpenFOAM-dev
parents
7ab3576f
064029d9
Changes
4
Hide whitespace changes
Inline
Side-by-side
src/Allwmake
View file @
8d7689b2
...
...
@@ -21,16 +21,16 @@ OSspecific/$WM_OSTYPE/Allwmake
wmake libso OpenFOAM
wmake libso fileFormats
wmake libso triSurface
wmake libso meshTools
wmake libso edgeMesh
wmake libso surfMesh
wmake libso triSurface
# Decomposition methods needed by dummyThirdParty
parallel/decompose/AllwmakeLnInclude
# dummyThirdParty (dummy metisDecomp, scotchDecomp etc) needed by e.g. meshTools
dummyThirdParty/Allwmake
wmake libso meshTools
wmake libso lagrangian/basic
wmake libso finiteVolume
wmake libso genericPatchFields
...
...
src/edgeMesh/Make/options
View file @
8d7689b2
EXE_INC = \
-I$(LIB_SRC)/fileFormats/lnInclude \
-I$(LIB_SRC)/triSurface/lnInclude \
-I$(LIB_SRC)/meshTools/lnInclude
-I$(LIB_SRC)/triSurface/lnInclude \
-I$(LIB_SRC)/meshTools/lnInclude
LIB_LIBS = \
-ltriSurface \
-lmeshTools \
-lmeshTools \
-lfileFormats
src/turbulenceModels/incompressible/LES/kOmegaSSTSAS/kOmegaSSTSAS.C
View file @
8d7689b2
...
...
@@ -328,7 +328,7 @@ kOmegaSSTSAS::kOmegaSSTSAS
bound
(
k_
,
kMin_
);
bound
(
omega_
,
omegaMin_
);
updateSubGridScaleFields
(
magSqr
(
symm
(
fvc
::
grad
(
U
))));
updateSubGridScaleFields
(
magSqr
(
2
.
0
*
symm
(
fvc
::
grad
(
U
))));
printCoeffs
();
}
...
...
@@ -345,7 +345,7 @@ void kOmegaSSTSAS::correct(const tmp<volTensorField>& gradU)
y_
.
correct
();
}
volScalarField
S2
=
magSqr
(
symm
(
gradU
()));
volScalarField
S2
=
magSqr
(
2
.
0
*
symm
(
gradU
()));
gradU
.
clear
();
volVectorField
gradK
=
fvc
::
grad
(
k_
);
...
...
@@ -353,7 +353,7 @@ void kOmegaSSTSAS::correct(const tmp<volTensorField>& gradU)
volScalarField
L
=
sqrt
(
k_
)
/
(
pow025
(
Cmu_
)
*
omega_
);
volScalarField
CDkOmega
=
(
2
.
0
*
alphaOmega2_
)
*
(
gradK
&
gradOmega
)
/
omega_
;
volScalarField
F1
=
this
->
F1
(
CDkOmega
);
volScalarField
G
=
nuSgs_
*
2
.
0
*
S2
;
volScalarField
G
=
nuSgs_
*
0
.
5
*
S2
;
// Turbulent kinetic energy equation
{
...
...
@@ -388,7 +388,7 @@ void kOmegaSSTSAS::correct(const tmp<volTensorField>& gradU)
-
fvm
::
Sp
(
fvc
::
div
(
phi
()),
omega_
)
-
fvm
::
laplacian
(
DomegaEff
(
F1
),
omega_
)
==
gamma
(
F1
)
*
2
.
0
*
S2
gamma
(
F1
)
*
0
.
5
*
S2
-
fvm
::
Sp
(
beta
(
F1
)
*
omega_
,
omega_
)
-
fvm
::
SuSp
// cross diffusion term
(
...
...
src/turbulenceModels/incompressible/LES/kOmegaSSTSAS/kOmegaSSTSAS.H
View file @
8d7689b2
...
...
@@ -27,7 +27,11 @@ Class
Description
kOmegaSSTSAS LES turbulence model for incompressible flows
Reference:
References:
A Scale-Adaptive Simulation Model using Two-Equation Models
AIAA 2005-1095
F. R. Menter and Y. Egorov
DESider A European Effort on Hybrid RANS-LES Modelling:
Results of the European-Union Funded Project, 2004 - 2007
(Notes on Numerical Fluid Mechanics and Multidisciplinary Design).
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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