sampledSurface/writers: Removed unnecessary "verbose" argument

This commit is contained in:
Henry Weller
2020-01-28 22:46:00 +00:00
parent ac22da9499
commit 3631f13a98
21 changed files with 103 additions and 187 deletions

View File

@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2012-2019 OpenFOAM Foundation
\\ / A nd | Copyright (C) 2012-2020 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
@ -294,7 +294,6 @@ Foam::tmp<Foam::triSurfacePointScalarField> Foam::automatic::load()
faces,
"cellSize",
pointCellSize,
true,
true
);
}

View File

@ -471,8 +471,7 @@ namespace Foam
faces,
"internalCloseness", // fieldName
closenessFields.first(),
false, // isNodeValues
true // verbose
false // isNodeValues
);
vtkSurfaceWriter().write
@ -483,8 +482,7 @@ namespace Foam
faces,
"externalCloseness", // fieldName
closenessFields.second(),
false, // isNodeValues
true // verbose
false // isNodeValues
);
}
}
@ -535,8 +533,7 @@ namespace Foam
faces,
"internalPointCloseness", // fieldName
internalCloseness,
true, // isNodeValues
true // verbose
true // isNodeValues
);
vtkSurfaceWriter().write
@ -547,8 +544,7 @@ namespace Foam
faces,
"externalPointCloseness", // fieldName
externalCloseness,
true, // isNodeValues
true // verbose
true // isNodeValues
);
}
}
@ -586,8 +582,7 @@ namespace Foam
faces,
"curvature", // fieldName
k,
true, // isNodeValues
true // verbose
true // isNodeValues
);
}
}
@ -659,8 +654,7 @@ namespace Foam
faces,
"featureProximity", // fieldName
featureProximity,
false, // isNodeValues
true // verbose
false // isNodeValues
);
}
}

View File

@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2011-2018 OpenFOAM Foundation
\\ / A nd | Copyright (C) 2011-2020 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
@ -766,8 +766,7 @@ bool Foam::functionObjects::fieldValues::surfaceFieldValue::write()
outputDir(),
regionTypeNames_[regionType_] + ("_" + regionName_),
points,
faces,
false
faces
);
}
}

View File

@ -51,8 +51,7 @@ void Foam::ensightSurfaceWriter::write
const faceList& faces,
const word& fieldName,
const Field<Type>& values,
const bool isNodeValues,
const bool verbose
const bool isNodeValues
) const
{
if (!isDir(outputDir/fieldName))
@ -75,7 +74,7 @@ void Foam::ensightSurfaceWriter::write
writeFormat_
);
if (verbose)
if (debug)
{
Info<< "Writing case file to " << osCase.name() << endl;
}
@ -146,8 +145,7 @@ void Foam::ensightSurfaceWriter::write
const fileName& outputDir,
const fileName& surfaceName,
const pointField& points,
const faceList& faces,
const bool verbose
const faceList& faces
) const
{
if (!isDir(outputDir))
@ -165,7 +163,7 @@ void Foam::ensightSurfaceWriter::write
writeFormat_
);
if (verbose)
if (debug)
{
Info<< "Writing case file to " << osCase.name() << endl;
}

View File

@ -68,8 +68,7 @@ class ensightSurfaceWriter
const faceList& faces,
const word& fieldName,
const Field<Type>& values,
const bool isNodeValues,
const bool verbose
const bool isNodeValues
) const;
@ -108,8 +107,7 @@ public:
const fileName& outputDir,
const fileName& surfaceName,
const pointField& points,
const faceList& faces,
const bool verbose = false
const faceList& faces
) const;
@ -123,8 +121,7 @@ public:
const faceList& faces,
const word& fieldName, // name of field
const Field<scalar>& values,
const bool isNodeValues,
const bool verbose = false
const bool isNodeValues
) const;
//- Write vectorField for a single surface to file.
@ -137,8 +134,7 @@ public:
const faceList& faces,
const word& fieldName, // name of field
const Field<vector>& values,
const bool isNodeValues,
const bool verbose = false
const bool isNodeValues
) const;
//- Write sphericalTensorField for a single surface to file.
@ -151,8 +147,7 @@ public:
const faceList& faces,
const word& fieldName, // name of field
const Field<sphericalTensor>& values,
const bool isNodeValues,
const bool verbose = false
const bool isNodeValues
) const;
//- Write symmTensorField for a single surface to file.
@ -165,8 +160,7 @@ public:
const faceList& faces,
const word& fieldName, // name of field
const Field<symmTensor>& values,
const bool isNodeValues,
const bool verbose = false
const bool isNodeValues
) const;
//- Write tensorField for a single surface to file.
@ -179,10 +173,8 @@ public:
const faceList& faces,
const word& fieldName, // name of field
const Field<tensor>& values,
const bool isNodeValues,
const bool verbose = false
const bool isNodeValues
) const;
};

View File

@ -47,8 +47,7 @@ void Foam::foamSurfaceWriter::write
const faceList& faces,
const word& fieldName,
const Field<Type>& values,
const bool isNodeValues,
const bool verbose
const bool isNodeValues
) const
{
fileName surfaceDir(outputDir/surfaceName);
@ -58,7 +57,7 @@ void Foam::foamSurfaceWriter::write
mkDir(surfaceDir);
}
if (verbose)
if (debug)
{
Info<< "Writing field " << fieldName << " to " << surfaceDir << endl;
}
@ -100,8 +99,7 @@ void Foam::foamSurfaceWriter::write
const fileName& outputDir,
const fileName& surfaceName,
const pointField& points,
const faceList& faces,
const bool verbose
const faceList& faces
) const
{
fileName surfaceDir(outputDir/surfaceName);
@ -111,7 +109,7 @@ void Foam::foamSurfaceWriter::write
mkDir(surfaceDir);
}
if (verbose)
if (debug)
{
Info<< "Writing geometry to " << surfaceDir << endl;
}

View File

@ -62,8 +62,7 @@ class foamSurfaceWriter
const faceList& faces,
const word& fieldName,
const Field<Type>& values,
const bool isNodeValues,
const bool verbose
const bool isNodeValues
) const;
@ -98,8 +97,7 @@ public:
const fileName& outputDir,
const fileName& surfaceName,
const pointField& points,
const faceList& faces,
const bool verbose = false
const faceList& faces
) const;
@ -113,8 +111,7 @@ public:
const faceList& faces,
const word& fieldName, // name of field
const Field<scalar>& values,
const bool isNodeValues,
const bool verbose = false
const bool isNodeValues
) const;
//- Write vectorField for a single surface to file.
@ -127,8 +124,7 @@ public:
const faceList& faces,
const word& fieldName, // name of field
const Field<vector>& values,
const bool isNodeValues,
const bool verbose = false
const bool isNodeValues
) const;
//- Write sphericalTensorField for a single surface to file.
@ -141,8 +137,7 @@ public:
const faceList& faces,
const word& fieldName, // name of field
const Field<sphericalTensor>& values,
const bool isNodeValues,
const bool verbose = false
const bool isNodeValues
) const;
//- Write symmTensorField for a single surface to file.
@ -155,8 +150,7 @@ public:
const faceList& faces,
const word& fieldName, // name of field
const Field<symmTensor>& values,
const bool isNodeValues,
const bool verbose = false
const bool isNodeValues
) const;
//- Write tensorField for a single surface to file.
@ -169,8 +163,7 @@ public:
const faceList& faces,
const word& fieldName, // name of field
const Field<tensor>& values,
const bool isNodeValues,
const bool verbose = false
const bool isNodeValues
) const;
};

View File

@ -55,8 +55,7 @@ namespace Foam
const faceList& faces, \
const word& fieldName, \
const Field<FieldType>& values, \
const bool isNodeValues, \
const bool verbose \
const bool isNodeValues \
) const \
{ \
write \
@ -67,8 +66,7 @@ namespace Foam
faces, \
fieldName, \
values, \
isNodeValues, \
verbose \
isNodeValues \
); \
}

View File

@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2012-2019 OpenFOAM Foundation
\\ / A nd | Copyright (C) 2012-2020 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
@ -359,8 +359,7 @@ void Foam::nastranSurfaceWriter::write
const fileName& outputDir,
const fileName& surfaceName,
const pointField& points,
const faceList& faces,
const bool verbose
const faceList& faces
) const
{
if (!isDir(outputDir))
@ -371,7 +370,7 @@ void Foam::nastranSurfaceWriter::write
OFstream os(outputDir/surfaceName + ".dat");
formatOS(os);
if (verbose)
if (debug)
{
Info<< "Writing nastran file to " << os.name() << endl;
}

View File

@ -143,8 +143,7 @@ private:
const faceList& faces,
const word& fieldName,
const Field<Type>& values,
const bool isNodeValues,
const bool verbose
const bool isNodeValues
) const;
@ -182,8 +181,7 @@ public:
const fileName& outputDir,
const fileName& surfaceName,
const pointField& points,
const faceList& faces,
const bool verbose = false
const faceList& faces
) const;
//- Write scalarField for a single surface to file.
@ -196,8 +194,7 @@ public:
const faceList& faces,
const word& fieldName,
const Field<scalar>& values,
const bool isNodeValues,
const bool verbose = false
const bool isNodeValues
) const;
//- Write vectorField for a single surface to file.
@ -210,8 +207,7 @@ public:
const faceList& faces,
const word& fieldName,
const Field<vector>& values,
const bool isNodeValues,
const bool verbose = false
const bool isNodeValues
) const;
//- Write sphericalTensorField for a single surface to file.
@ -224,8 +220,7 @@ public:
const faceList& faces,
const word& fieldName,
const Field<sphericalTensor>& values,
const bool isNodeValues,
const bool verbose = false
const bool isNodeValues
) const;
//- Write symmTensorField for a single surface to file.
@ -238,8 +233,7 @@ public:
const faceList& faces,
const word& fieldName,
const Field<symmTensor>& values,
const bool isNodeValues,
const bool verbose = false
const bool isNodeValues
) const;
//- Write tensorField for a single surface to file.
@ -252,8 +246,7 @@ public:
const faceList& faces,
const word& fieldName,
const Field<tensor>& values,
const bool isNodeValues,
const bool verbose = false
const bool isNodeValues
) const;
};

View File

@ -123,8 +123,7 @@ void Foam::nastranSurfaceWriter::write
const faceList& faces,
const word& fieldName,
const Field<Type>& values,
const bool isNodeValues,
const bool verbose
const bool isNodeValues
) const
{
if (!fieldMap_.found(fieldName))
@ -151,7 +150,7 @@ void Foam::nastranSurfaceWriter::write
OFstream os(outputDir/fieldName/surfaceName + ".dat");
formatOS(os);
if (verbose)
if (debug)
{
Info<< "Writing nastran file to " << os.name() << endl;
}

View File

@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2019 OpenFOAM Foundation
\\ / A nd | Copyright (C) 2019-2020 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
@ -75,8 +75,7 @@ public:
const fileName& outputDir,
const fileName& surfaceName,
const pointField& points,
const faceList& faces,
const bool verbose = false
const faceList& faces
) const
{}
@ -90,8 +89,7 @@ public:
const faceList& faces,
const word& fieldName, // name of field
const Field<scalar>& values,
const bool isNodeValues,
const bool verbose = false
const bool isNodeValues
) const
{}
@ -105,8 +103,7 @@ public:
const faceList& faces,
const word& fieldName, // name of field
const Field<vector>& values,
const bool isNodeValues,
const bool verbose = false
const bool isNodeValues
) const
{}
@ -120,8 +117,7 @@ public:
const faceList& faces,
const word& fieldName, // name of field
const Field<sphericalTensor>& values,
const bool isNodeValues,
const bool verbose = false
const bool isNodeValues
) const
{}
@ -135,8 +131,7 @@ public:
const faceList& faces,
const word& fieldName, // name of field
const Field<symmTensor>& values,
const bool isNodeValues,
const bool verbose = false
const bool isNodeValues
) const
{}
@ -150,8 +145,7 @@ public:
const faceList& faces,
const word& fieldName, // name of field
const Field<tensor>& values,
const bool isNodeValues,
const bool verbose = false
const bool isNodeValues
) const
{}
};

View File

@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2011-2019 OpenFOAM Foundation
\\ / A nd | Copyright (C) 2011-2020 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
@ -57,8 +57,7 @@ void Foam::proxySurfaceWriter::write
const fileName& outputDir,
const fileName& surfaceName,
const pointField& points,
const faceList& faces,
const bool verbose
const faceList& faces
) const
{
// avoid bad values
@ -74,7 +73,7 @@ void Foam::proxySurfaceWriter::write
fileName outName(outputDir/surfaceName + "." + ext_);
if (verbose)
if (debug)
{
Info<< "Writing geometry to " << outName << endl;
}

View File

@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2011-2019 OpenFOAM Foundation
\\ / A nd | Copyright (C) 2011-2020 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
@ -90,8 +90,7 @@ public:
const fileName& outputDir,
const fileName& surfaceName,
const pointField& points,
const faceList& faces,
const bool verbose = false
const faceList& faces
) const;
//- Write scalarField for a single surface to file.
@ -104,8 +103,7 @@ public:
const faceList& faces,
const word& fieldName, // name of field
const Field<scalar>& values,
const bool isNodeValues,
const bool verbose = false
const bool isNodeValues
) const
{}
@ -119,8 +117,7 @@ public:
const faceList& faces,
const word& fieldName, // name of field
const Field<vector>& values,
const bool isNodeValues,
const bool verbose = false
const bool isNodeValues
) const
{}
@ -134,8 +131,7 @@ public:
const faceList& faces,
const word& fieldName, // name of field
const Field<sphericalTensor>& values,
const bool isNodeValues,
const bool verbose = false
const bool isNodeValues
) const
{}
@ -149,8 +145,7 @@ public:
const faceList& faces,
const word& fieldName, // name of field
const Field<symmTensor>& values,
const bool isNodeValues,
const bool verbose = false
const bool isNodeValues
) const
{}
@ -164,8 +159,7 @@ public:
const faceList& faces,
const word& fieldName, // name of field
const Field<tensor>& values,
const bool isNodeValues,
const bool verbose = false
const bool isNodeValues
) const
{}
};

View File

@ -215,8 +215,7 @@ void Foam::rawSurfaceWriter::write
const faceList& faces,
const word& fieldName,
const Field<Type>& values,
const bool isNodeValues,
const bool verbose
const bool isNodeValues
) const
{
if (!isDir(outputDir))
@ -232,7 +231,7 @@ void Foam::rawSurfaceWriter::write
writeCompression_
);
if (verbose)
if (debug)
{
Info<< "Writing field " << fieldName << " to " << os.name() << endl;
}
@ -307,8 +306,7 @@ void Foam::rawSurfaceWriter::write
const fileName& outputDir,
const fileName& surfaceName,
const pointField& points,
const faceList& faces,
const bool verbose
const faceList& faces
) const
{
if (!isDir(outputDir))
@ -324,7 +322,7 @@ void Foam::rawSurfaceWriter::write
writeCompression_
);
if (verbose)
if (debug)
{
Info<< "Writing geometry to " << os.name() << endl;
}

View File

@ -96,8 +96,7 @@ class rawSurfaceWriter
const faceList& faces,
const word& fieldName,
const Field<Type>& values,
const bool isNodeValues,
const bool verbose
const bool isNodeValues
) const;
@ -128,8 +127,7 @@ public:
const fileName& outputDir,
const fileName& surfaceName,
const pointField& points,
const faceList& faces,
const bool verbose = false
const faceList& faces
) const;
@ -143,8 +141,7 @@ public:
const faceList& faces,
const word& fieldName, // name of field
const Field<scalar>& values,
const bool isNodeValues,
const bool verbose = false
const bool isNodeValues
) const;
//- Write vectorField for a single surface to file.
@ -157,8 +154,7 @@ public:
const faceList& faces,
const word& fieldName, // name of field
const Field<vector>& values,
const bool isNodeValues,
const bool verbose = false
const bool isNodeValues
) const;
//- Write sphericalTensorField for a single surface to file.
@ -171,8 +167,7 @@ public:
const faceList& faces,
const word& fieldName, // name of field
const Field<sphericalTensor>& values,
const bool isNodeValues,
const bool verbose = false
const bool isNodeValues
) const;
//- Write symmTensorField for a single surface to file.
@ -185,8 +180,7 @@ public:
const faceList& faces,
const word& fieldName, // name of field
const Field<symmTensor>& values,
const bool isNodeValues,
const bool verbose = false
const bool isNodeValues
) const;
//- Write tensorField for a single surface to file.
@ -199,8 +193,7 @@ public:
const faceList& faces,
const word& fieldName, // name of field
const Field<tensor>& values,
const bool isNodeValues,
const bool verbose = false
const bool isNodeValues
) const;
};

View File

@ -92,8 +92,7 @@ void Foam::starcdSurfaceWriter::write
const faceList& faces,
const word& fieldName,
const Field<Type>& values,
const bool isNodeValues,
const bool verbose
const bool isNodeValues
) const
{
if (!isDir(outputDir))
@ -103,7 +102,7 @@ void Foam::starcdSurfaceWriter::write
OFstream os(outputDir/fieldName + '_' + surfaceName + ".usr");
if (verbose)
if (debug)
{
Info<< "Writing field " << fieldName << " to " << os.name() << endl;
}
@ -139,8 +138,7 @@ void Foam::starcdSurfaceWriter::write
const fileName& outputDir,
const fileName& surfaceName,
const pointField& points,
const faceList& faces,
const bool verbose
const faceList& faces
) const
{
if (!isDir(outputDir))
@ -150,7 +148,7 @@ void Foam::starcdSurfaceWriter::write
fileName outName(outputDir/surfaceName + ".inp");
if (verbose)
if (debug)
{
Info<< "Writing geometry to " << outName << endl;
}

View File

@ -85,8 +85,7 @@ class starcdSurfaceWriter
const faceList& faces,
const word& fieldName,
const Field<Type>& values,
const bool isNodeValues,
const bool verbose
const bool isNodeValues
) const;
@ -121,8 +120,7 @@ public:
const fileName& outputDir,
const fileName& surfaceName,
const pointField& points,
const faceList& faces,
const bool verbose = false
const faceList& faces
) const;
//- Write scalarField for a single surface to file.
@ -135,8 +133,7 @@ public:
const faceList& faces,
const word& fieldName, // name of field
const Field<scalar>& values,
const bool isNodeValues,
const bool verbose = false
const bool isNodeValues
) const;
//- Write vectorField for a single surface to file.
@ -149,8 +146,7 @@ public:
const faceList& faces,
const word& fieldName, // name of field
const Field<vector>& values,
const bool isNodeValues,
const bool verbose = false
const bool isNodeValues
) const;
//- Write sphericalTensorField for a single surface to file.
@ -163,8 +159,7 @@ public:
const faceList& faces,
const word& fieldName, // name of field
const Field<sphericalTensor>& values,
const bool isNodeValues,
const bool verbose = false
const bool isNodeValues
) const;
//- Write symmTensorField for a single surface to file.
@ -177,8 +172,7 @@ public:
const faceList& faces,
const word& fieldName, // name of field
const Field<symmTensor>& values,
const bool isNodeValues,
const bool verbose = false
const bool isNodeValues
) const
{}
@ -192,8 +186,7 @@ public:
const faceList& faces,
const word& fieldName, // name of field
const Field<tensor>& values,
const bool isNodeValues,
const bool verbose = false
const bool isNodeValues
) const
{}
};

View File

@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2011-2019 OpenFOAM Foundation
\\ / A nd | Copyright (C) 2011-2020 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
@ -121,8 +121,7 @@ public:
const fileName& outputDir, // <case>/surface/TIME
const fileName& surfaceName, // name of surface
const pointField& points,
const faceList& faces,
const bool verbose = false
const faceList& faces
) const = 0;
//- Write scalarField for a single surface to file.
@ -135,8 +134,7 @@ public:
const faceList& faces,
const word& fieldName, // name of field
const Field<scalar>& values,
const bool isNodeValues,
const bool verbose = false
const bool isNodeValues
) const = 0;
//- Write vectorField for a single surface to file.
@ -149,8 +147,7 @@ public:
const faceList& faces,
const word& fieldName, // name of field
const Field<vector>& values,
const bool isNodeValues,
const bool verbose = false
const bool isNodeValues
) const = 0;
//- Write sphericalTensorField for a single surface to file.
@ -163,8 +160,7 @@ public:
const faceList& faces,
const word& fieldName, // name of field
const Field<sphericalTensor>& values,
const bool isNodeValues,
const bool verbose = false
const bool isNodeValues
) const = 0;
//- Write symmTensorField for a single surface to file.
@ -177,8 +173,7 @@ public:
const faceList& faces,
const word& fieldName, // name of field
const Field<symmTensor>& values,
const bool isNodeValues,
const bool verbose = false
const bool isNodeValues
) const = 0;
//- Write tensorField for a single surface to file.
@ -191,8 +186,7 @@ public:
const faceList& faces,
const word& fieldName, // name of field
const Field<tensor>& values,
const bool isNodeValues,
const bool verbose = false
const bool isNodeValues
) const = 0;
};

View File

@ -100,8 +100,7 @@ void Foam::vtkSurfaceWriter::write
const faceList& faces,
const word& fieldName,
const Field<Type>& values,
const bool isNodeValues,
const bool verbose
const bool isNodeValues
) const
{
if (!isDir(outputDir))
@ -113,7 +112,7 @@ void Foam::vtkSurfaceWriter::write
ofstream os(filePath, std::ios::binary);
if (verbose)
if (debug)
{
Info<< "Writing field " << fieldName << " to " << filePath << endl;
}
@ -173,8 +172,7 @@ void Foam::vtkSurfaceWriter::write
const fileName& outputDir,
const fileName& surfaceName,
const pointField& points,
const faceList& faces,
const bool verbose
const faceList& faces
) const
{
if (!isDir(outputDir))
@ -185,7 +183,7 @@ void Foam::vtkSurfaceWriter::write
word filePath = outputDir/surfaceName + ".vtk";
ofstream os(filePath, std::ios::binary);
if (verbose)
if (debug)
{
Info<< "Writing geometry to " << filePath << endl;
}

View File

@ -69,8 +69,7 @@ class vtkSurfaceWriter
const faceList& faces,
const word& fieldName,
const Field<Type>& values,
const bool isNodeValues,
const bool verbose
const bool isNodeValues
) const;
@ -98,8 +97,7 @@ public:
const fileName& outputDir,
const fileName& surfaceName,
const pointField& points,
const faceList& faces,
const bool verbose = false
const faceList& faces
) const;
@ -113,8 +111,7 @@ public:
const faceList& faces,
const word& fieldName, // name of field
const Field<scalar>& values,
const bool isNodeValues,
const bool verbose = false
const bool isNodeValues
) const;
//- Write vectorField for a single surface to file.
@ -127,8 +124,7 @@ public:
const faceList& faces,
const word& fieldName, // name of field
const Field<vector>& values,
const bool isNodeValues,
const bool verbose = false
const bool isNodeValues
) const;
//- Write sphericalTensorField for a single surface to file.
@ -141,8 +137,7 @@ public:
const faceList& faces,
const word& fieldName, // name of field
const Field<sphericalTensor>& values,
const bool isNodeValues,
const bool verbose = false
const bool isNodeValues
) const;
//- Write symmTensorField for a single surface to file.
@ -155,8 +150,7 @@ public:
const faceList& faces,
const word& fieldName, // name of field
const Field<symmTensor>& values,
const bool isNodeValues,
const bool verbose = false
const bool isNodeValues
) const;
//- Write tensorField for a single surface to file.
@ -169,8 +163,7 @@ public:
const faceList& faces,
const word& fieldName, // name of field
const Field<tensor>& values,
const bool isNodeValues,
const bool verbose = false
const bool isNodeValues
) const;
};