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
HPCAPPs
OpenFOAM-GPU-v2.0
Commits
649c29f9
Commit
649c29f9
authored
Aug 30, 2023
by
quant
Browse files
Initial commit
parent
89db0b5a
Changes
789
Hide whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
1038 additions
and
0 deletions
+1038
-0
OpenFOAM-v2112/applications/solvers/incompressible/pimpleFoam/overPimpleDyMFoam/readControls.H
...ncompressible/pimpleFoam/overPimpleDyMFoam/readControls.H
+10
-0
OpenFOAM-v2112/applications/solvers/incompressible/pimpleFoam/pEqn.H
...112/applications/solvers/incompressible/pimpleFoam/pEqn.H
+69
-0
OpenFOAM-v2112/applications/solvers/incompressible/pimpleFoam/pimpleFoam.C
...plications/solvers/incompressible/pimpleFoam/pimpleFoam.C
+197
-0
OpenFOAM-v2112/applications/solvers/incompressible/pimpleFoam/setRDeltaT.H
...plications/solvers/incompressible/pimpleFoam/setRDeltaT.H
+69
-0
OpenFOAM-v2112/applications/solvers/incompressible/pisoFoam/Make/files
...2/applications/solvers/incompressible/pisoFoam/Make/files
+3
-0
OpenFOAM-v2112/applications/solvers/incompressible/pisoFoam/Make/options
...applications/solvers/incompressible/pisoFoam/Make/options
+17
-0
OpenFOAM-v2112/applications/solvers/incompressible/pisoFoam/UEqn.H
...v2112/applications/solvers/incompressible/pisoFoam/UEqn.H
+23
-0
OpenFOAM-v2112/applications/solvers/incompressible/pisoFoam/createFields.H
...plications/solvers/incompressible/pisoFoam/createFields.H
+46
-0
OpenFOAM-v2112/applications/solvers/incompressible/pisoFoam/pEqn.H
...v2112/applications/solvers/incompressible/pisoFoam/pEqn.H
+41
-0
OpenFOAM-v2112/applications/solvers/incompressible/pisoFoam/pisoFoam.C
...2/applications/solvers/incompressible/pisoFoam/pisoFoam.C
+133
-0
OpenFOAM-v2112/applications/solvers/incompressible/shallowWaterFoam/CourantNo.H
...tions/solvers/incompressible/shallowWaterFoam/CourantNo.H
+69
-0
OpenFOAM-v2112/applications/solvers/incompressible/shallowWaterFoam/Make/files
...ations/solvers/incompressible/shallowWaterFoam/Make/files
+3
-0
OpenFOAM-v2112/applications/solvers/incompressible/shallowWaterFoam/Make/options
...ions/solvers/incompressible/shallowWaterFoam/Make/options
+7
-0
OpenFOAM-v2112/applications/solvers/incompressible/shallowWaterFoam/createFields.H
...ns/solvers/incompressible/shallowWaterFoam/createFields.H
+79
-0
OpenFOAM-v2112/applications/solvers/incompressible/shallowWaterFoam/createPhi.H
...tions/solvers/incompressible/shallowWaterFoam/createPhi.H
+52
-0
OpenFOAM-v2112/applications/solvers/incompressible/shallowWaterFoam/readGravitationalAcceleration.H
...ressible/shallowWaterFoam/readGravitationalAcceleration.H
+24
-0
OpenFOAM-v2112/applications/solvers/incompressible/shallowWaterFoam/shallowWaterFoam.C
...olvers/incompressible/shallowWaterFoam/shallowWaterFoam.C
+172
-0
OpenFOAM-v2112/applications/solvers/incompressible/simpleFoam/Make/files
...applications/solvers/incompressible/simpleFoam/Make/files
+3
-0
OpenFOAM-v2112/applications/solvers/incompressible/simpleFoam/Make/options
...plications/solvers/incompressible/simpleFoam/Make/options
+18
-0
OpenFOAM-v2112/applications/solvers/incompressible/simpleFoam/SRFSimpleFoam/Make/files
...olvers/incompressible/simpleFoam/SRFSimpleFoam/Make/files
+3
-0
No files found.
Too many changes to show.
To preserve performance only
789 of 789+
files are displayed.
Plain diff
Email patch
OpenFOAM-v2112/applications/solvers/incompressible/pimpleFoam/overPimpleDyMFoam/readControls.H
0 → 100644
View file @
649c29f9
#include "readTimeControls.H"
correctPhi
=
pimple
.
dict
().
getOrDefault
(
"correctPhi"
,
false
);
checkMeshCourantNo
=
pimple
.
dict
().
getOrDefault
(
"checkMeshCourantNo"
,
false
);
massFluxInterpolation
=
pimple
.
dict
().
getOrDefault
(
"massFluxInterpolation"
,
false
);
ddtCorr
=
pimple
.
dict
().
getOrDefault
(
"ddtCorr"
,
true
);
OpenFOAM-v2112/applications/solvers/incompressible/pimpleFoam/pEqn.H
0 → 100644
View file @
649c29f9
volScalarField
rAU
(
1
.
0
/
UEqn
.
A
());
volVectorField
HbyA
(
constrainHbyA
(
rAU
*
UEqn
.
H
(),
U
,
p
));
surfaceScalarField
phiHbyA
(
"phiHbyA"
,
fvc
::
flux
(
HbyA
));
if
(
pimple
.
ddtCorr
())
{
phiHbyA
+=
MRF
.
zeroFilter
(
fvc
::
interpolate
(
rAU
)
*
fvc
::
ddtCorr
(
U
,
phi
,
Uf
));
}
MRF
.
makeRelative
(
phiHbyA
);
if
(
p
.
needReference
())
{
fvc
::
makeRelative
(
phiHbyA
,
U
);
adjustPhi
(
phiHbyA
,
U
,
p
);
fvc
::
makeAbsolute
(
phiHbyA
,
U
);
}
tmp
<
volScalarField
>
rAtU
(
rAU
);
if
(
pimple
.
consistent
())
{
rAtU
=
1
.
0
/
max
(
1
.
0
/
rAU
-
UEqn
.
H1
(),
0
.
1
/
rAU
);
phiHbyA
+=
fvc
::
interpolate
(
rAtU
()
-
rAU
)
*
fvc
::
snGrad
(
p
)
*
mesh
.
magSf
();
HbyA
-=
(
rAU
-
rAtU
())
*
fvc
::
grad
(
p
);
}
if
(
pimple
.
nCorrPISO
()
<=
1
)
{
tUEqn
.
clear
();
}
// Update the pressure BCs to ensure flux consistency
constrainPressure
(
p
,
U
,
phiHbyA
,
rAtU
(),
MRF
);
// Non-orthogonal pressure corrector loop
while
(
pimple
.
correctNonOrthogonal
())
{
fvScalarMatrix
pEqn
(
fvm
::
laplacian
(
rAtU
(),
p
)
==
fvc
::
div
(
phiHbyA
)
);
pEqn
.
setReference
(
pRefCell
,
pRefValue
);
pEqn
.
solve
(
mesh
.
solver
(
p
.
select
(
pimple
.
finalInnerIter
())));
if
(
pimple
.
finalNonOrthogonalIter
())
{
phi
=
phiHbyA
-
pEqn
.
flux
();
}
}
#include "continuityErrs.H"
// Explicitly relax pressure for momentum corrector
p
.
relax
();
U
=
HbyA
-
rAtU
*
fvc
::
grad
(
p
);
U
.
correctBoundaryConditions
();
fvOptions
.
correct
(
U
);
// Correct Uf if the mesh is moving
fvc
::
correctUf
(
Uf
,
U
,
phi
);
// Make the fluxes relative to the mesh motion
fvc
::
makeRelative
(
phi
,
U
);
OpenFOAM-v2112/applications/solvers/incompressible/pimpleFoam/pimpleFoam.C
0 → 100644
View file @
649c29f9
/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | www.openfoam.com
\\/ M anipulation |
-------------------------------------------------------------------------------
Copyright (C) 2011-2017 OpenFOAM Foundation
Copyright (C) 2019 OpenCFD Ltd.
-------------------------------------------------------------------------------
License
This file is part of OpenFOAM.
OpenFOAM is free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.
You should have received a copy of the GNU General Public License
along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
Application
pimpleFoam.C
Group
grpIncompressibleSolvers
Description
Transient solver for incompressible, turbulent flow of Newtonian fluids
on a moving mesh.
\heading Solver details
The solver uses the PIMPLE (merged PISO-SIMPLE) algorithm to solve the
continuity equation:
\f[
\div \vec{U} = 0
\f]
and momentum equation:
\f[
\ddt{\vec{U}} + \div \left( \vec{U} \vec{U} \right) - \div \gvec{R}
= - \grad p + \vec{S}_U
\f]
Where:
\vartable
\vec{U} | Velocity
p | Pressure
\vec{R} | Stress tensor
\vec{S}_U | Momentum source
\endvartable
Sub-models include:
- turbulence modelling, i.e. laminar, RAS or LES
- run-time selectable MRF and finite volume options, e.g. explicit porosity
\heading Required fields
\plaintable
U | Velocity [m/s]
p | Kinematic pressure, p/rho [m2/s2]
\<turbulence fields\> | As required by user selection
\endplaintable
Note
The motion frequency of this solver can be influenced by the presence
of "updateControl" and "updateInterval" in the dynamicMeshDict.
\*---------------------------------------------------------------------------*/
#include "fvCFD.H"
#include "dynamicFvMesh.H"
#include "singlePhaseTransportModel.H"
#include "turbulentTransportModel.H"
#include "pimpleControl.H"
#include "CorrectPhi.H"
#include "fvOptions.H"
#include "localEulerDdtScheme.H"
#include "fvcSmooth.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
int
main
(
int
argc
,
char
*
argv
[])
{
argList
::
addNote
(
"Transient solver for incompressible, turbulent flow"
" of Newtonian fluids on a moving mesh."
);
#include "postProcess.H"
#include "addCheckCaseOptions.H"
#include "setRootCaseLists.H"
#include "createTime.H"
#include "createDynamicFvMesh.H"
#include "initContinuityErrs.H"
#include "createDyMControls.H"
#include "createFields.H"
#include "createUfIfPresent.H"
#include "CourantNo.H"
#include "setInitialDeltaT.H"
turbulence
->
validate
();
if
(
!
LTS
)
{
#include "CourantNo.H"
#include "setInitialDeltaT.H"
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
Info
<<
"
\n
Starting time loop
\n
"
<<
endl
;
while
(
runTime
.
run
())
{
#include "readDyMControls.H"
if
(
LTS
)
{
#include "setRDeltaT.H"
}
else
{
#include "CourantNo.H"
#include "setDeltaT.H"
}
++
runTime
;
Info
<<
"Time = "
<<
runTime
.
timeName
()
<<
nl
<<
endl
;
// --- Pressure-velocity PIMPLE corrector loop
while
(
pimple
.
loop
())
{
if
(
pimple
.
firstIter
()
||
moveMeshOuterCorrectors
)
{
// Do any mesh changes
mesh
.
controlledUpdate
();
if
(
mesh
.
changing
())
{
MRF
.
update
();
if
(
correctPhi
)
{
// Calculate absolute flux
// from the mapped surface velocity
phi
=
mesh
.
Sf
()
&
Uf
();
#include "correctPhi.H"
// Make the flux relative to the mesh motion
fvc
::
makeRelative
(
phi
,
U
);
}
if
(
checkMeshCourantNo
)
{
#include "meshCourantNo.H"
}
}
}
#include "UEqn.H"
// --- Pressure corrector loop
while
(
pimple
.
correct
())
{
#include "pEqn.H"
}
if
(
pimple
.
turbCorr
())
{
laminarTransport
.
correct
();
turbulence
->
correct
();
}
}
runTime
.
write
();
runTime
.
printExecutionTime
(
Info
);
}
Info
<<
"End
\n
"
<<
endl
;
return
0
;
}
// ************************************************************************* //
OpenFOAM-v2112/applications/solvers/incompressible/pimpleFoam/setRDeltaT.H
0 → 100644
View file @
649c29f9
{
volScalarField
&
rDeltaT
=
trDeltaT
.
ref
();
const
dictionary
&
pimpleDict
=
pimple
.
dict
();
scalar
maxCo
(
pimpleDict
.
getOrDefault
<
scalar
>
(
"maxCo"
,
0
.
8
)
);
scalar
rDeltaTSmoothingCoeff
(
pimpleDict
.
getOrDefault
<
scalar
>
(
"rDeltaTSmoothingCoeff"
,
0
.
02
)
);
scalar
rDeltaTDampingCoeff
(
pimpleDict
.
getOrDefault
<
scalar
>
(
"rDeltaTDampingCoeff"
,
1
.
0
)
);
scalar
maxDeltaT
(
pimpleDict
.
getOrDefault
<
scalar
>
(
"maxDeltaT"
,
GREAT
)
);
volScalarField
rDeltaT0
(
"rDeltaT0"
,
rDeltaT
);
// Set the reciprocal time-step from the local Courant number
rDeltaT
.
ref
()
=
max
(
1
/
dimensionedScalar
(
"maxDeltaT"
,
dimTime
,
maxDeltaT
),
fvc
::
surfaceSum
(
mag
(
phi
))()()
/
((
2
*
maxCo
)
*
mesh
.
V
())
);
// Update the boundary values of the reciprocal time-step
rDeltaT
.
correctBoundaryConditions
();
Info
<<
"Flow time scale min/max = "
<<
gMin
(
1
/
rDeltaT
.
primitiveField
())
<<
", "
<<
gMax
(
1
/
rDeltaT
.
primitiveField
())
<<
endl
;
if
(
rDeltaTSmoothingCoeff
<
1
.
0
)
{
fvc
::
smooth
(
rDeltaT
,
rDeltaTSmoothingCoeff
);
}
Info
<<
"Smoothed flow time scale min/max = "
<<
gMin
(
1
/
rDeltaT
.
primitiveField
())
<<
", "
<<
gMax
(
1
/
rDeltaT
.
primitiveField
())
<<
endl
;
// Limit rate of change of time scale
// - reduce as much as required
// - only increase at a fraction of old time scale
if
(
rDeltaTDampingCoeff
<
1
.
0
&&
runTime
.
timeIndex
()
>
runTime
.
startTimeIndex
()
+
1
)
{
rDeltaT
=
rDeltaT0
*
max
(
rDeltaT
/
rDeltaT0
,
scalar
(
1
)
-
rDeltaTDampingCoeff
);
Info
<<
"Damped flow time scale min/max = "
<<
gMin
(
1
/
rDeltaT
.
primitiveField
())
<<
", "
<<
gMax
(
1
/
rDeltaT
.
primitiveField
())
<<
endl
;
}
}
OpenFOAM-v2112/applications/solvers/incompressible/pisoFoam/Make/files
0 → 100644
View file @
649c29f9
pisoFoam.C
EXE = $(FOAM_APPBIN)/pisoFoam
OpenFOAM-v2112/applications/solvers/incompressible/pisoFoam/Make/options
0 → 100644
View file @
649c29f9
EXE_INC = \
-I$(LIB_SRC)/finiteVolume/lnInclude \
-I$(LIB_SRC)/meshTools/lnInclude \
-I$(LIB_SRC)/sampling/lnInclude \
-I$(LIB_SRC)/TurbulenceModels/turbulenceModels/lnInclude \
-I$(LIB_SRC)/TurbulenceModels/incompressible/lnInclude \
-I$(LIB_SRC)/transportModels \
-I$(LIB_SRC)/transportModels/incompressible/singlePhaseTransportModel
EXE_LIBS = \
-lfiniteVolume \
-lfvOptions \
-lmeshTools \
-lsampling \
-lturbulenceModels \
-lincompressibleTurbulenceModels \
-lincompressibleTransportModels
OpenFOAM-v2112/applications/solvers/incompressible/pisoFoam/UEqn.H
0 → 100644
View file @
649c29f9
// Solve the Momentum equation
MRF
.
correctBoundaryVelocity
(
U
);
fvVectorMatrix
UEqn
(
fvm
::
ddt
(
U
)
+
fvm
::
div
(
phi
,
U
)
+
MRF
.
DDt
(
U
)
+
turbulence
->
divDevReff
(
U
)
==
fvOptions
(
U
)
);
UEqn
.
relax
();
fvOptions
.
constrain
(
UEqn
);
if
(
piso
.
momentumPredictor
())
{
solve
(
UEqn
==
-
fvc
::
grad
(
p
));
fvOptions
.
correct
(
U
);
}
OpenFOAM-v2112/applications/solvers/incompressible/pisoFoam/createFields.H
0 → 100644
View file @
649c29f9
Info
<<
"Reading field p
\n
"
<<
endl
;
volScalarField
p
(
IOobject
(
"p"
,
runTime
.
timeName
(),
mesh
,
IOobject
::
MUST_READ
,
IOobject
::
AUTO_WRITE
),
mesh
);
Info
<<
"Reading field U
\n
"
<<
endl
;
volVectorField
U
(
IOobject
(
"U"
,
runTime
.
timeName
(),
mesh
,
IOobject
::
MUST_READ
,
IOobject
::
AUTO_WRITE
),
mesh
);
#include "createPhi.H"
label
pRefCell
=
0
;
scalar
pRefValue
=
0
.
0
;
setRefCell
(
p
,
piso
.
dict
(),
pRefCell
,
pRefValue
);
mesh
.
setFluxRequired
(
p
.
name
());
singlePhaseTransportModel
laminarTransport
(
U
,
phi
);
autoPtr
<
incompressible
::
turbulenceModel
>
turbulence
(
incompressible
::
turbulenceModel
::
New
(
U
,
phi
,
laminarTransport
)
);
#include "createMRF.H"
#include "createFvOptions.H"
OpenFOAM-v2112/applications/solvers/incompressible/pisoFoam/pEqn.H
0 → 100644
View file @
649c29f9
volScalarField
rAU
(
1
.
0
/
UEqn
.
A
());
volVectorField
HbyA
(
constrainHbyA
(
rAU
*
UEqn
.
H
(),
U
,
p
));
surfaceScalarField
phiHbyA
(
"phiHbyA"
,
fvc
::
flux
(
HbyA
)
+
MRF
.
zeroFilter
(
fvc
::
interpolate
(
rAU
)
*
fvc
::
ddtCorr
(
U
,
phi
))
);
MRF
.
makeRelative
(
phiHbyA
);
adjustPhi
(
phiHbyA
,
U
,
p
);
// Update the pressure BCs to ensure flux consistency
constrainPressure
(
p
,
U
,
phiHbyA
,
rAU
,
MRF
);
// Non-orthogonal pressure corrector loop
while
(
piso
.
correctNonOrthogonal
())
{
// Pressure corrector
fvScalarMatrix
pEqn
(
fvm
::
laplacian
(
rAU
,
p
)
==
fvc
::
div
(
phiHbyA
)
);
pEqn
.
setReference
(
pRefCell
,
pRefValue
);
pEqn
.
solve
(
mesh
.
solver
(
p
.
select
(
piso
.
finalInnerIter
())));
if
(
piso
.
finalNonOrthogonalIter
())
{
phi
=
phiHbyA
-
pEqn
.
flux
();
}
}
#include "continuityErrs.H"
U
=
HbyA
-
rAU
*
fvc
::
grad
(
p
);
U
.
correctBoundaryConditions
();
fvOptions
.
correct
(
U
);
OpenFOAM-v2112/applications/solvers/incompressible/pisoFoam/pisoFoam.C
0 → 100644
View file @
649c29f9
/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | www.openfoam.com
\\/ M anipulation |
-------------------------------------------------------------------------------
Copyright (C) 2011-2017 OpenFOAM Foundation
-------------------------------------------------------------------------------
License
This file is part of OpenFOAM.
OpenFOAM is free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.
You should have received a copy of the GNU General Public License
along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
Application
pisoFoam
Group
grpIncompressibleSolvers
Description
Transient solver for incompressible, turbulent flow, using the PISO
algorithm.
\heading Solver details
The solver uses the PISO algorithm to solve the continuity equation:
\f[
\div \vec{U} = 0
\f]
and momentum equation:
\f[
\ddt{\vec{U}} + \div \left( \vec{U} \vec{U} \right) - \div \gvec{R}
= - \grad p
\f]
Where:
\vartable
\vec{U} | Velocity
p | Pressure
\vec{R} | Stress tensor
\endvartable
Sub-models include:
- turbulence modelling, i.e. laminar, RAS or LES
- run-time selectable MRF and finite volume options, e.g. explicit porosity
\heading Required fields
\plaintable
U | Velocity [m/s]
p | Kinematic pressure, p/rho [m2/s2]
\<turbulence fields\> | As required by user selection
\endplaintable
\*---------------------------------------------------------------------------*/
#include "fvCFD.H"
#include "singlePhaseTransportModel.H"
#include "turbulentTransportModel.H"
#include "pisoControl.H"
#include "fvOptions.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
int
main
(
int
argc
,
char
*
argv
[])
{
argList
::
addNote
(
"Transient solver for incompressible, turbulent flow,"
" using the PISO algorithm."
);
#include "postProcess.H"
#include "addCheckCaseOptions.H"
#include "setRootCaseLists.H"
#include "createTime.H"
#include "createMesh.H"
#include "createControl.H"
#include "createFields.H"
#include "initContinuityErrs.H"
turbulence
->
validate
();
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
Info
<<
"
\n
Starting time loop
\n
"
<<
endl
;
while
(
runTime
.
loop
())
{
Info
<<
"Time = "
<<
runTime
.
timeName
()
<<
nl
<<
endl
;
#include "CourantNo.H"
// Pressure-velocity PISO corrector
{
#include "UEqn.H"
// --- PISO loop
while
(
piso
.
correct
())
{
#include "pEqn.H"
}
}
laminarTransport
.
correct
();
turbulence
->
correct
();
runTime
.
write
();
runTime
.
printExecutionTime
(
Info
);
}
Info
<<
"End
\n
"
<<
endl
;
return
0
;
}
// ************************************************************************* //
OpenFOAM-v2112/applications/solvers/incompressible/shallowWaterFoam/CourantNo.H
0 → 100644
View file @
649c29f9
/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | www.openfoam.com
\\/ M anipulation |
-------------------------------------------------------------------------------
Copyright (C) 2011-2016 OpenFOAM Foundation
-------------------------------------------------------------------------------
License
This file is part of OpenFOAM.
OpenFOAM is free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.
You should have received a copy of the GNU General Public License
along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
Global
CourantNo
Description
Calculates and outputs the maximum Courant Number.
\*---------------------------------------------------------------------------*/
scalar
CoNum
=
0
.
0
;
scalar
meanCoNum
=
0
.
0
;
scalar
waveCoNum
=
0
.
0
;
if
(
mesh
.
nInternalFaces
())
{
scalarField
sumPhi
(
fvc
::
surfaceSum
(
mag
(
phi
))().
primitiveField
()
/
h
.
primitiveField
()
);
CoNum
=
0
.
5
*
gMax
(
sumPhi
/
mesh
.
V
().
field
())
*
runTime
.
deltaTValue
();
meanCoNum
=
0
.
5
*
(
gSum
(
sumPhi
)
/
gSum
(
mesh
.
V
().
field
()))
*
runTime
.
deltaTValue
();
// Gravity wave Courant number
waveCoNum
=
0
.
25
*
gMax
(
fvc
::
surfaceSum
(
fvc
::
interpolate
(
sqrt
(
h
))
*
mesh
.
magSf
()
)().
primitiveField
()
/
mesh
.
V
().
field
()
)
*
sqrt
(
magg
).
value
()
*
runTime
.
deltaTValue
();
}
Info
<<
"Courant number mean: "
<<
meanCoNum
<<
" max: "
<<
CoNum
<<
endl
;
Info
<<
"Gravity wave Courant number max: "
<<
waveCoNum
<<
endl
;
// ************************************************************************* //
OpenFOAM-v2112/applications/solvers/incompressible/shallowWaterFoam/Make/files
0 → 100644
View file @
649c29f9
shallowWaterFoam.C
EXE = $(FOAM_APPBIN)/shallowWaterFoam
OpenFOAM-v2112/applications/solvers/incompressible/shallowWaterFoam/Make/options
0 → 100644
View file @
649c29f9
EXE_INC = \
-I$(LIB_SRC)/finiteVolume/lnInclude \
-I$(LIB_SRC)/meshTools/lnInclude
EXE_LIBS = \
-lfiniteVolume \
-lmeshTools
OpenFOAM-v2112/applications/solvers/incompressible/shallowWaterFoam/createFields.H
0 → 100644
View file @
649c29f9
#include "readGravitationalAcceleration.H"
Info
<<
"Reading field h
\n
"
<<
endl
;
volScalarField
h
(
IOobject
(
"h"
,
runTime
.
timeName
(),
mesh
,
IOobject
::
MUST_READ
,
IOobject
::
AUTO_WRITE
),
mesh
);
Info
<<
"Reading field h0 if present
\n
"
<<
endl
;
volScalarField
h0
(
IOobject
(
"h0"
,
runTime
.
findInstance
(
"polyMesh"
,
"points"
),
mesh
,
IOobject
::
READ_IF_PRESENT
),
mesh
,
dimensionedScalar
(
dimLength
,
Zero
)
);
Info
<<
"Creating field hU
\n
"
<<
endl
;
volVectorField
hU
(
IOobject
(
"hU"
,
runTime
.
timeName
(),
mesh
,
IOobject
::
MUST_READ
,
IOobject
::
AUTO_WRITE
),
mesh
);
Info
<<
"Reading field U
\n
"
<<
endl
;
volVectorField
U
(
IOobject
(
"U"
,
runTime
.
timeName
(),
mesh
,
IOobject
::
NO_READ
,
IOobject
::
AUTO_WRITE
),
hU
/
h
);
Info
<<
"Creating field hTotal for post processing
\n
"
<<
endl
;
volScalarField
hTotal
(
IOobject
(
"hTotal"
,
runTime
.
timeName
(),
mesh
,
IOobject
::
READ_IF_PRESENT
,
IOobject
::
AUTO_WRITE
),
h
+
h0
);
hTotal
.
write
();
#include "createPhi.H"
Info
<<
"Creating Coriolis Force"
<<
endl
;
const
dimensionedVector
F
(
"F"
,
((
2
.
0
*
Omega
)
&
gHat
)
*
gHat
);
mesh
.
setFluxRequired
(
h
.
name
());
OpenFOAM-v2112/applications/solvers/incompressible/shallowWaterFoam/createPhi.H
0 → 100644
View file @
649c29f9
/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | www.openfoam.com
\\/ M anipulation |
-------------------------------------------------------------------------------
Copyright (C) 2011-2016 OpenFOAM Foundation
-------------------------------------------------------------------------------
License
This file is part of OpenFOAM.
OpenFOAM is free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.
You should have received a copy of the GNU General Public License
along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
Global
createPhi
Description
Creates and initialises the face-flux field phi.
\*---------------------------------------------------------------------------*/
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
Info
<<
"Reading/calculating face flux field phi
\n
"
<<
endl
;
surfaceScalarField
phi
(
IOobject
(
"phi"
,
runTime
.
timeName
(),
mesh
,
IOobject
::
READ_IF_PRESENT
,
IOobject
::
AUTO_WRITE
),
linearInterpolate
(
hU
)
&
mesh
.
Sf
()
);
// ************************************************************************* //
OpenFOAM-v2112/applications/solvers/incompressible/shallowWaterFoam/readGravitationalAcceleration.H
0 → 100644
View file @
649c29f9
Info
<<
"
\n
Reading gravitationalProperties"
<<
endl
;
IOdictionary
gravitationalProperties
(
IOobject
(
"gravitationalProperties"
,
runTime
.
constant
(),
mesh
,
IOobject
::
MUST_READ_IF_MODIFIED
,
IOobject
::
NO_WRITE
)
);
const
dimensionedVector
g
(
"g"
,
dimAcceleration
,
gravitationalProperties
);
const
bool
rotating
(
gravitationalProperties
.
get
<
bool
>
(
"rotating"
));
const
dimensionedVector
Omega
=
(
rotating
?
dimensionedVector
(
"Omega"
,
dimless
/
dimTime
,
gravitationalProperties
)
:
dimensionedVector
(
"Omega"
,
dimless
/
dimTime
,
Zero
)
);
const
dimensionedScalar
magg
=
mag
(
g
);
const
dimensionedVector
gHat
=
g
/
magg
;
OpenFOAM-v2112/applications/solvers/incompressible/shallowWaterFoam/shallowWaterFoam.C
0 → 100644
View file @
649c29f9
/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | www.openfoam.com
\\/ M anipulation |
-------------------------------------------------------------------------------
Copyright (C) 2011-2016 OpenFOAM Foundation
-------------------------------------------------------------------------------
License
This file is part of OpenFOAM.
OpenFOAM is free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.
You should have received a copy of the GNU General Public License
along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
Application
shallowWaterFoam
Group
grpIncompressibleSolvers
Description
Transient solver for inviscid shallow-water equations with rotation.
If the geometry is 3D then it is assumed to be one layers of cells and the
component of the velocity normal to gravity is removed.
\*---------------------------------------------------------------------------*/
#include "fvCFD.H"
#include "pimpleControl.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
int
main
(
int
argc
,
char
*
argv
[])
{
argList
::
addNote
(
"Transient solver for inviscid shallow-water equations with rotation"
);
#include "postProcess.H"
#include "addCheckCaseOptions.H"
#include "setRootCaseLists.H"
#include "createTime.H"
#include "createMesh.H"
#include "createControl.H"
#include "createFields.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
Info
<<
"
\n
Starting time loop
\n
"
<<
endl
;
while
(
runTime
.
loop
())
{
Info
<<
"
\n
Time = "
<<
runTime
.
timeName
()
<<
nl
<<
endl
;
#include "CourantNo.H"
// --- Pressure-velocity PIMPLE corrector loop
while
(
pimple
.
loop
())
{
surfaceScalarField
phiv
(
"phiv"
,
phi
/
fvc
::
interpolate
(
h
));
fvVectorMatrix
hUEqn
(
fvm
::
ddt
(
hU
)
+
fvm
::
div
(
phiv
,
hU
)
);
hUEqn
.
relax
();
if
(
pimple
.
momentumPredictor
())
{
if
(
rotating
)
{
solve
(
hUEqn
+
(
F
^
hU
)
==
-
magg
*
h
*
fvc
::
grad
(
h
+
h0
));
}
else
{
solve
(
hUEqn
==
-
magg
*
h
*
fvc
::
grad
(
h
+
h0
));
}
// Constrain the momentum to be in the geometry if 3D geometry
if
(
mesh
.
nGeometricD
()
==
3
)
{
hU
-=
(
gHat
&
hU
)
*
gHat
;
hU
.
correctBoundaryConditions
();
}
}
// --- Pressure corrector loop
while
(
pimple
.
correct
())
{
volScalarField
rAU
(
1
.
0
/
hUEqn
.
A
());
surfaceScalarField
ghrAUf
(
magg
*
fvc
::
interpolate
(
h
*
rAU
));
surfaceScalarField
phih0
(
ghrAUf
*
mesh
.
magSf
()
*
fvc
::
snGrad
(
h0
));
volVectorField
HbyA
(
"HbyA"
,
hU
);
if
(
rotating
)
{
HbyA
=
rAU
*
(
hUEqn
.
H
()
-
(
F
^
hU
));
}
else
{
HbyA
=
rAU
*
hUEqn
.
H
();
}
surfaceScalarField
phiHbyA
(
"phiHbyA"
,
fvc
::
flux
(
HbyA
)
+
fvc
::
interpolate
(
rAU
)
*
fvc
::
ddtCorr
(
h
,
hU
,
phi
)
-
phih0
);
while
(
pimple
.
correctNonOrthogonal
())
{
fvScalarMatrix
hEqn
(
fvm
::
ddt
(
h
)
+
fvc
::
div
(
phiHbyA
)
-
fvm
::
laplacian
(
ghrAUf
,
h
)
);
hEqn
.
solve
(
mesh
.
solver
(
h
.
select
(
pimple
.
finalInnerIter
())));
if
(
pimple
.
finalNonOrthogonalIter
())
{
phi
=
phiHbyA
+
hEqn
.
flux
();
}
}
hU
=
HbyA
-
rAU
*
h
*
magg
*
fvc
::
grad
(
h
+
h0
);
// Constrain the momentum to be in the geometry if 3D geometry
if
(
mesh
.
nGeometricD
()
==
3
)
{
hU
-=
(
gHat
&
hU
)
*
gHat
;
}
hU
.
correctBoundaryConditions
();
}
}
U
==
hU
/
h
;
hTotal
==
h
+
h0
;
runTime
.
write
();
runTime
.
printExecutionTime
(
Info
);
}
Info
<<
"End
\n
"
<<
endl
;
return
0
;
}
// ************************************************************************* //
OpenFOAM-v2112/applications/solvers/incompressible/simpleFoam/Make/files
0 → 100644
View file @
649c29f9
simpleFoam.C
EXE = $(FOAM_APPBIN)/simpleFoam
OpenFOAM-v2112/applications/solvers/incompressible/simpleFoam/Make/options
0 → 100644
View file @
649c29f9
EXE_INC = \
-I$(LIB_SRC)/finiteVolume/lnInclude \
-I$(LIB_SRC)/meshTools/lnInclude \
-I$(LIB_SRC)/sampling/lnInclude \
-I$(LIB_SRC)/TurbulenceModels/turbulenceModels/lnInclude \
-I$(LIB_SRC)/TurbulenceModels/incompressible/lnInclude \
-I$(LIB_SRC)/transportModels \
-I$(LIB_SRC)/transportModels/incompressible/singlePhaseTransportModel
EXE_LIBS = \
-lfiniteVolume \
-lfvOptions \
-lmeshTools \
-lsampling \
-lturbulenceModels \
-lincompressibleTurbulenceModels \
-lincompressibleTransportModels \
-latmosphericModels
OpenFOAM-v2112/applications/solvers/incompressible/simpleFoam/SRFSimpleFoam/Make/files
0 → 100644
View file @
649c29f9
SRFSimpleFoam.C
EXE = $(FOAM_APPBIN)/SRFSimpleFoam
Prev
1
…
22
23
24
25
26
27
28
29
30
…
40
Next
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