mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
minor documentation cleanups
This commit is contained in:
@ -26,7 +26,7 @@ Class
|
||||
Foam::ZoneID
|
||||
|
||||
Description
|
||||
A class holds the data needed to identify a zone in a dynamic mesh.
|
||||
A class that holds the data needed to identify a zone in a dynamic mesh.
|
||||
|
||||
The zone is identified by name.
|
||||
Its index in the zoneMesh is updated if the mesh has changed.
|
||||
|
||||
@ -26,6 +26,7 @@ Class
|
||||
Foam::geomDecomp
|
||||
|
||||
Description
|
||||
Geometrical domain decomposition
|
||||
|
||||
SourceFiles
|
||||
geomDecomp.C
|
||||
|
||||
@ -26,6 +26,7 @@ Class
|
||||
Foam::metisDecomp
|
||||
|
||||
Description
|
||||
Metis domain decomposition
|
||||
|
||||
SourceFiles
|
||||
metisDecomp.C
|
||||
|
||||
@ -55,7 +55,7 @@ namespace Foam
|
||||
|
||||
// assignToProcessorGroup : given nCells cells and nProcGroup processor
|
||||
// groups to share them, how do we share them out? Answer : each group
|
||||
// gets nCells/nProocGroup cells, and the first few get one
|
||||
// gets nCells/nProcGroup cells, and the first few get one
|
||||
// extra to make up the numbers. This should produce almost
|
||||
// perfect load balancing
|
||||
|
||||
|
||||
@ -29,7 +29,7 @@ Description
|
||||
Mesh motion specifically for the "pumping" system of an ink-jet
|
||||
injector.
|
||||
|
||||
The set of points in the "pumping" region are compressed and expended
|
||||
The set of points in the "pumping" region are compressed and expanded
|
||||
sinusoidally to impose a sinusoidal variation of the flow at the
|
||||
nozzle exit.
|
||||
|
||||
|
||||
@ -23,7 +23,7 @@ License
|
||||
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
|
||||
Class
|
||||
Foam::turbulentMixingLengthDissipationRateInletFvPatchScalarField
|
||||
Foam::turbulentMixingLengthFrequencyInletFvPatchScalarField
|
||||
|
||||
Description
|
||||
Calculate omega via the mixing length
|
||||
|
||||
@ -27,10 +27,11 @@ Class
|
||||
|
||||
Description
|
||||
Holds information (coordinate and yStar) regarding nearest wall point.
|
||||
|
||||
Used in VanDriest wall damping where the interest is in y+ but only
|
||||
needs to be calculated up to e.g. y+ < 200. In all other cells/faces
|
||||
(since y gets initialized to GREAT and yStar to 1) the damping function
|
||||
becomes 1
|
||||
the damping function becomes 1, since y gets initialized to GREAT and
|
||||
yStar to 1.
|
||||
|
||||
SourceFiles
|
||||
wallPointYPlusI.H
|
||||
|
||||
@ -26,17 +26,19 @@ Class
|
||||
Foam::displacementInterpolationFvMotionSolver
|
||||
|
||||
Description
|
||||
Mesh motion solver for an fvMesh. Scales inbetween motion prescribed on
|
||||
faceZones. Works out per point the distance between the bounding
|
||||
face zones (in all three directions) at the start and then every time
|
||||
step
|
||||
Mesh motion solver for an fvMesh.
|
||||
|
||||
Scales inbetween motion prescribed on faceZones. Works out per point
|
||||
the distance between the bounding face zones (in all three directions)
|
||||
at the start and then every time step
|
||||
- moves the faceZones based on tables
|
||||
- interpolates the displacement of all points based on the
|
||||
faceZone motion.
|
||||
|
||||
Tables are in the constant/tables directory.
|
||||
Tables are in the <verbatim>constant/tables</verbatim> directory.
|
||||
|
||||
Note: could be a motionSolver - does not use any fvMesh structure.
|
||||
Note
|
||||
could be a motionSolver - does not use any fvMesh structure.
|
||||
|
||||
SourceFiles
|
||||
displacementInterpolationFvMotionSolver.C
|
||||
|
||||
@ -32,6 +32,7 @@ Description
|
||||
|
||||
On the back plane (z=0):
|
||||
|
||||
@verbatim
|
||||
Y
|
||||
^
|
||||
|
|
||||
@ -42,6 +43,7 @@ Description
|
||||
| |
|
||||
|0 1|
|
||||
+--------+->X
|
||||
@endverbatim
|
||||
|
||||
For the front plane add 4 to the point labels.
|
||||
|
||||
|
||||
@ -26,15 +26,15 @@ Class
|
||||
Foam::writer
|
||||
|
||||
Description
|
||||
base class for graphics format writing. Entry points are
|
||||
- write(..). Write to an Ostream a table of points with corresponding
|
||||
values.
|
||||
|
||||
- write(scalar/vector/tensor). Write single scalar/vector/tensor.
|
||||
Base class for graphics format writing. Entry points are
|
||||
- write(..). \n
|
||||
Write to an Ostream a table of points with corresponding values.
|
||||
- write(scalar/vector/tensor). \n
|
||||
Write single scalar/vector/tensor.
|
||||
Default is to write space separated components.
|
||||
|
||||
Example:
|
||||
|
||||
@verbatim
|
||||
// Construct writer of xmgr type
|
||||
autoPtr<writer<scalar> > scalarFormatter(writer<scalar>::New("xmgr"));
|
||||
|
||||
@ -51,7 +51,7 @@ Description
|
||||
"U.component(0)", // name of values
|
||||
vals // values
|
||||
);
|
||||
|
||||
@endverbatim
|
||||
|
||||
SourceFiles
|
||||
writer.C
|
||||
|
||||
Reference in New Issue
Block a user