STYLE: use fully-scoped names in meshTools, sampling

This commit is contained in:
Mark Olesen
2017-11-19 11:34:41 +01:00
parent 6fd27353e4
commit a573e0e1aa
6 changed files with 56 additions and 105 deletions

View File

@ -38,12 +38,7 @@ Description
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
namespace Foam
{
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
void makeGraph
void Foam::makeGraph
(
const scalarField& x,
const volScalarField& vsf,
@ -54,7 +49,7 @@ void makeGraph
}
void makeGraph
void Foam::makeGraph
(
const scalarField& x,
const volScalarField& vsf,
@ -76,7 +71,7 @@ void makeGraph
}
void makeGraph
void Foam::makeGraph
(
const scalarField& x,
const scalarField& sf,
@ -96,8 +91,4 @@ void makeGraph
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
} // End namespace Foam
// ************************************************************************* //

View File

@ -5,12 +5,7 @@
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
namespace Foam
{
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
void writeCellGraph
void Foam::writeCellGraph
(
const volScalarField& vsf,
const word& graphFormat
@ -30,8 +25,4 @@ void writeCellGraph
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
} // End namespace Foam
// ************************************************************************* //

View File

@ -3,15 +3,9 @@
#include "fvMesh.H"
#include "graph.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
namespace Foam
{
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
void writePatchGraph
void Foam::writePatchGraph
(
const volScalarField& vsf,
const label patchLabel,
@ -30,8 +24,4 @@ void writePatchGraph
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
} // End namespace Foam
// ************************************************************************* //