mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-12-28 03:37:59 +00:00
ENH: initial revamp of faMesh to improve modularity (#2084)
- improved separation of patch creation that is also parallel-aware, which now allows creation in parallel - memory-safe use of PtrList for adding patches, with a more generalized faPatchData helper - use uindirectPrimitivePatch instead of indirectPrimitivePatch for internal patch handling. - align boundary methods with polyMesh equivalents - system/faMeshDefinition instead of constant/faMesh/faMeshDefinition as per blockMesh convention. Easier to manage definitions, easier for cleanup. - drop inheritence from GeoMesh.
This commit is contained in:
@ -48,7 +48,7 @@ License
|
||||
#include "turbulentTransportModel.H"
|
||||
#include "demandDrivenData.H"
|
||||
#include "unitConversion.H"
|
||||
#include "foamVtkIndPatchWriter.H"
|
||||
#include "foamVtkUIndPatchWriter.H"
|
||||
|
||||
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
|
||||
|
||||
@ -2270,7 +2270,7 @@ bool Foam::interfaceTrackingFvMesh::update()
|
||||
|
||||
void Foam::interfaceTrackingFvMesh::writeVTK() const
|
||||
{
|
||||
vtk::indirectPatchWriter writer
|
||||
vtk::uindirectPatchWriter writer
|
||||
(
|
||||
aMesh().patch(),
|
||||
vtk::formatType::LEGACY_ASCII,
|
||||
|
||||
Reference in New Issue
Block a user