libMesh
Loading...
Searching...
No Matches
mesh_serializer.C
Go to the documentation of this file.
1// The libMesh Finite Element Library.
2// Copyright (C) 2002-2026 Benjamin S. Kirk, John W. Peterson, Roy H. Stogner
3
4// This library is free software; you can redistribute it and/or
5// modify it under the terms of the GNU Lesser General Public
6// License as published by the Free Software Foundation; either
7// version 2.1 of the License, or (at your option) any later version.
8
9// This library is distributed in the hope that it will be useful,
10// but WITHOUT ANY WARRANTY; without even the implied warranty of
11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12// Lesser General Public License for more details.
13
14// You should have received a copy of the GNU Lesser General Public
15// License along with this library; if not, write to the Free Software
16// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17
18
19// Local includes
20#include "libmesh/mesh_serializer.h"
21#include "libmesh/mesh_base.h"
22#include "libmesh/parallel_only.h"
23
24namespace libMesh
25{
26
27MeshSerializer::MeshSerializer(MeshBase & mesh, bool need_serial, bool serial_only_needed_on_proc_0) :
28 _mesh(mesh),
29 reparallelize(false),
30 resume_allow_remote_element_removal(false)
31{
32 libmesh_parallel_only(mesh.comm());
33 if (need_serial && !_mesh.is_serial() && !serial_only_needed_on_proc_0) {
34 reparallelize = true;
36 }
37 else if (need_serial && !_mesh.is_serial() && serial_only_needed_on_proc_0) {
38 // Note: NOT reparallelizing on purpose.
39 // Just waste a bit of space on processor 0 to speed things up
41 }
42
44 {
47 }
48}
49
50
51
60
61} // namespace libMesh
This is the MeshBase class.
Definition mesh_base.h:81
void allow_remote_element_removal(bool allow)
If false is passed in then this mesh will no longer have remote elements deleted when being prepared ...
Definition mesh_base.h:1378
virtual bool is_serial() const
Definition mesh_base.h:357
virtual void allgather()
Gathers all elements and nodes of the mesh onto every processor.
Definition mesh_base.h:386
virtual void delete_remote_elements()
When supported, deletes all nonlocal elements of the mesh except for "ghosts" which touch a local ele...
Definition mesh_base.h:399
virtual void gather_to_zero()
Gathers all elements and nodes of the mesh onto processor zero.
Definition mesh_base.h:392
MeshSerializer(MeshBase &mesh, bool need_serial=true, bool serial_only_needed_on_proc_0=false)
MeshBase & mesh
The libMesh namespace provides an interface to certain functionality in the library.