libMesh
nemesis_io.h
Go to the documentation of this file.
1 // The libMesh Finite Element Library.
2 // Copyright (C) 2002-2024 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 
20 #ifndef LIBMESH_NEMESIS_IO_H
21 #define LIBMESH_NEMESIS_IO_H
22 
23 
24 // Local includes
25 #include "libmesh/libmesh_common.h"
26 #include "libmesh/mesh_input.h"
27 #include "libmesh/mesh_output.h"
28 #include "libmesh/parallel_object.h"
29 
30 // C++ includes
31 
32 namespace libMesh
33 {
34 
35 // Forward declarations
36 class Nemesis_IO_Helper;
37 class System;
38 
51 class Nemesis_IO : public MeshInput<MeshBase>,
52  public MeshOutput<MeshBase>,
53  public ParallelObject
54 {
55 
56 public:
57 
62  explicit
63  Nemesis_IO (MeshBase & mesh, bool single_precision=false);
64 
68  virtual ~Nemesis_IO ();
69 
75  virtual void read (const std::string & base_filename) override;
76 
80  virtual void write (const std::string & base_filename) override;
81 
85  void write_timestep (const std::string & fname,
86  const EquationSystems & es,
87  const int timestep,
88  const Real time);
89 
99  void set_output_variables(const std::vector<std::string> & output_variables,
100  bool allow_empty = true);
101 
105  virtual void write_nodal_data (const std::string & fname,
106  const std::vector<Number> & soln,
107  const std::vector<std::string> & names) override;
108 
112  virtual void write_nodal_data (const std::string & fname,
113  const EquationSystems & es,
114  const std::set<std::string> * system_names) override;
115 
119  virtual void write_nodal_data (const std::string & fname,
120  const NumericVector<Number> & parallel_soln,
121  const std::vector<std::string> & names) override;
122 
130  void write_element_data (const EquationSystems & es);
131 
135  void verbose (bool set_verbosity);
136 
142  void write_complex_magnitude (bool val);
143 
147  void write_global_data (const std::vector<Number> &,
148  const std::vector<std::string> &);
149 
153  void write_information_records (const std::vector<std::string> &);
154 
160  void append(bool val);
161 
165  const std::vector<std::string> & get_nodal_var_names();
166 
171  void copy_nodal_solution(System & system,
172  std::string system_var_name,
173  std::string exodus_var_name,
174  unsigned int timestep=1);
175 
180  void copy_elemental_solution(System & system,
181  std::string system_var_name,
182  std::string exodus_var_name,
183  unsigned int timestep=1);
184 
188  void copy_scalar_solution(System & system,
189  std::vector<std::string> system_var_names,
190  std::vector<std::string> exodus_var_names,
191  unsigned int timestep=1);
192 
200  void read_global_variable(std::vector<std::string> global_var_names,
201  unsigned int timestep,
202  std::vector<Real> & global_values);
203 
210  void set_hdf5_writing(bool write_hdf5);
211 
212 private:
213 
214  /*
215  * A helper function for use in debug and devel modes, for asserting
216  * that we get symmetric communication maps from a file we read
217  * and/or that we're writing them out in a symmetric fashion
218  * ourselves.
219  */
220  void assert_symmetric_cmaps();
221 
222 #if defined(LIBMESH_HAVE_EXODUS_API) && defined(LIBMESH_HAVE_NEMESIS_API)
223  std::unique_ptr<Nemesis_IO_Helper> nemhelper;
224 
230 #endif
231 
235  bool _verbose;
236 
241  bool _append;
242 
248  void prepare_to_write_nodal_data (const std::string & fname,
249  const std::vector<std::string> & names);
250 
255  std::vector<std::string> _output_variables;
256 
263 };
264 
265 
266 } // namespace libMesh
267 
268 
269 #endif // LIBMESH_NEMESIS_IO_H
This is the EquationSystems class.
virtual void read(const std::string &base_filename) override
Implements reading the mesh from several different files.
Definition: nemesis_io.C:198
void copy_nodal_solution(System &system, std::string system_var_name, std::string exodus_var_name, unsigned int timestep=1)
If we read in a nodal solution while reading in a mesh, we can attempt to copy that nodal solution in...
Definition: nemesis_io.C:1670
void write_information_records(const std::vector< std::string > &)
Write out information records.
Definition: nemesis_io.C:1652
void read_global_variable(std::vector< std::string > global_var_names, unsigned int timestep, std::vector< Real > &global_values)
Given a vector of global variables and a time step, returns the values of the global variable at the ...
Definition: nemesis_io.C:1786
This class defines an abstract interface for Mesh output.
Definition: mesh_output.h:53
The libMesh namespace provides an interface to certain functionality in the library.
bool _verbose
Controls whether extra debugging information is printed to the screen or not.
Definition: nemesis_io.h:235
This is the MeshBase class.
Definition: mesh_base.h:74
virtual ~Nemesis_IO()
Destructor.
void write_timestep(const std::string &fname, const EquationSystems &es, const int timestep, const Real time)
Write one timestep&#39;s worth of the solution.
Definition: nemesis_io.C:1274
void prepare_to_write_nodal_data(const std::string &fname, const std::vector< std::string > &names)
Helper function containing code shared between the two different versions of write_nodal_data which t...
Definition: nemesis_io.C:1301
This class defines an abstract interface for Mesh input.
Definition: mesh_base.h:56
The Nemesis_IO class implements reading parallel meshes in the Nemesis file format from Sandia Nation...
Definition: nemesis_io.h:51
Manages consistently variables, degrees of freedom, and coefficient vectors.
Definition: system.h:96
void write_element_data(const EquationSystems &es)
Write out element solution in parallel, without localizing the solution vector.
Definition: nemesis_io.C:1450
bool _append
Default false.
Definition: nemesis_io.h:241
const std::vector< std::string > & get_nodal_var_names()
Return list of the nodal variable names.
Definition: nemesis_io.C:1662
void copy_scalar_solution(System &system, std::vector< std::string > system_var_names, std::vector< std::string > exodus_var_names, unsigned int timestep=1)
Copy global variables into scalar variables of a System object.
Definition: nemesis_io.C:1752
bool _allow_empty_variables
If true, _output_variables is allowed to remain empty.
Definition: nemesis_io.h:262
An object whose state is distributed along a set of processors.
virtual void write_nodal_data(const std::string &fname, const std::vector< Number > &soln, const std::vector< std::string > &names) override
Output a nodal solution from data in soln.
Definition: nemesis_io.C:1555
void assert_symmetric_cmaps()
Definition: nemesis_io.C:161
int _timestep
Keeps track of the current timestep index being written.
Definition: nemesis_io.h:229
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
void write_global_data(const std::vector< Number > &, const std::vector< std::string > &)
Write out global variables.
Definition: nemesis_io.C:1582
void copy_elemental_solution(System &system, std::string system_var_name, std::string exodus_var_name, unsigned int timestep=1)
If we read in a elemental solution while reading in a mesh, we can attempt to copy that elemental sol...
Definition: nemesis_io.C:1703
virtual void write(const std::string &base_filename) override
This method implements writing a mesh to a specified file.
Definition: nemesis_io.C:1212
void append(bool val)
If true, this flag will cause the Nemesis_IO object to attempt to open an existing file for writing...
Definition: nemesis_io.C:145
std::unique_ptr< Nemesis_IO_Helper > nemhelper
Definition: nemesis_io.h:223
void set_output_variables(const std::vector< std::string > &output_variables, bool allow_empty=true)
Specify the list of variables which should be included in the output (whitelist) If empty...
Definition: nemesis_io.C:152
Nemesis_IO(MeshBase &mesh, bool single_precision=false)
Constructor.
Definition: nemesis_io.C:94
void set_hdf5_writing(bool write_hdf5)
Set to true (the default) to write files in an HDF5-based file format (when HDF5 is available)...
Definition: nemesis_io.C:1816
void verbose(bool set_verbosity)
Set the flag indicating if we should be verbose.
Definition: nemesis_io.C:122
void write_complex_magnitude(bool val)
Set the flag indicating whether the complex modulus should be written when complex numbers are enable...
Definition: nemesis_io.C:135
std::vector< std::string > _output_variables
The names of the variables to be output.
Definition: nemesis_io.h:255