mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
fieldname is a word; not fileName
This commit is contained in:
@ -249,7 +249,7 @@ void Foam::dxSurfaceWriter<Type>::write
|
||||
const fileName& surfaceName,
|
||||
const pointField& points,
|
||||
const faceList& faces,
|
||||
const fileName& fieldName,
|
||||
const word& fieldName,
|
||||
const Field<Type>& values,
|
||||
const bool verbose
|
||||
) const
|
||||
|
||||
@ -88,7 +88,7 @@ public:
|
||||
const fileName& surfaceName,
|
||||
const pointField& points,
|
||||
const faceList& faces,
|
||||
const fileName& fieldName,
|
||||
const word& fieldName,
|
||||
const Field<Type>& values,
|
||||
const bool verbose = false
|
||||
) const;
|
||||
|
||||
@ -84,7 +84,7 @@ void Foam::foamFileSurfaceWriter<Type>::write
|
||||
const fileName& surfaceName,
|
||||
const pointField& points,
|
||||
const faceList& faces,
|
||||
const fileName& fieldName,
|
||||
const word& fieldName,
|
||||
const Field<Type>& values,
|
||||
const bool verbose
|
||||
) const
|
||||
|
||||
@ -95,7 +95,7 @@ public:
|
||||
const fileName& surfaceName,
|
||||
const pointField& points,
|
||||
const faceList& faces,
|
||||
const fileName& fieldName,
|
||||
const word& fieldName,
|
||||
const Field<Type>& values,
|
||||
const bool verbose = false
|
||||
) const;
|
||||
|
||||
@ -53,7 +53,7 @@ void Foam::nullSurfaceWriter<Type>::write
|
||||
const fileName& surfaceName,
|
||||
const pointField& points,
|
||||
const faceList& faces,
|
||||
const fileName& fieldName,
|
||||
const word& fieldName,
|
||||
const Field<Type>& values,
|
||||
const bool verbose
|
||||
) const
|
||||
|
||||
@ -80,7 +80,7 @@ public:
|
||||
const fileName& surfaceName,
|
||||
const pointField& points,
|
||||
const faceList& faces,
|
||||
const fileName& fieldName,
|
||||
const word& fieldName,
|
||||
const Field<Type>& values,
|
||||
const bool verbose = false
|
||||
) const;
|
||||
|
||||
@ -102,7 +102,7 @@ public:
|
||||
const fileName& surfaceName,
|
||||
const pointField& points,
|
||||
const faceList& faces,
|
||||
const fileName& fieldName,
|
||||
const word& fieldName,
|
||||
const Field<Type>& values,
|
||||
const bool verbose = false
|
||||
) const
|
||||
|
||||
@ -65,7 +65,7 @@ void Foam::rawSurfaceWriter<Type>::writeGeometry
|
||||
template<class Type>
|
||||
void Foam::rawSurfaceWriter<Type>::writeData
|
||||
(
|
||||
const fileName& fieldName,
|
||||
const word& fieldName,
|
||||
const pointField& points,
|
||||
const faceList& faces,
|
||||
const scalarField& values,
|
||||
@ -101,7 +101,7 @@ void Foam::rawSurfaceWriter<Type>::writeData
|
||||
template<class Type>
|
||||
void Foam::rawSurfaceWriter<Type>::writeData
|
||||
(
|
||||
const fileName& fieldName,
|
||||
const word& fieldName,
|
||||
const pointField& points,
|
||||
const faceList& faces,
|
||||
const vectorField& values,
|
||||
@ -144,7 +144,7 @@ void Foam::rawSurfaceWriter<Type>::writeData
|
||||
template<class Type>
|
||||
void Foam::rawSurfaceWriter<Type>::writeData
|
||||
(
|
||||
const fileName& fieldName,
|
||||
const word& fieldName,
|
||||
const pointField& points,
|
||||
const faceList& faces,
|
||||
const sphericalTensorField& values,
|
||||
@ -183,7 +183,7 @@ void Foam::rawSurfaceWriter<Type>::writeData
|
||||
template<class Type>
|
||||
void Foam::rawSurfaceWriter<Type>::writeData
|
||||
(
|
||||
const fileName& fieldName,
|
||||
const word& fieldName,
|
||||
const pointField& points,
|
||||
const faceList& faces,
|
||||
const symmTensorField& values,
|
||||
@ -232,7 +232,7 @@ void Foam::rawSurfaceWriter<Type>::writeData
|
||||
template<class Type>
|
||||
void Foam::rawSurfaceWriter<Type>::writeData
|
||||
(
|
||||
const fileName& fieldName,
|
||||
const word& fieldName,
|
||||
const pointField& points,
|
||||
const faceList& faces,
|
||||
const tensorField& values,
|
||||
@ -344,7 +344,7 @@ namespace Foam
|
||||
const fileName& surfaceName,
|
||||
const pointField& points,
|
||||
const faceList& faces,
|
||||
const fileName& fieldName,
|
||||
const word& fieldName,
|
||||
const Field<bool>& values,
|
||||
const bool verbose
|
||||
) const
|
||||
@ -359,7 +359,7 @@ void Foam::rawSurfaceWriter<Type>::write
|
||||
const fileName& surfaceName,
|
||||
const pointField& points,
|
||||
const faceList& faces,
|
||||
const fileName& fieldName,
|
||||
const word& fieldName,
|
||||
const Field<Type>& values,
|
||||
const bool verbose
|
||||
) const
|
||||
|
||||
@ -70,7 +70,7 @@ class rawSurfaceWriter
|
||||
|
||||
static void writeData
|
||||
(
|
||||
const fileName& fieldName,
|
||||
const word& fieldName,
|
||||
const pointField& points,
|
||||
const faceList& faces,
|
||||
const scalarField& values,
|
||||
@ -79,7 +79,7 @@ class rawSurfaceWriter
|
||||
|
||||
static void writeData
|
||||
(
|
||||
const fileName& fieldName,
|
||||
const word& fieldName,
|
||||
const pointField& points,
|
||||
const faceList& faces,
|
||||
const vectorField& values,
|
||||
@ -88,7 +88,7 @@ class rawSurfaceWriter
|
||||
|
||||
static void writeData
|
||||
(
|
||||
const fileName& fieldName,
|
||||
const word& fieldName,
|
||||
const pointField& points,
|
||||
const faceList& faces,
|
||||
const sphericalTensorField& values,
|
||||
@ -97,7 +97,7 @@ class rawSurfaceWriter
|
||||
|
||||
static void writeData
|
||||
(
|
||||
const fileName& fieldName,
|
||||
const word& fieldName,
|
||||
const pointField& points,
|
||||
const faceList& faces,
|
||||
const symmTensorField& values,
|
||||
@ -106,7 +106,7 @@ class rawSurfaceWriter
|
||||
|
||||
static void writeData
|
||||
(
|
||||
const fileName& fieldName,
|
||||
const word& fieldName,
|
||||
const pointField& points,
|
||||
const faceList& faces,
|
||||
const tensorField& values,
|
||||
@ -152,7 +152,7 @@ public:
|
||||
const fileName& surfaceName,
|
||||
const pointField& points,
|
||||
const faceList& faces,
|
||||
const fileName& fieldName,
|
||||
const word& fieldName,
|
||||
const Field<Type>& values,
|
||||
const bool verbose = false
|
||||
) const;
|
||||
|
||||
@ -128,7 +128,7 @@ public:
|
||||
const fileName& surfaceName, // name of surface
|
||||
const pointField& points,
|
||||
const faceList& faces,
|
||||
const fileName& fieldName, // name of field
|
||||
const word& fieldName, // name of field
|
||||
const Field<Type>& values,
|
||||
const bool verbose = false
|
||||
) const = 0;
|
||||
|
||||
@ -266,7 +266,7 @@ void Foam::vtkSurfaceWriter<Type>::write
|
||||
const fileName& surfaceName,
|
||||
const pointField& points,
|
||||
const faceList& faces,
|
||||
const fileName& fieldName,
|
||||
const word& fieldName,
|
||||
const Field<Type>& values,
|
||||
const bool verbose
|
||||
) const
|
||||
|
||||
@ -97,7 +97,7 @@ public:
|
||||
const fileName& surfaceName,
|
||||
const pointField& points,
|
||||
const faceList& faces,
|
||||
const fileName& fieldName,
|
||||
const word& fieldName,
|
||||
const Field<Type>& values,
|
||||
const bool verbose = false
|
||||
) const;
|
||||
|
||||
Reference in New Issue
Block a user