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
7b5bff1a
Commit
7b5bff1a
authored
Dec 21, 2010
by
Mark Olesen
Browse files
COMP: avoid ambiguous construct from tmp - solvers/ DNS
parent
43ec00e5
Changes
3
Hide whitespace changes
Inline
Side-by-side
applications/solvers/DNS/dnsFoam/dnsFoam.C
View file @
7b5bff1a
...
...
@@ -85,7 +85,7 @@ int main(int argc, char *argv[])
for
(
int
corr
=
1
;
corr
<=
1
;
corr
++
)
{
volScalarField
rAU
=
1
.
0
/
UEqn
.
A
();
volScalarField
rAU
(
1
.
0
/
UEqn
.
A
()
)
;
U
=
rAU
*
UEqn
.
H
();
phi
=
(
fvc
::
interpolate
(
U
)
&
mesh
.
Sf
())
...
...
applications/solvers/DNS/dnsFoam/readTurbulenceProperties.H
View file @
7b5bff1a
...
...
@@ -12,8 +12,10 @@
)
);
volVectorField
force
=
U
/
dimensionedScalar
(
"dt"
,
dimTime
,
runTime
.
deltaTValue
());
volVectorField
force
(
U
/
dimensionedScalar
(
"dt"
,
dimTime
,
runTime
.
deltaTValue
())
);
Kmesh
K
(
mesh
);
UOprocess
forceGen
(
K
,
runTime
.
deltaTValue
(),
turbulenceProperties
);
applications/solvers/basic/laplacianFoam/write.H
View file @
7b5bff1a
if
(
runTime
.
outputTime
())
{
volVectorField
gradT
=
fvc
::
grad
(
T
);
volVectorField
gradT
(
fvc
::
grad
(
T
)
)
;
volScalarField
gradTx
(
...
...
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