libMesh
Loading...
Searching...
No Matches
Public Types | Public Member Functions | Public Attributes | Protected Member Functions | Protected Attributes | Private Member Functions | Private Attributes | List of all members
libMesh::GnuPlotIO Class Reference

This class implements writing meshes using GNUplot, designed for use only with 1D meshes. More...

#include <gnuplot_io.h>

Inheritance diagram for libMesh::GnuPlotIO:
[legend]

Public Types

enum  PlottingProperties { GRID_ON = 1 , PNG_OUTPUT = 2 }
 Define enumerations to set plotting properties on construction. More...
 

Public Member Functions

 GnuPlotIO (const MeshBase &, const std::string &=std::string("FE 1D Solution"), int properties=0)
 Constructor.
 
virtual void write (const std::string &) override
 Write the mesh to the specified file.
 
virtual void write_nodal_data (const std::string &, const std::vector< Number > &, const std::vector< std::string > &) override
 This method implements writing a mesh with nodal data to a specified file where the nodal data and variable names are provided.
 
void set_title (std::string title)
 Set title of plot.
 
void use_grid (bool grid)
 Turn grid on or off.
 
void set_png_output (bool png_output)
 Write output to a .png file using gnuplot.
 
virtual void write_equation_systems (const std::string &, const EquationSystems &, const std::set< std::string > *system_names=nullptr)
 This method implements writing a mesh with data to a specified file where the data is taken from the EquationSystems object.
 
virtual void write_discontinuous_equation_systems (const std::string &, const EquationSystems &, const std::set< std::string > *system_names=nullptr)
 This method implements writing a mesh with discontinuous data to a specified file where the data is taken from the EquationSystems object.
 
virtual void write_nodal_data (const std::string &, const NumericVector< Number > &, const std::vector< std::string > &)
 This method may be overridden by "parallel" output formats for writing nodal data.
 
virtual void write_nodal_data (const std::string &, const EquationSystems &, const std::set< std::string > *)
 This method should be overridden by "parallel" output formats for writing nodal data.
 
virtual void write_nodal_data_discontinuous (const std::string &, const std::vector< Number > &, const std::vector< std::string > &)
 This method implements writing a mesh with discontinuous data to a specified file where the nodal data and variables names are provided.
 
unsigned intascii_precision ()
 Return/set the precision to use when writing ASCII files.
 

Public Attributes

std::string axes_limits
 GNUplot automatically adjusts the x and y-axes of 2D plots to "zoom in" on the data.
 

Protected Member Functions

const MeshBasemesh () const
 
virtual bool get_add_sides ()
 

Protected Attributes

const bool _is_parallel_format
 Flag specifying whether this format is parallel-capable.
 
const bool _serial_only_needed_on_proc_0
 Flag specifying whether this format can be written by only serializing the mesh to processor zero.
 

Private Member Functions

void write_solution (const std::string &, const std::vector< Number > *=nullptr, const std::vector< std::string > *=nullptr)
 This method implements writing a mesh with nodal data to a specified file where the nodal data and variable names are optionally provided.
 

Private Attributes

std::string _title
 
bool _grid
 
bool _png_output
 
const MeshBase *const _obj
 A pointer to a constant object.
 
unsigned int _ascii_precision
 Precision to use when writing ASCII files.
 

Detailed Description

This class implements writing meshes using GNUplot, designed for use only with 1D meshes.

Author
David Knezevic
Date
2005

Definition at line 43 of file gnuplot_io.h.

Member Enumeration Documentation

◆ PlottingProperties

Define enumerations to set plotting properties on construction.

Enumerator
GRID_ON 
PNG_OUTPUT 

Definition at line 50 of file gnuplot_io.h.

Constructor & Destructor Documentation

◆ GnuPlotIO()

libMesh::GnuPlotIO::GnuPlotIO ( const MeshBase mesh_in,
const std::string &  title = std::string("FE 1D Solution"),
int  properties = 0 
)
explicit

Constructor.

Takes a reference to a constant mesh object. To set the properties, we input a bitwise OR of the GnuPlotIO::PlottingProperties enumerations, e.g. GnuPlotIO::GRID_ON | GnuPlotIO::PNG_OUTPUT

Definition at line 32 of file gnuplot_io.C.

35 :
36 MeshOutput<MeshBase> (mesh_in),
37 _title(title)
38{
39 _grid = (mesh_properties & GRID_ON);
40 _png_output = (mesh_properties & PNG_OUTPUT);
41}
std::string _title
Definition gnuplot_io.h:119
template class LIBMESH_EXPORT MeshOutput< MeshBase >

References _grid, _png_output, GRID_ON, and PNG_OUTPUT.

Member Function Documentation

◆ ascii_precision()

unsigned int & libMesh::MeshOutput< MeshBase >::ascii_precision ( )
inlineinherited

Return/set the precision to use when writing ASCII files.

By default we use numeric_limits<Real>::max_digits10, which should be enough to write out to ASCII and get the exact same Real back when reading in.

Definition at line 160 of file mesh_output.h.

270{
271 return _ascii_precision;
272}
unsigned int _ascii_precision
Precision to use when writing ASCII files.

◆ get_add_sides()

virtual bool libMesh::MeshOutput< MeshBase >::get_add_sides ( )
inlineprotectedvirtualinherited
Returns
Whether or not added sides are expected to be output, to plot SIDE_DISCONTINUOUS data. Subclasses should override this if they are capable of plotting such data.

Reimplemented in libMesh::ExodusII_IO.

Definition at line 176 of file mesh_output.h.

176{ return false; }

◆ mesh()

const MeshBase & libMesh::MeshOutput< MeshBase >::mesh ( ) const
inlineprotectedinherited
Returns
The object as a read-only reference.

Definition at line 168 of file mesh_output.h.

260{
261 libmesh_assert(_obj);
262 return *_obj;
263}
const MeshBase *const _obj
A pointer to a constant object.
libmesh_assert(ctx)

◆ set_png_output()

void libMesh::GnuPlotIO::set_png_output ( bool  png_output)
inline

Write output to a .png file using gnuplot.

Definition at line 97 of file gnuplot_io.h.

97{ _png_output = png_output; }

References _png_output.

◆ set_title()

void libMesh::GnuPlotIO::set_title ( std::string  title)
inline

Set title of plot.

Definition at line 86 of file gnuplot_io.h.

86{ _title = std::move(title); }

References _title.

◆ use_grid()

void libMesh::GnuPlotIO::use_grid ( bool  grid)
inline

Turn grid on or off.

Definition at line 91 of file gnuplot_io.h.

91{ _grid = grid; }

References _grid.

◆ write()

void libMesh::GnuPlotIO::write ( const std::string &  fname)
overridevirtual

Write the mesh to the specified file.

Implements libMesh::MeshOutput< MeshBase >.

Definition at line 43 of file gnuplot_io.C.

44{
45 this->write_solution(fname);
46}
void write_solution(const std::string &, const std::vector< Number > *=nullptr, const std::vector< std::string > *=nullptr)
This method implements writing a mesh with nodal data to a specified file where the nodal data and va...
Definition gnuplot_io.C:59

References write_solution().

◆ write_discontinuous_equation_systems()

void libMesh::MeshOutput< MeshBase >::write_discontinuous_equation_systems ( const std::string &  fname,
const EquationSystems es,
const std::set< std::string > *  system_names = nullptr 
)
virtualinherited

This method implements writing a mesh with discontinuous data to a specified file where the data is taken from the EquationSystems object.

Definition at line 101 of file mesh_output.C.

92{
93 LOG_SCOPE("write_discontinuous_equation_systems()", "MeshOutput");
94
95 // We may need to gather and/or renumber a DistributedMesh to output
96 // it, making that const qualifier in our constructor a dirty lie
97 MT & my_mesh = const_cast<MT &>(*_obj);
98
99 // If we're asked to write data that's associated with a different
100 // mesh, output files full of garbage are the result.
101 libmesh_assert_equal_to(&es.get_mesh(), _obj);
102
103 // A non-renumbered mesh may not have a contiguous numbering, and
104 // that needs to be fixed before we can build a solution vector.
105 if (my_mesh.max_elem_id() != my_mesh.n_elem() ||
106 my_mesh.max_node_id() != my_mesh.n_nodes())
107 {
108 // If we were allowed to renumber then we should have already
109 // been properly renumbered...
110 libmesh_assert(!my_mesh.allow_renumbering());
111
112 libmesh_do_once(libMesh::out <<
113 "Warning: This MeshOutput subclass only supports meshes which are contiguously renumbered!"
114 << std::endl;);
115
116 my_mesh.allow_renumbering(true);
117
118 my_mesh.renumber_nodes_and_elements();
119
120 // Not sure what good going back to false will do here, the
121 // renumbering horses have already left the barn...
122 my_mesh.allow_renumbering(false);
123 }
124
125 MeshSerializer serialize(const_cast<MT &>(*_obj), !_is_parallel_format, _serial_only_needed_on_proc_0);
126
127 // Build the list of variable names that will be written.
128 std::vector<std::string> names;
129 es.build_variable_names (names, nullptr, system_names);
130
131 if (!_is_parallel_format)
132 {
133 // Build the nodal solution values & get the variable
134 // names from the EquationSystems object
135 std::vector<Number> soln;
136 es.build_discontinuous_solution_vector (soln, system_names,
137 nullptr, false, /* defaults */
138 this->get_add_sides());
139
140 this->write_nodal_data_discontinuous (fname, soln, names);
141 }
142 else // _is_parallel_format
143 {
144 libmesh_not_implemented();
145 }
146}
virtual void write_nodal_data_discontinuous(const std::string &, const std::vector< Number > &, const std::vector< std::string > &)
This method implements writing a mesh with discontinuous data to a specified file where the nodal dat...
OStreamProxy out

◆ write_equation_systems()

void libMesh::MeshOutput< MeshBase >::write_equation_systems ( const std::string &  fname,
const EquationSystems es,
const std::set< std::string > *  system_names = nullptr 
)
virtualinherited

This method implements writing a mesh with data to a specified file where the data is taken from the EquationSystems object.

Reimplemented in libMesh::NameBasedIO, and libMesh::ExodusII_IO.

Definition at line 92 of file mesh_output.C.

34{
35 LOG_SCOPE("write_equation_systems()", "MeshOutput");
36
37 // We may need to gather and/or renumber a DistributedMesh to output
38 // it, making that const qualifier in our constructor a dirty lie
39 MT & my_mesh = const_cast<MT &>(*_obj);
40
41 // If we're asked to write data that's associated with a different
42 // mesh, output files full of garbage are the result.
43 libmesh_assert_equal_to(&es.get_mesh(), _obj);
44
45 // A non-parallel format, non-renumbered mesh may not have a contiguous
46 // numbering, and that needs to be fixed before we can build a solution vector.
47 if (!_is_parallel_format &&
48 (my_mesh.max_elem_id() != my_mesh.n_elem() ||
49 my_mesh.max_node_id() != my_mesh.n_nodes()))
50 {
51 // If we were allowed to renumber then we should have already
52 // been properly renumbered...
53 libmesh_assert(!my_mesh.allow_renumbering());
54
55 libmesh_do_once(libMesh::out <<
56 "Warning: This MeshOutput subclass only supports meshes which are contiguously renumbered!"
57 << std::endl;);
58
59 my_mesh.allow_renumbering(true);
60
61 my_mesh.renumber_nodes_and_elements();
62
63 // Not sure what good going back to false will do here, the
64 // renumbering horses have already left the barn...
65 my_mesh.allow_renumbering(false);
66 }
67
68 if (!_is_parallel_format)
69 {
70 MeshSerializer serialize(const_cast<MT &>(*_obj), !_is_parallel_format, _serial_only_needed_on_proc_0);
71
72 // Build the list of variable names that will be written.
73 std::vector<std::string> names;
74 es.build_variable_names (names, nullptr, system_names);
75
76 // Build the nodal solution values & get the variable
77 // names from the EquationSystems object
78 std::vector<Number> soln;
79 es.build_solution_vector (soln, system_names,
80 this->get_add_sides());
81
82 this->write_nodal_data (fname, soln, names);
83 }
84 else // _is_parallel_format
85 this->write_nodal_data (fname, es, system_names);
86}
virtual void write_nodal_data(const std::string &, const std::vector< Number > &, const std::vector< std::string > &)
This method implements writing a mesh with nodal data to a specified file where the nodal data and va...

◆ write_nodal_data() [1/3]

void libMesh::MeshOutput< MeshBase >::write_nodal_data ( const std::string &  fname,
const EquationSystems es,
const std::set< std::string > *  system_names 
)
virtualinherited

This method should be overridden by "parallel" output formats for writing nodal data.

Instead of getting a localized copy of the nodal solution vector, it directly uses EquationSystems current_local_solution vectors to look up nodal values.

If not implemented, reorders the solutions into a nodal-only NumericVector and calls the above version of this function.

Reimplemented in libMesh::Nemesis_IO.

Definition at line 149 of file mesh_output.C.

165{
166 std::vector<std::string> names;
167 es.build_variable_names (names, nullptr, system_names);
168
169 std::unique_ptr<NumericVector<Number>> parallel_soln =
170 es.build_parallel_solution_vector(system_names);
171
172 this->write_nodal_data (fname, *parallel_soln, names);
173}

◆ write_nodal_data() [2/3]

void libMesh::MeshOutput< MeshBase >::write_nodal_data ( const std::string &  fname,
const NumericVector< Number > &  parallel_soln,
const std::vector< std::string > &  names 
)
virtualinherited

This method may be overridden by "parallel" output formats for writing nodal data.

Instead of getting a localized copy of the nodal solution vector, it is passed a NumericVector of type=PARALLEL which is in node-major order i.e. (u0,v0,w0, u1,v1,w1, u2,v2,w2, u3,v3,w3, ...) and contains n_nodes*n_vars total entries. Then, it is up to the individual I/O class to extract the required solution values from this vector and write them in parallel.

If not implemented, localizes the parallel vector into a std::vector and calls the other version of this function.

Reimplemented in libMesh::Nemesis_IO.

Definition at line 136 of file mesh_output.C.

152{
153 // This is the fallback implementation for parallel I/O formats that
154 // do not yet implement proper writing in parallel, and instead rely
155 // on the full solution vector being available on all processors.
156 std::vector<Number> soln;
157 parallel_soln.localize(soln);
158 this->write_nodal_data(fname, soln, names);
159}
virtual void localize(std::vector< T > &v_local) const =0
Creates a copy of the global vector in the local vector v_local.

◆ write_nodal_data() [3/3]

void libMesh::GnuPlotIO::write_nodal_data ( const std::string &  fname,
const std::vector< Number > &  soln,
const std::vector< std::string > &  names 
)
overridevirtual

This method implements writing a mesh with nodal data to a specified file where the nodal data and variable names are provided.

Reimplemented from libMesh::MeshOutput< MeshBase >.

Definition at line 48 of file gnuplot_io.C.

51{
52 LOG_SCOPE("write_nodal_data()", "GnuPlotIO");
53 this->write_solution(fname, &soln, &names);
54}

References write_solution().

◆ write_nodal_data_discontinuous()

virtual void libMesh::MeshOutput< MeshBase >::write_nodal_data_discontinuous ( const std::string &  ,
const std::vector< Number > &  ,
const std::vector< std::string > &   
)
inlinevirtualinherited

This method implements writing a mesh with discontinuous data to a specified file where the nodal data and variables names are provided.

Reimplemented in libMesh::ExodusII_IO.

Definition at line 118 of file mesh_output.h.

121 { libmesh_not_implemented(); }

◆ write_solution()

void libMesh::GnuPlotIO::write_solution ( const std::string &  fname,
const std::vector< Number > *  soln = nullptr,
const std::vector< std::string > *  names = nullptr 
)
private

This method implements writing a mesh with nodal data to a specified file where the nodal data and variable names are optionally provided.

This will write an ASCII file.

Definition at line 59 of file gnuplot_io.C.

62{
63 // Even when writing on a serialized DistributedMesh, we expect
64 // non-proc-0 help with calls like n_active_elem
65 // libmesh_assert_equal_to (this->mesh().processor_id(), 0);
66
67 const MeshBase & the_mesh = MeshOutput<MeshBase>::mesh();
68
69 dof_id_type n_active_elem = the_mesh.n_active_elem();
70
71 if (this->mesh().processor_id() == 0)
72 {
73 std::stringstream data_stream_name;
74 data_stream_name << fname << "_data";
75 const std::string data_file_name = data_stream_name.str();
76
77 // This class is designed only for use with 1D meshes
78 libmesh_assert_equal_to (the_mesh.mesh_dimension(), 1);
79
80 // Make sure we have a solution to plot
81 libmesh_assert ((names != nullptr) && (soln != nullptr));
82
83 // Create an output stream for script file
84 std::ofstream out_stream(fname.c_str());
85
86 // Make sure it opened correctly
87 if (!out_stream.good())
88 libmesh_file_error(fname.c_str());
89
90 // The number of variables in the equation system
91 const unsigned int n_vars =
92 cast_int<unsigned int>(names->size());
93
94 // Write header to stream
95 out_stream << "# This file was generated by gnuplot_io.C\n"
96 << "# Stores 1D solution data in GNUplot format\n"
97 << "# Execute this by loading gnuplot and typing "
98 << "\"call '" << fname << "'\"\n"
99 << "reset\n"
100 << "set title \"" << _title << "\"\n"
101 << "set xlabel \"x\"\n"
102 << "set xtics nomirror\n";
103
104 // Loop over the elements to find the minimum and maximum x values,
105 // and also to find the element boundaries to write out as xtics
106 // if requested.
107 Real x_min=0., x_max=0.;
108
109 // construct string for xtic positions at element edges
110 std::stringstream xtics_stream;
111
112 unsigned int count = 0;
113
114 for (const auto & el : the_mesh.active_element_ptr_range())
115 {
116 // if el is the left edge of the mesh, print its left node position
117 if (el->neighbor_ptr(0) == nullptr)
118 {
119 x_min = (el->point(0))(0);
120 xtics_stream << "\"\" " << x_min << ", \\\n";
121 }
122 if (el->neighbor_ptr(1) == nullptr)
123 {
124 x_max = (el->point(1))(0);
125 }
126 xtics_stream << "\"\" " << (el->point(1))(0);
127
128 if (count+1 != n_active_elem)
129 {
130 xtics_stream << ", \\\n";
131 }
132 count++;
133 }
134
135 out_stream << "set xrange [" << x_min << ":" << x_max << "]\n";
136
137 if (_grid)
138 out_stream << "set x2tics (" << xtics_stream.str() << ")\nset grid noxtics noytics x2tics\n";
139
140 if (_png_output)
141 {
142 out_stream << "set terminal png\n";
143 out_stream << "set output \"" << fname << ".png\"\n";
144 }
145
146 out_stream << "plot "
147 << axes_limits
148 << " \"" << data_file_name << "\" using 1:2 title \"" << (*names)[0]
149 << "\" with lines";
150 if (n_vars > 1)
151 {
152 for (unsigned int i=1; i<n_vars; i++)
153 {
154 out_stream << ", \\\n\"" << data_file_name << "\" using 1:" << i+2
155 << " title \"" << (*names)[i] << "\" with lines";
156 }
157 }
158
159 out_stream.close();
160
161
162 // Create an output stream for data file
163 std::ofstream data(data_file_name.c_str());
164
165 libmesh_error_msg_if(!data.good(), "ERROR: opening output data file " << data_file_name);
166
167 // get ordered nodal data using a map
168 std::map<Real, std::vector<Number>> node_map;
169
170 for (const auto & elem : the_mesh.active_element_ptr_range())
171 for (const auto & node : elem->node_ref_range())
172 {
173 dof_id_type global_id = node.id();
174
175 std::vector<Number> values;
176 for (unsigned int c=0; c<n_vars; c++)
177 values.push_back((*soln)[global_id*n_vars + c]);
178
179 node_map[the_mesh.point(global_id)(0)] = values;
180 }
181
182 for (const auto & pr : node_map)
183 {
184 const std::vector<Number> & values = pr.second;
185
186 data << pr.first << "\t";
187
188 for (const auto & val : values)
189 data << val << "\t";
190
191 data << "\n";
192 }
193
194 data.close();
195 }
196}
unsigned int n_vars
std::string axes_limits
GNUplot automatically adjusts the x and y-axes of 2D plots to "zoom in" on the data.
Definition gnuplot_io.h:107
const MT & mesh() const
uint8_t dof_id_type
Definition id_types.h:67
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real

References _grid, _png_output, _title, axes_limits, libMesh::libmesh_assert(), libMesh::MeshOutput< MeshBase >::mesh(), libMesh::MeshOutput< MT >::mesh(), libMesh::MeshBase::mesh_dimension(), libMesh::MeshBase::n_active_elem(), n_vars, libMesh::MeshBase::point(), and libMesh::Real.

Referenced by write(), and write_nodal_data().

Member Data Documentation

◆ _ascii_precision

unsigned int libMesh::MeshOutput< MeshBase >::_ascii_precision
privateinherited

Precision to use when writing ASCII files.

Definition at line 207 of file mesh_output.h.

◆ _grid

bool libMesh::GnuPlotIO::_grid
private

Definition at line 121 of file gnuplot_io.h.

Referenced by GnuPlotIO(), use_grid(), and write_solution().

◆ _is_parallel_format

const bool libMesh::MeshOutput< MeshBase >::_is_parallel_format
protectedinherited

Flag specifying whether this format is parallel-capable.

If this is false (default) I/O is only permitted when the mesh has been serialized.

Definition at line 184 of file mesh_output.h.

◆ _obj

const MeshBase * const libMesh::MeshOutput< MeshBase >::_obj
privateinherited

A pointer to a constant object.

This allows us to write the object to file.

Definition at line 202 of file mesh_output.h.

◆ _png_output

bool libMesh::GnuPlotIO::_png_output
private

Definition at line 122 of file gnuplot_io.h.

Referenced by GnuPlotIO(), set_png_output(), and write_solution().

◆ _serial_only_needed_on_proc_0

const bool libMesh::MeshOutput< MeshBase >::_serial_only_needed_on_proc_0
protectedinherited

Flag specifying whether this format can be written by only serializing the mesh to processor zero.

If this is false (default) the mesh will be serialized to all processors

Definition at line 193 of file mesh_output.h.

◆ _title

std::string libMesh::GnuPlotIO::_title
private

Definition at line 119 of file gnuplot_io.h.

Referenced by set_title(), and write_solution().

◆ axes_limits

std::string libMesh::GnuPlotIO::axes_limits

GNUplot automatically adjusts the x and y-axes of 2D plots to "zoom in" on the data.

You can set this string to force GNUplot to maintain a fixed set of axes. Example: axes_limits = "[0:1] [0:1]" would force x and y to be plotted on the range 0<=x<=1 and 0<=y<=1 regardless of where the data lie.

Definition at line 107 of file gnuplot_io.h.

Referenced by write_solution().


The documentation for this class was generated from the following files: