minor documentation cleanups

This commit is contained in:
Mark Olesen
2008-06-10 15:00:47 +02:00
parent 9c35ea85bb
commit 0e00a43eec
10 changed files with 42 additions and 35 deletions

View File

@ -26,7 +26,7 @@ Class
Foam::ZoneID Foam::ZoneID
Description 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. The zone is identified by name.
Its index in the zoneMesh is updated if the mesh has changed. Its index in the zoneMesh is updated if the mesh has changed.

View File

@ -26,6 +26,7 @@ Class
Foam::geomDecomp Foam::geomDecomp
Description Description
Geometrical domain decomposition
SourceFiles SourceFiles
geomDecomp.C geomDecomp.C

View File

@ -26,6 +26,7 @@ Class
Foam::metisDecomp Foam::metisDecomp
Description Description
Metis domain decomposition
SourceFiles SourceFiles
metisDecomp.C metisDecomp.C

View File

@ -55,7 +55,7 @@ namespace Foam
// assignToProcessorGroup : given nCells cells and nProcGroup processor // assignToProcessorGroup : given nCells cells and nProcGroup processor
// groups to share them, how do we share them out? Answer : each group // 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 // extra to make up the numbers. This should produce almost
// perfect load balancing // perfect load balancing

View File

@ -29,7 +29,7 @@ Description
Mesh motion specifically for the "pumping" system of an ink-jet Mesh motion specifically for the "pumping" system of an ink-jet
injector. 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 sinusoidally to impose a sinusoidal variation of the flow at the
nozzle exit. nozzle exit.

View File

@ -23,7 +23,7 @@ License
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Class Class
Foam::turbulentMixingLengthDissipationRateInletFvPatchScalarField Foam::turbulentMixingLengthFrequencyInletFvPatchScalarField
Description Description
Calculate omega via the mixing length Calculate omega via the mixing length

View File

@ -27,10 +27,11 @@ Class
Description Description
Holds information (coordinate and yStar) regarding nearest wall point. Holds information (coordinate and yStar) regarding nearest wall point.
Used in VanDriest wall damping where the interest is in y+ but only Used in VanDriest wall damping where the interest is in y+ but only
needs to be calculated upto e.g. y+ < 200. In all other cells/faces 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 the damping function becomes 1, since y gets initialized to GREAT and
becomes 1 yStar to 1.
SourceFiles SourceFiles
wallPointYPlusI.H wallPointYPlusI.H

View File

@ -26,17 +26,19 @@ Class
Foam::displacementInterpolationFvMotionSolver Foam::displacementInterpolationFvMotionSolver
Description Description
Mesh motion solver for an fvMesh. Scales inbetween motion prescribed on Mesh motion solver for an fvMesh.
faceZones. Works out per point the distance between the bounding
face zones (in all three directions) at the start and then every time Scales inbetween motion prescribed on faceZones. Works out per point
step 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 - moves the faceZones based on tables
- interpolates the displacement of all points based on the - interpolates the displacement of all points based on the
faceZone motion. 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 SourceFiles
displacementInterpolationFvMotionSolver.C displacementInterpolationFvMotionSolver.C

View File

@ -32,16 +32,18 @@ Description
On the back plane (z=0): On the back plane (z=0):
Y @verbatim
^ Y
| ^
+--------+ |
|2 3| +--------+
| | |2 3|
| | | |
| | | |
|0 1| | |
+--------+->X |0 1|
+--------+->X
@endverbatim
For the front plane add 4 to the point labels. For the front plane add 4 to the point labels.
@ -234,7 +236,7 @@ public:
//- Returns octant number given intersection. Midpoint provided. //- Returns octant number given intersection. Midpoint provided.
// onEdge set if sample on edge of subOctant. If onEdge // onEdge set if sample on edge of subOctant. If onEdge
// the direction vector determines which octant to use // the direction vector determines which octant to use
// (acc. to which octant the sample would be if it were moved // (acc. to which octant the sample would be if it were moved
// along dir) // along dir)
static inline direction subOctant static inline direction subOctant
( (
@ -250,7 +252,7 @@ public:
inline void searchOrder inline void searchOrder
( (
const point& sample, const point& sample,
FixedList<direction, 8>& octantOrder FixedList<direction, 8>& octantOrder
) const; ) const;
//- Intersects other boundingbox? //- Intersects other boundingbox?

View File

@ -26,15 +26,15 @@ Class
Foam::writer Foam::writer
Description Description
base class for graphics format writing. Entry points are Base class for graphics format writing. Entry points are
- write(..). Write to an Ostream a table of points with corresponding - write(..). \n
values. Write to an Ostream a table of points with corresponding values.
- write(scalar/vector/tensor). \n
- write(scalar/vector/tensor). Write single scalar/vector/tensor. Write single scalar/vector/tensor.
Default is to write space separated components. Default is to write space separated components.
Example: Example:
@verbatim
// Construct writer of xmgr type // Construct writer of xmgr type
autoPtr<writer<scalar> > scalarFormatter(writer<scalar>::New("xmgr")); autoPtr<writer<scalar> > scalarFormatter(writer<scalar>::New("xmgr"));
@ -51,8 +51,8 @@ Description
"U.component(0)", // name of values "U.component(0)", // name of values
vals // values vals // values
); );
@endverbatim
SourceFiles SourceFiles
writer.C writer.C
@ -90,7 +90,7 @@ protected:
//- Generates filename from coordSet and sampled fields //- Generates filename from coordSet and sampled fields
fileName getBaseName(const coordSet&, const wordList&) const; fileName getBaseName(const coordSet&, const wordList&) const;
void writeCoord void writeCoord
( (
const coordSet& samples, const coordSet& samples,