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
1075587f
Commit
1075587f
authored
Apr 29, 2010
by
Mark Olesen
Browse files
STYLE: fully scope some method names
parent
72f7d46f
Changes
37
Hide whitespace changes
Inline
Side-by-side
src/OpenFOAM/matrices/lduMatrix/lduAddressing/lduInterface/cyclicLduInterface.C
View file @
1075587f
...
...
@@ -28,10 +28,8 @@ License
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
namespace
Foam
{
defineTypeNameAndDebug
(
cyclicLduInterface
,
0
);
}
defineTypeNameAndDebug
(
Foam
::
cyclicLduInterface
,
0
);
// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
...
...
src/OpenFOAM/matrices/lduMatrix/lduAddressing/lduInterface/lduInterface.C
View file @
1075587f
...
...
@@ -25,23 +25,15 @@ License
#include
"lduInterface.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
namespace
Foam
{
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
defineTypeNameAndDebug
(
lduInterface
,
0
);
defineTypeNameAndDebug
(
Foam
::
lduInterface
,
0
);
// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
lduInterface
::~
lduInterface
()
Foam
::
lduInterface
::~
lduInterface
()
{}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
}
// End namespace Foam
// ************************************************************************* //
src/OpenFOAM/matrices/lduMatrix/lduAddressing/lduInterface/processorLduInterface.C
View file @
1075587f
...
...
@@ -27,10 +27,7 @@ License
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
namespace
Foam
{
defineTypeNameAndDebug
(
processorLduInterface
,
0
);
}
defineTypeNameAndDebug
(
Foam
::
processorLduInterface
,
0
);
// * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
...
...
src/OpenFOAM/matrices/lduMatrix/lduAddressing/lduInterfaceFields/cyclicLduInterfaceField/cyclicLduInterfaceField.C
View file @
1075587f
...
...
@@ -28,10 +28,7 @@ License
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
namespace
Foam
{
defineTypeNameAndDebug
(
cyclicLduInterfaceField
,
0
);
}
defineTypeNameAndDebug
(
Foam
::
cyclicLduInterfaceField
,
0
);
// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
...
...
src/OpenFOAM/matrices/lduMatrix/lduAddressing/lduInterfaceFields/lduInterfaceField/lduInterfaceField.C
View file @
1075587f
...
...
@@ -25,23 +25,14 @@ License
#include
"lduInterfaceField.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
namespace
Foam
{
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
defineTypeNameAndDebug
(
lduInterfaceField
,
0
);
defineTypeNameAndDebug
(
Foam
::
lduInterfaceField
,
0
);
// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
lduInterfaceField
::~
lduInterfaceField
()
Foam
::
lduInterfaceField
::~
lduInterfaceField
()
{}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
}
// End namespace Foam
// ************************************************************************* //
src/OpenFOAM/matrices/lduMatrix/lduAddressing/lduInterfaceFields/processorLduInterfaceField/processorLduInterfaceField.C
View file @
1075587f
...
...
@@ -28,10 +28,7 @@ License
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
namespace
Foam
{
defineTypeNameAndDebug
(
processorLduInterfaceField
,
0
);
}
defineTypeNameAndDebug
(
Foam
::
processorLduInterfaceField
,
0
);
// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
...
...
src/OpenFOAM/matrices/lduMatrix/lduMatrix/lduMatrix.C
View file @
1075587f
...
...
@@ -28,10 +28,7 @@ License
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
namespace
Foam
{
defineTypeNameAndDebug
(
lduMatrix
,
1
);
}
defineTypeNameAndDebug
(
Foam
::
lduMatrix
,
1
);
const
Foam
::
scalar
Foam
::
lduMatrix
::
great_
=
1.0e+20
;
const
Foam
::
scalar
Foam
::
lduMatrix
::
small_
=
1.0e-20
;
...
...
src/OpenFOAM/matrices/lduMatrix/solvers/GAMG/GAMGAgglomerations/pairGAMGAgglomeration/pairGAMGAgglomeration.C
View file @
1075587f
...
...
@@ -27,10 +27,7 @@ License
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
namespace
Foam
{
defineTypeNameAndDebug
(
pairGAMGAgglomeration
,
0
);
}
defineTypeNameAndDebug
(
Foam
::
pairGAMGAgglomeration
,
0
);
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
...
...
src/OpenFOAM/matrices/lduMatrix/solvers/diagonalSolver/diagonalSolver.C
View file @
1075587f
...
...
@@ -27,10 +27,7 @@ License
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
namespace
Foam
{
defineTypeNameAndDebug
(
diagonalSolver
,
0
);
}
defineTypeNameAndDebug
(
Foam
::
diagonalSolver
,
0
);
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
...
...
src/OpenFOAM/matrices/tolerances/tolerances.C
View file @
1075587f
...
...
@@ -25,14 +25,9 @@ License
#include
"tolerances.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
namespace
Foam
{
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
tolerances
::
tolerances
(
const
Time
&
t
,
const
fileName
&
dictName
)
Foam
::
tolerances
::
tolerances
(
const
Time
&
t
,
const
fileName
&
dictName
)
:
IOdictionary
(
...
...
@@ -58,7 +53,7 @@ tolerances::tolerances(const Time& t, const fileName& dictName)
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
bool
tolerances
::
read
()
bool
Foam
::
tolerances
::
read
()
{
if
(
regIOobject
::
read
())
{
...
...
@@ -90,34 +85,34 @@ bool tolerances::read()
}
bool
tolerances
::
relax
(
const
word
&
name
)
const
bool
Foam
::
tolerances
::
relax
(
const
word
&
name
)
const
{
return
relaxationFactors_
.
found
(
name
);
}
scalar
tolerances
::
relaxationFactor
(
const
word
&
name
)
const
Foam
::
scalar
Foam
::
tolerances
::
relaxationFactor
(
const
word
&
name
)
const
{
return
readScalar
(
relaxationFactors_
.
lookup
(
name
));
}
scalar
tolerances
::
solverTolerance
(
const
word
&
name
)
const
Foam
::
scalar
Foam
::
tolerances
::
solverTolerance
(
const
word
&
name
)
const
{
return
readScalar
(
solverTolerances_
.
lookup
(
name
));
}
bool
tolerances
::
solverRelativeTolerances
()
const
bool
Foam
::
tolerances
::
solverRelativeTolerances
()
const
{
return
solverRelativeTolerances_
.
size
();
}
scalar
tolerances
::
solverRelativeTolerance
(
const
word
&
name
)
const
Foam
::
scalar
Foam
::
tolerances
::
solverRelativeTolerance
(
const
word
&
name
)
const
{
return
readScalar
(
solverRelativeTolerances_
.
lookup
(
name
));
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
}
// End namespace Foam
// ************************************************************************* //
src/OpenFOAM/meshes/pointMesh/pointPatches/basic/generic/genericPointPatch.C
View file @
1075587f
...
...
@@ -26,26 +26,20 @@ License
#include
"genericPointPatch.H"
#include
"addToRunTimeSelectionTable.H"
// * * * * * * * * * * * * * *
* * * * * * * * * *
* * * * * * * * * * * * * //
// * * * * * * * * * * * * * *
Static Data Members
* * * * * * * * * * * * * //
namespace
Foam
{
defineTypeNameAndDebug
(
genericPointPatch
,
0
);
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
// Add the patch constructor functions to the hash tables
addToRunTimeSelectionTable
(
facePointPatch
,
genericPointPatch
,
polyPatch
);
}
defineTypeNameAndDebug
(
genericPointPatch
,
0
);
// Add the patch constructor functions to the hash tables
addToRunTimeSelectionTable
(
facePointPatch
,
genericPointPatch
,
polyPatch
);
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
}
// End namespace Foam
// ************************************************************************* //
src/OpenFOAM/meshes/pointMesh/pointPatches/constraint/cyclic/cyclicPointPatch.C
View file @
1075587f
...
...
@@ -31,20 +31,18 @@ License
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
namespace
Foam
{
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
defineTypeNameAndDebug
(
cyclicPointPatch
,
0
);
addToRunTimeSelectionTable
(
facePointPatch
,
cyclicPointPatch
,
polyPatch
);
namespace
Foam
{
defineTypeNameAndDebug
(
cyclicPointPatch
,
0
);
addToRunTimeSelectionTable
(
facePointPatch
,
cyclicPointPatch
,
polyPatch
);
}
// * * * * * * * * * * * * * Protected Member Functions * * * * * * * * * * //
...
...
@@ -77,22 +75,22 @@ void Foam::cyclicPointPatch::calcGeometry(PstreamBuffers&)
}
void
cyclicPointPatch
::
initMovePoints
(
PstreamBuffers
&
,
const
pointField
&
)
void
Foam
::
cyclicPointPatch
::
initMovePoints
(
PstreamBuffers
&
,
const
pointField
&
)
{}
void
cyclicPointPatch
::
movePoints
(
PstreamBuffers
&
,
const
pointField
&
)
void
Foam
::
cyclicPointPatch
::
movePoints
(
PstreamBuffers
&
,
const
pointField
&
)
{}
void
cyclicPointPatch
::
initUpdateMesh
(
PstreamBuffers
&
pBufs
)
void
Foam
::
cyclicPointPatch
::
initUpdateMesh
(
PstreamBuffers
&
pBufs
)
{
facePointPatch
::
initUpdateMesh
(
pBufs
);
cyclicPointPatch
::
initGeometry
(
pBufs
);
}
void
cyclicPointPatch
::
updateMesh
(
PstreamBuffers
&
pBufs
)
void
Foam
::
cyclicPointPatch
::
updateMesh
(
PstreamBuffers
&
pBufs
)
{
facePointPatch
::
updateMesh
(
pBufs
);
cyclicPointPatch
::
calcGeometry
(
pBufs
);
...
...
@@ -101,7 +99,7 @@ void cyclicPointPatch::updateMesh(PstreamBuffers& pBufs)
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
cyclicPointPatch
::
cyclicPointPatch
Foam
::
cyclicPointPatch
::
cyclicPointPatch
(
const
polyPatch
&
patch
,
const
pointBoundaryMesh
&
bm
...
...
@@ -114,26 +112,22 @@ cyclicPointPatch::cyclicPointPatch
// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
cyclicPointPatch
::~
cyclicPointPatch
()
Foam
::
cyclicPointPatch
::~
cyclicPointPatch
()
{}
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
const
edgeList
&
cyclicPointPatch
::
transformPairs
()
const
const
Foam
::
edgeList
&
Foam
::
cyclicPointPatch
::
transformPairs
()
const
{
return
cyclicPolyPatch_
.
coupledPoints
();
}
const
labelList
&
cyclicPointPatch
::
separatedPoints
()
const
const
Foam
::
labelList
&
Foam
::
cyclicPointPatch
::
separatedPoints
()
const
{
return
separatedPoints_
;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
}
// End namespace Foam
// ************************************************************************* //
src/OpenFOAM/meshes/pointMesh/pointPatches/constraint/empty/emptyPointPatch.C
View file @
1075587f
...
...
@@ -31,22 +31,19 @@ License
namespace
Foam
{
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
defineTypeNameAndDebug
(
emptyPointPatch
,
0
);
addToRunTimeSelectionTable
(
facePointPatch
,
emptyPointPatch
,
polyPatch
);
defineTypeNameAndDebug
(
emptyPointPatch
,
0
);
addToRunTimeSelectionTable
(
facePointPatch
,
emptyPointPatch
,
polyPatch
);
}
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
void
emptyPointPatch
::
applyConstraint
void
Foam
::
emptyPointPatch
::
applyConstraint
(
const
label
pointi
,
pointConstraint
&
pc
...
...
@@ -56,8 +53,4 @@ void emptyPointPatch::applyConstraint
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
}
// End namespace Foam
// ************************************************************************* //
src/OpenFOAM/meshes/pointMesh/pointPatches/constraint/processor/processorPointPatch.C
View file @
1075587f
...
...
@@ -31,21 +31,18 @@ License
#include
"primitiveFacePatch.H"
#include
"emptyPolyPatch.H"
// * * * * * * * * * * * * * *
* * * * * * * * * *
* * * * * * * * * * * * * //
// * * * * * * * * * * * * * *
Static Data Members
* * * * * * * * * * * * * //
namespace
Foam
{
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
defineTypeNameAndDebug
(
processorPointPatch
,
0
);
addToRunTimeSelectionTable
(
facePointPatch
,
processorPointPatch
,
polyPatch
);
defineTypeNameAndDebug
(
processorPointPatch
,
0
);
addToRunTimeSelectionTable
(
facePointPatch
,
processorPointPatch
,
polyPatch
);
}
// * * * * * * * * * * * * * Protected Member Functions * * * * * * * * * * //
...
...
@@ -123,22 +120,26 @@ void Foam::processorPointPatch::calcGeometry(PstreamBuffers& pBufs)
}
void
processorPointPatch
::
initMovePoints
(
PstreamBuffers
&
,
const
pointField
&
)
void
Foam
::
processorPointPatch
::
initMovePoints
(
PstreamBuffers
&
,
const
pointField
&
)
{}
void
processorPointPatch
::
movePoints
(
PstreamBuffers
&
,
const
pointField
&
)
void
Foam
::
processorPointPatch
::
movePoints
(
PstreamBuffers
&
,
const
pointField
&
)
{}
void
processorPointPatch
::
initUpdateMesh
(
PstreamBuffers
&
pBufs
)
void
Foam
::
processorPointPatch
::
initUpdateMesh
(
PstreamBuffers
&
pBufs
)
{
facePointPatch
::
initUpdateMesh
(
pBufs
);
processorPointPatch
::
initGeometry
(
pBufs
);
}
void
processorPointPatch
::
updateMesh
(
PstreamBuffers
&
pBufs
)
void
Foam
::
processorPointPatch
::
updateMesh
(
PstreamBuffers
&
pBufs
)
{
facePointPatch
::
updateMesh
(
pBufs
);
processorPointPatch
::
calcGeometry
(
pBufs
);
...
...
@@ -147,7 +148,7 @@ void processorPointPatch::updateMesh(PstreamBuffers& pBufs)
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
processorPointPatch
::
processorPointPatch
Foam
::
processorPointPatch
::
processorPointPatch
(
const
polyPatch
&
patch
,
const
pointBoundaryMesh
&
bm
...
...
@@ -160,26 +161,22 @@ processorPointPatch::processorPointPatch
// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
processorPointPatch
::~
processorPointPatch
()
Foam
::
processorPointPatch
::~
processorPointPatch
()
{}
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
const
labelList
&
processorPointPatch
::
reverseMeshPoints
()
const
const
Foam
::
labelList
&
Foam
::
processorPointPatch
::
reverseMeshPoints
()
const
{
return
reverseMeshPoints_
;
}
const
labelList
&
processorPointPatch
::
separatedPoints
()
const
const
Foam
::
labelList
&
Foam
::
processorPointPatch
::
separatedPoints
()
const
{
return
separatedPoints_
;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
}
// End namespace Foam
// ************************************************************************* //
src/OpenFOAM/meshes/pointMesh/pointPatches/constraint/symmetry/symmetryPointPatch.C
View file @
1075587f
...
...
@@ -29,25 +29,25 @@ License
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
namespace
Foam
{
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
defineTypeNameAndDebug
(
symmetryPointPatch
,
0
);
// Add the patch constructor functions to the hash tables
addToRunTimeSelectionTable
(
facePointPatch
,
symmetryPointPatch
,
polyPatch
);
namespace
Foam
{
defineTypeNameAndDebug
(
symmetryPointPatch
,
0
);
// Add the patch constructor functions to the hash tables
addToRunTimeSelectionTable
(
facePointPatch
,
symmetryPointPatch
,
polyPatch
);
}
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
void
symmetryPointPatch
::
applyConstraint
void
Foam
::
symmetryPointPatch
::
applyConstraint
(
const
label
pointi
,
pointConstraint
&
pc
...
...
@@ -57,8 +57,4 @@ void symmetryPointPatch::applyConstraint
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
}
// End namespace Foam
// ************************************************************************* //
src/OpenFOAM/meshes/pointMesh/pointPatches/constraint/wedge/wedgePointPatch.C
View file @
1075587f
...
...
@@ -34,23 +34,21 @@ Description
namespace
Foam
{
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
defineTypeNameAndDebug
(
wedgePointPatch
,
0
);
// Add the patch constructor functions to the hash tables
addToRunTimeSelectionTable
(
facePointPatch
,
wedgePointPatch
,
polyPatch
);
defineTypeNameAndDebug
(
wedgePointPatch
,
0
);
// Add the patch constructor functions to the hash tables
addToRunTimeSelectionTable
(
facePointPatch
,
wedgePointPatch
,
polyPatch
);
}
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
void
wedgePointPatch
::
applyConstraint
void
Foam
::
wedgePointPatch
::
applyConstraint
(
const
label
pointi
,
pointConstraint
&
pc
...
...
@@ -60,8 +58,4 @@ void wedgePointPatch::applyConstraint
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
}
// End namespace Foam
// ************************************************************************* //
src/OpenFOAM/meshes/pointMesh/pointPatches/derived/coupled/coupledFacePointPatch.C
View file @
1075587f
...
...
@@ -26,19 +26,14 @@ License
#include
"coupledFacePointPatch.H"
#include
"pointBoundaryMesh.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
namespace
Foam
{
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
defineTypeNameAndDebug
(
coupledFacePointPatch
,
0
);
defineTypeNameAndDebug
(
Foam
::
coupledFacePointPatch
,
0
);
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //