mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
Updated the writePatchField function.
This commit is contained in:
@ -405,9 +405,9 @@ void writePatchField
|
||||
{
|
||||
const Time& runTime = eMesh.mesh().time();
|
||||
|
||||
const List<faceSets>& boundaryFaceSets = eMesh.boundaryFaceSets;
|
||||
const HashTable<labelList>& allPatchNames = eMesh.allPatchNames;
|
||||
const HashTable<label>& patchIndices = eMesh.patchIndices;
|
||||
const List<faceSets>& boundaryFaceSets = eMesh.boundaryFaceSets();
|
||||
const HashTable<labelList>& allPatchNames = eMesh.allPatchNames();
|
||||
const HashTable<label>& patchIndices = eMesh.patchIndices();
|
||||
const HashTable<ensightMesh::nFacePrimitives>&
|
||||
nPatchPrims = eMesh.nPatchPrims();
|
||||
|
||||
|
||||
@ -88,9 +88,6 @@ class ensightMesh
|
||||
|
||||
List<faceSets> boundaryFaceSets_;
|
||||
|
||||
|
||||
|
||||
|
||||
HashTable<labelList> allPatchNames_;
|
||||
|
||||
HashTable<label> patchIndices_;
|
||||
@ -246,9 +243,8 @@ public:
|
||||
ensightMesh(const fvMesh&, const argList& args, const bool binary);
|
||||
|
||||
|
||||
// Destructor
|
||||
|
||||
~ensightMesh();
|
||||
//- Destructor
|
||||
~ensightMesh();
|
||||
|
||||
|
||||
// Member Functions
|
||||
|
||||
Reference in New Issue
Block a user