mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
GIT: remove whitespace, backslash escape angle brackets in comments
- fix older '> >' template parameters as '>>'
This commit is contained in:
@ -42,7 +42,7 @@ Usage
|
|||||||
Decompose all regions in regionProperties. Does not check for
|
Decompose all regions in regionProperties. Does not check for
|
||||||
existence of processor*.
|
existence of processor*.
|
||||||
|
|
||||||
- \par - case <dir>
|
- \par -case \<dir\>
|
||||||
Specify case directory to use (instead of the cwd).
|
Specify case directory to use (instead of the cwd).
|
||||||
|
|
||||||
- \par -cellDist
|
- \par -cellDist
|
||||||
@ -58,11 +58,11 @@ Usage
|
|||||||
- \par -copyZero
|
- \par -copyZero
|
||||||
Copy \a 0 directory to processor* rather than decompose the fields.
|
Copy \a 0 directory to processor* rather than decompose the fields.
|
||||||
|
|
||||||
- \par -debug-switch <name=val>
|
- \par -debug-switch \<name=val\>
|
||||||
Specify the value of a registered debug switch. Default is 1
|
Specify the value of a registered debug switch. Default is 1
|
||||||
if the value is omitted. (Can be used multiple times)
|
if the value is omitted. (Can be used multiple times)
|
||||||
|
|
||||||
- \par -decomposeParDict <file>
|
- \par -decomposeParDict \<file\>
|
||||||
Use specified file for decomposePar dictionary.
|
Use specified file for decomposePar dictionary.
|
||||||
|
|
||||||
- \par -dry-run
|
- \par -dry-run
|
||||||
@ -72,7 +72,7 @@ Usage
|
|||||||
- \par -fields
|
- \par -fields
|
||||||
Use existing geometry decomposition and convert fields only.
|
Use existing geometry decomposition and convert fields only.
|
||||||
|
|
||||||
- \par fileHandler <handler>
|
- \par fileHandler \<handler\>
|
||||||
Override the file handler type.
|
Override the file handler type.
|
||||||
|
|
||||||
- \par -force
|
- \par -force
|
||||||
@ -87,14 +87,14 @@ Usage
|
|||||||
be used with caution when the underlying (serial) geometry or the
|
be used with caution when the underlying (serial) geometry or the
|
||||||
decomposition method etc. have been changed between decompositions.
|
decomposition method etc. have been changed between decompositions.
|
||||||
|
|
||||||
- \par -info-switch <name=val>
|
- \par -info-switch \<name=val\>
|
||||||
Specify the value of a registered info switch. Default is 1
|
Specify the value of a registered info switch. Default is 1
|
||||||
if the value is omitted. (Can be used multiple times)
|
if the value is omitted. (Can be used multiple times)
|
||||||
|
|
||||||
- \par -latestTime
|
- \par -latestTime
|
||||||
Select the latest time.
|
Select the latest time.
|
||||||
|
|
||||||
- \par -lib <name>
|
- \par -lib \<name\>
|
||||||
Additional library or library list to load (can be used multiple times).
|
Additional library or library list to load (can be used multiple times).
|
||||||
|
|
||||||
- \par -noFunctionObjects
|
- \par -noFunctionObjects
|
||||||
@ -106,14 +106,14 @@ Usage
|
|||||||
- \par -noZero
|
- \par -noZero
|
||||||
Exclude the \a 0 dir from the times list.
|
Exclude the \a 0 dir from the times list.
|
||||||
|
|
||||||
- \par -opt-switch <name=val>
|
- \par -opt-switch \<name=val\>
|
||||||
Specify the value of a registered optimisation switch (int/bool).
|
Specify the value of a registered optimisation switch (int/bool).
|
||||||
Default is 1 if the value is omitted. (Can be used multiple times)
|
Default is 1 if the value is omitted. (Can be used multiple times)
|
||||||
|
|
||||||
- \par -region \<regionName\>
|
- \par -region \<regionName\>
|
||||||
Decompose named region. Does not check for existence of processor*.
|
Decompose named region. Does not check for existence of processor*.
|
||||||
|
|
||||||
- \par -time <ranges>
|
- \par -time \<ranges\>
|
||||||
Override controlDict settings and decompose selected times. Does not
|
Override controlDict settings and decompose selected times. Does not
|
||||||
re-decompose the mesh i.e. does not handle moving mesh or changing
|
re-decompose the mesh i.e. does not handle moving mesh or changing
|
||||||
mesh cases. Eg, ':10,20 40:70 1000:', 'none', etc.
|
mesh cases. Eg, ':10,20 40:70 1000:', 'none', etc.
|
||||||
|
|||||||
@ -444,7 +444,7 @@ Foam::interfaceTrackingFvMesh::pointDisplacement()
|
|||||||
|
|
||||||
for (label k=0; k<aMesh().globalData().nGlobalPoints(); k++)
|
for (label k=0; k<aMesh().globalData().nGlobalPoints(); k++)
|
||||||
{
|
{
|
||||||
List<List<vector> > procLsPoints(Pstream::nProcs());
|
List<List<vector>> procLsPoints(Pstream::nProcs());
|
||||||
|
|
||||||
label curSharedPointIndex = addr.find(k);
|
label curSharedPointIndex = addr.find(k);
|
||||||
|
|
||||||
|
|||||||
@ -134,7 +134,7 @@ public:
|
|||||||
);
|
);
|
||||||
|
|
||||||
//- Construct and return a clone setting internal field reference
|
//- Construct and return a clone setting internal field reference
|
||||||
virtual tmp<fvPatchField<Type> > clone
|
virtual tmp<fvPatchField<Type>> clone
|
||||||
(
|
(
|
||||||
const DimensionedField<Type, volMesh>& iF
|
const DimensionedField<Type, volMesh>& iF
|
||||||
) const
|
) const
|
||||||
|
|||||||
@ -119,7 +119,7 @@ public:
|
|||||||
|
|
||||||
|
|
||||||
//- Construct and return a clone
|
//- Construct and return a clone
|
||||||
virtual autoPtr<pointPatchField<Type> > clone() const
|
virtual autoPtr<pointPatchField<Type>> clone() const
|
||||||
{
|
{
|
||||||
return autoPtr<pointPatchField<Type>>
|
return autoPtr<pointPatchField<Type>>
|
||||||
(
|
(
|
||||||
|
|||||||
@ -75,7 +75,7 @@ protected:
|
|||||||
//- Calculates area and centre of the cutting face
|
//- Calculates area and centre of the cutting face
|
||||||
static void calcGeomDataCutFace
|
static void calcGeomDataCutFace
|
||||||
(
|
(
|
||||||
const DynamicList<DynamicList<point> >& faceEdges,
|
const DynamicList<DynamicList<point>>& faceEdges,
|
||||||
const vector& subCellCentre,
|
const vector& subCellCentre,
|
||||||
vector& faceArea,
|
vector& faceArea,
|
||||||
vector& faceCentre
|
vector& faceCentre
|
||||||
|
|||||||
@ -23,7 +23,6 @@ ddtSchemes
|
|||||||
gradSchemes
|
gradSchemes
|
||||||
{
|
{
|
||||||
default Gauss linear;
|
default Gauss linear;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
divSchemes
|
divSchemes
|
||||||
|
|||||||
Reference in New Issue
Block a user