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
6bc9714f
Commit
6bc9714f
authored
Oct 29, 2012
by
andy
Browse files
ENH: Updated MRF solvers
parent
41d98c2d
Changes
15
Hide whitespace changes
Inline
Side-by-side
applications/solvers/compressible/rhoPimpleFoam/rhoPorousMRFLTSPimpleFoam/rhoPorousMRFLTSPimpleFoam.C
View file @
6bc9714f
...
...
@@ -37,7 +37,7 @@ Description
#include
"fvCFD.H"
#include
"psiThermo.H"
#include
"turbulenceModel.H"
#include
"MRFZone
s
.H"
#include
"
IO
MRFZone
List
.H"
#include
"IOporosityModelList.H"
#include
"IObasicSourceList.H"
#include
"fvcSmooth.H"
...
...
applications/solvers/compressible/rhoPimpleFoam/rhoPorousMRFPimpleFoam/createZones.H
View file @
6bc9714f
MRFZone
s
mrfZones
(
mesh
);
IO
MRFZone
List
mrfZones
(
mesh
);
mrfZones
.
correctBoundaryVelocity
(
U
);
IOporosityModelList
pZones
(
mesh
);
...
...
applications/solvers/compressible/rhoPimpleFoam/rhoPorousMRFPimpleFoam/rhoPorousMRFPimpleFoam.C
View file @
6bc9714f
...
...
@@ -37,7 +37,7 @@ Description
#include
"psiThermo.H"
#include
"turbulenceModel.H"
#include
"bound.H"
#include
"MRFZone
s
.H"
#include
"
IO
MRFZone
List
.H"
#include
"IOporosityModelList.H"
#include
"IObasicSourceList.H"
#include
"pimpleControl.H"
...
...
applications/solvers/compressible/rhoSimpleFoam/rhoPorousMRFSimpleFoam/createZones.H
View file @
6bc9714f
MRFZone
s
mrfZones
(
mesh
);
IO
MRFZone
List
mrfZones
(
mesh
);
mrfZones
.
correctBoundaryVelocity
(
U
);
IOporosityModelList
pZones
(
mesh
);
...
...
applications/solvers/compressible/rhoSimpleFoam/rhoPorousMRFSimpleFoam/rhoPorousMRFSimpleFoam.C
View file @
6bc9714f
...
...
@@ -34,7 +34,7 @@ Description
#include
"fvCFD.H"
#include
"rhoThermo.H"
#include
"RASModel.H"
#include
"MRFZone
s
.H"
#include
"
IO
MRFZone
List
.H"
#include
"IObasicSourceList.H"
#include
"IOporosityModelList.H"
#include
"simpleControl.H"
...
...
applications/solvers/incompressible/simpleFoam/MRFSimpleFoam/MRFSimpleFoam.C
View file @
6bc9714f
...
...
@@ -33,7 +33,7 @@ Description
#include
"fvCFD.H"
#include
"singlePhaseTransportModel.H"
#include
"RASModel.H"
#include
"MRFZone
s
.H"
#include
"
IO
MRFZone
List
.H"
#include
"simpleControl.H"
#include
"IObasicSourceList.H"
...
...
@@ -48,7 +48,7 @@ int main(int argc, char *argv[])
#include
"createFields.H"
#include
"initContinuityErrs.H"
MRFZone
s
mrfZones
(
mesh
);
IO
MRFZone
List
mrfZones
(
mesh
);
mrfZones
.
correctBoundaryVelocity
(
U
);
simpleControl
simple
(
mesh
);
...
...
applications/solvers/multiphase/compressibleTwoPhaseEulerFoam/compressibleTwoPhaseEulerFoam.C
View file @
6bc9714f
...
...
@@ -46,7 +46,7 @@ Description
#include
"pimpleControl.H"
#include
"MRFZone
s
.H"
#include
"
IO
MRFZone
List
.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
...
...
applications/solvers/multiphase/compressibleTwoPhaseEulerFoam/createMRFZones.H
View file @
6bc9714f
MRFZone
s
mrfZones
(
mesh
);
IO
MRFZone
List
mrfZones
(
mesh
);
mrfZones
.
correctBoundaryVelocity
(
U1
);
mrfZones
.
correctBoundaryVelocity
(
U2
);
mrfZones
.
correctBoundaryVelocity
(
U
);
applications/solvers/multiphase/interFoam/MRFInterFoam/MRFInterFoam.C
View file @
6bc9714f
...
...
@@ -42,7 +42,7 @@ Description
#include
"interfaceProperties.H"
#include
"twoPhaseMixture.H"
#include
"turbulenceModel.H"
#include
"MRFZone
s
.H"
#include
"
IO
MRFZone
List
.H"
#include
"pimpleControl.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
...
...
applications/solvers/multiphase/interFoam/MRFInterFoam/createMRFZones.H
View file @
6bc9714f
MRFZone
s
mrfZones
(
mesh
);
IO
MRFZone
List
mrfZones
(
mesh
);
mrfZones
.
correctBoundaryVelocity
(
U
);
applications/solvers/multiphase/multiphaseEulerFoam/createMRFZones.H
View file @
6bc9714f
MRFZone
s
mrfZones
(
mesh
);
IO
MRFZone
List
mrfZones
(
mesh
);
forAllIter
(
PtrDictionary
<
phaseModel
>
,
fluid
.
phases
(),
iter
)
{
...
...
applications/solvers/multiphase/multiphaseEulerFoam/multiphaseEulerFoam.C
View file @
6bc9714f
...
...
@@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2011 OpenFOAM Foundation
\\ / A nd | Copyright (C) 2011
-2012
OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
...
...
@@ -40,7 +40,7 @@ Description
#include
"singlePhaseTransportModel.H"
#include
"LESModel.H"
#include
"MRFZone
s
.H"
#include
"
IO
MRFZone
List
.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
...
...
applications/solvers/multiphase/multiphaseInterFoam/MRFMultiphaseInterFoam/MRFMultiphaseInterFoam.C
View file @
6bc9714f
...
...
@@ -35,7 +35,7 @@ Description
#include
"fvCFD.H"
#include
"multiphaseMixture.H"
#include
"turbulenceModel.H"
#include
"MRFZone
s
.H"
#include
"
IO
MRFZone
List
.H"
#include
"pimpleControl.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
...
...
applications/solvers/multiphase/twoPhaseEulerFoam/createMRFZones.H
View file @
6bc9714f
MRFZone
s
mrfZones
(
mesh
);
IO
MRFZone
List
mrfZones
(
mesh
);
mrfZones
.
correctBoundaryVelocity
(
U1
);
mrfZones
.
correctBoundaryVelocity
(
U2
);
mrfZones
.
correctBoundaryVelocity
(
U
);
applications/solvers/multiphase/twoPhaseEulerFoam/twoPhaseEulerFoam.C
View file @
6bc9714f
...
...
@@ -46,7 +46,7 @@ Description
#include
"kineticTheoryModel.H"
#include
"pimpleControl.H"
#include
"MRFZone
s
.H"
#include
"
IO
MRFZone
List
.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
...
...
Write
Preview
Supports
Markdown
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