mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
STYLE: use fully-scoped names in meshTools, sampling
This commit is contained in:
@ -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
|
||||
|
||||
// ************************************************************************* //
|
||||
|
||||
@ -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
|
||||
|
||||
// ************************************************************************* //
|
||||
|
||||
@ -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
|
||||
|
||||
// ************************************************************************* //
|
||||
|
||||
Reference in New Issue
Block a user