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
d858f7c8
Commit
d858f7c8
authored
Jun 27, 2008
by
Mark Olesen
Browse files
fixup doxygen for RAS/LES models, etc
parent
cb08f660
Changes
55
Hide whitespace changes
Inline
Side-by-side
src/dynamicMesh/polyTopoChange/polyTopoChange/hexRef8.C
View file @
d858f7c8
...
...
@@ -50,15 +50,15 @@ namespace Foam
{
defineTypeNameAndDebug
(
hexRef8
,
0
);
// Reduction class. If x and y are not equal assign value.
//
-
Reduction class. If x and y are not equal assign value.
template
<
int
value
>
class
ifEqEqOp
{
public:
void
operator
()(
label
&
x
,
const
label
&
y
)
const
{
x
=
(
x
==
y
)
?
x
:
value
;
}
x
=
(
x
==
y
)
?
x
:
value
;
}
};
}
...
...
src/lagrangian/intermediate/clouds/Templates/KinematicCloud/KinematicCloud.H
View file @
d858f7c8
...
...
@@ -27,6 +27,7 @@ Class
Description
Templated base class for kinematic cloud
- Kinematic only
- Dispersion model
- Drag model
...
...
src/lagrangian/intermediate/parcels/Templates/KinematicParcel/KinematicParcel.H
View file @
d858f7c8
...
...
@@ -27,7 +27,9 @@ Class
Description
Kinematic parcel class with one/two-way coupling with the continuous
phase. Sub-models include:
phase.
Sub-models include:
- drag
- break-up
- wall interactions
...
...
src/lagrangian/intermediate/submodels/Kinematic/InjectionModel/ConeInjection/ConeInjection.H
View file @
d858f7c8
...
...
@@ -27,6 +27,7 @@ Class
Description
Cone injection
- User specifies
- time of start of injection
- injector position
...
...
src/meshTools/edgeFaceCirculator/edgeFaceCirculator.H
View file @
d858f7c8
...
...
@@ -26,15 +26,15 @@ Class
Foam::edgeFaceCirculator
Description
Walks from starting face around edge. Implicit
description of edge:
Walks from starting face around edge.
Implicit description of edge:
- face
- index in face. edge is always between f[index] and f[index+1]
- direction (cell to walk into)
Use as:
1) in-place:
-# Use in-place: \n
@code
edgeFaceCirculator circ(..);
// Optionally rotate to beginning: circ.setCanonical();
...
...
@@ -45,9 +45,10 @@ Description
++circ;
}
while (circ != circ.end());
@endcode
2)
like STL iterator:
-# Use
like STL iterator:
\n
@code
edgeFaceCirculator circ(..);
for
(
...
...
@@ -58,6 +59,7 @@ Description
{
Info<< "face:" << iter.face() << endl;
}
@endcode
SourceFiles
...
...
src/turbulenceModels/LES/compressible/LESModel/LESModel.H
View file @
d858f7c8
...
...
@@ -23,7 +23,7 @@ License
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Namespace
Foam::compressible
Foam::compressible
::LESModels
Description
Namespace for compressible LES models.
...
...
src/turbulenceModels/LES/incompressible/DeardorffDiffStress/DeardorffDiffStress.H
View file @
d858f7c8
...
...
@@ -23,7 +23,7 @@ License
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Class
Foam::incompressible::LES::DeardorffDiffStress
Foam::incompressible::LES
Models
::DeardorffDiffStress
Description
Differential SGS Stress Equation Model for incompressible flows
...
...
src/turbulenceModels/LES/incompressible/GenEddyVisc/GenEddyVisc.H
View file @
d858f7c8
...
...
@@ -23,7 +23,7 @@ License
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Class
Foam::incompressible::LES::GenEddyVisc
Foam::incompressible::LES
Models
::GenEddyVisc
Description
General base class for all incompressible models that can be implemented
...
...
src/turbulenceModels/LES/incompressible/GenSGSStress/GenSGSStress.H
View file @
d858f7c8
...
...
@@ -23,7 +23,7 @@ License
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Class
Foam::incompressible::LES::GenSGSStress
Foam::incompressible::LES
Models
::GenSGSStress
Description
General base class for all incompressible models that directly
...
...
src/turbulenceModels/LES/incompressible/LESModel/LESModel.H
View file @
d858f7c8
...
...
@@ -23,7 +23,7 @@ License
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Namespace
Foam::incompressible
Foam::incompressible
::LESModels
Description
Namespace for incompressible LES models.
...
...
src/turbulenceModels/LES/incompressible/LRRDiffStress/LRRDiffStress.H
View file @
d858f7c8
...
...
@@ -23,7 +23,7 @@ License
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Class
Foam::incompressible::LES::LRRDiffStress
Foam::incompressible::LES
Models
::LRRDiffStress
Description
Differential SGS Stress Equation Model for incompressible flows.
...
...
src/turbulenceModels/LES/incompressible/Smagorinsky/Smagorinsky.H
View file @
d858f7c8
...
...
@@ -23,7 +23,7 @@ License
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Class
Foam::incompressible::LES::Smagorinsky
Foam::incompressible::LES
Models
::Smagorinsky
Description
The Isochoric Smagorinsky Model for incompressible flows.
...
...
src/turbulenceModels/LES/incompressible/Smagorinsky2/Smagorinsky2.H
View file @
d858f7c8
...
...
@@ -23,7 +23,7 @@ License
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Class
Foam::incompressible::LES::Smagorinsky2
Foam::incompressible::LES
Models
::Smagorinsky2
Description
The Isochoric Smagorinsky Model for incompressible flows
...
...
src/turbulenceModels/LES/incompressible/SpalartAllmaras/SpalartAllmaras.H
View file @
d858f7c8
...
...
@@ -23,7 +23,7 @@ License
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Class
Foam::incompressible::LES::SpalartAllmaras
Foam::incompressible::LES
Models
::SpalartAllmaras
Description
SpalartAllmaras for incompressible flows
...
...
src/turbulenceModels/LES/incompressible/dynMixedSmagorinsky/dynMixedSmagorinsky.H
View file @
d858f7c8
...
...
@@ -23,7 +23,7 @@ License
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Class
Foam::incompressible::LES::dynMixedSmagorinsky
Foam::incompressible::LES
Models
::dynMixedSmagorinsky
Description
The Mixed Isochoric Smagorinsky Model for incompressible flows.
...
...
src/turbulenceModels/LES/incompressible/dynOneEqEddy/dynOneEqEddy.H
View file @
d858f7c8
...
...
@@ -23,7 +23,7 @@ License
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Class
Foam::incompressible::LES::dynOneEqEddy
Foam::incompressible::LES
Models
::dynOneEqEddy
Description
One Equation Eddy Viscosity Model for incompressible flows.
...
...
src/turbulenceModels/LES/incompressible/dynSmagorinsky/dynSmagorinsky.H
View file @
d858f7c8
...
...
@@ -23,7 +23,7 @@ License
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Class
Foam::incompressible::LES::dynSmagorinsky
Foam::incompressible::LES
Models
::dynSmagorinsky
Description
The Isochoric dynamic Smagorinsky Model for incompressible flows.
...
...
@@ -56,7 +56,7 @@ Description
m = delta^2*(4*||F(D)||^2 - F(||D||^2))
L = dev(F(U*U) - F(U)*F(U))
M = delta^2*(F(||D||*dev(D)) - 4*||F(D)||*F(dev(D)))
@verbatim
@
end
verbatim
SourceFiles
dynSmagorinsky.C
...
...
src/turbulenceModels/LES/incompressible/laminar/laminar.H
View file @
d858f7c8
...
...
@@ -23,7 +23,7 @@ License
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Class
Foam::incompressible::LES::laminar
Foam::incompressible::LES
Models
::laminar
Description
LES model for laminar incompressible flow.
...
...
src/turbulenceModels/LES/incompressible/locDynOneEqEddy/locDynOneEqEddy.H
View file @
d858f7c8
...
...
@@ -23,7 +23,7 @@ License
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Class
Foam::incompressible::LES::locDynOneEqEddy
Foam::incompressible::LES
Models
::locDynOneEqEddy
Description
Localised Dynamic One Equation Eddy Viscosity Model for incompressible
...
...
src/turbulenceModels/LES/incompressible/mixedSmagorinsky/mixedSmagorinsky.H
View file @
d858f7c8
...
...
@@ -23,7 +23,7 @@ License
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Class
Foam::incompressible::LES::mixedSmagorinsky
Foam::incompressible::LES
Models
::mixedSmagorinsky
Description
The mixed Isochoric Smagorinsky Model for incompressible flows.
...
...
Prev
1
2
3
Next
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