Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
openfoam
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Development
openfoam
Commits
e6e97285
Commit
e6e97285
authored
11 years ago
by
Henry
Committed by
Andrew Heather
11 years ago
Browse files
Options
Downloads
Patches
Plain Diff
TurbulenceModels/turbulenceModels/laminar: Corrected name of nuEff for multiphase
parent
de8b6c20
Loading
Loading
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/TurbulenceModels/turbulenceModels/laminar/laminar.C
+9
-6
9 additions, 6 deletions
src/TurbulenceModels/turbulenceModels/laminar/laminar.C
with
9 additions
and
6 deletions
src/TurbulenceModels/turbulenceModels/laminar/laminar.C
+
9
−
6
View file @
e6e97285
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
========= |
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / O peration |
\\ / A nd | Copyright (C) 2013 OpenFOAM Foundation
\\ / A nd | Copyright (C) 2013
-2014
OpenFOAM Foundation
\\/ M anipulation |
\\/ M anipulation |
-------------------------------------------------------------------------------
-------------------------------------------------------------------------------
License
License
...
@@ -38,7 +38,7 @@ Foam::laminar<BasicTurbulenceModel>::laminar
...
@@ -38,7 +38,7 @@ Foam::laminar<BasicTurbulenceModel>::laminar
const
alphaField
&
alpha
,
const
alphaField
&
alpha
,
const
rhoField
&
rho
,
const
rhoField
&
rho
,
const
volVectorField
&
U
,
const
volVectorField
&
U
,
const
surfaceScalarField
&
alphaPhi
,
const
surfaceScalarField
&
alpha
Rho
Phi
,
const
surfaceScalarField
&
phi
,
const
surfaceScalarField
&
phi
,
const
transportModel
&
transport
,
const
transportModel
&
transport
,
const
word
&
propertiesName
const
word
&
propertiesName
...
@@ -49,7 +49,7 @@ Foam::laminar<BasicTurbulenceModel>::laminar
...
@@ -49,7 +49,7 @@ Foam::laminar<BasicTurbulenceModel>::laminar
alpha
,
alpha
,
rho
,
rho
,
U
,
U
,
alphaPhi
,
alpha
Rho
Phi
,
phi
,
phi
,
transport
,
transport
,
propertiesName
propertiesName
...
@@ -66,7 +66,7 @@ Foam::laminar<BasicTurbulenceModel>::New
...
@@ -66,7 +66,7 @@ Foam::laminar<BasicTurbulenceModel>::New
const
alphaField
&
alpha
,
const
alphaField
&
alpha
,
const
rhoField
&
rho
,
const
rhoField
&
rho
,
const
volVectorField
&
U
,
const
volVectorField
&
U
,
const
surfaceScalarField
&
alphaPhi
,
const
surfaceScalarField
&
alpha
Rho
Phi
,
const
surfaceScalarField
&
phi
,
const
surfaceScalarField
&
phi
,
const
transportModel
&
transport
,
const
transportModel
&
transport
,
const
word
&
propertiesName
const
word
&
propertiesName
...
@@ -79,7 +79,7 @@ Foam::laminar<BasicTurbulenceModel>::New
...
@@ -79,7 +79,7 @@ Foam::laminar<BasicTurbulenceModel>::New
alpha
,
alpha
,
rho
,
rho
,
U
,
U
,
alphaPhi
,
alpha
Rho
Phi
,
phi
,
phi
,
transport
,
transport
,
propertiesName
propertiesName
...
@@ -141,7 +141,10 @@ Foam::laminar<BasicTurbulenceModel>::nuEff() const
...
@@ -141,7 +141,10 @@ Foam::laminar<BasicTurbulenceModel>::nuEff() const
{
{
return
tmp
<
volScalarField
>
return
tmp
<
volScalarField
>
(
(
new
volScalarField
(
"nuEff"
,
this
->
nu
())
new
volScalarField
(
IOobject
::
groupName
(
"nuEff"
,
this
->
U_
.
group
()),
this
->
nu
()
)
);
);
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment