gnuplot_io.h
Go to the documentation of this file.
1 // The libMesh Finite Element Library.
2 // Copyright (C) 2002-2018 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_GNUPLOT_IO_H
21 #define LIBMESH_GNUPLOT_IO_H
22 
23 // Local includes
24 #include "libmesh/mesh_output.h"
25 
26 // C++ includes
27 #include <cstddef>
28 
29 
30 namespace libMesh
31 {
32 
33 // forward declaration
34 class MeshBase;
35 
43 class GnuPlotIO : public MeshOutput<MeshBase>
44 {
45 public:
46 
51  PNG_OUTPUT = 2};
52 
59  explicit
60  GnuPlotIO (const MeshBase &,
61  const std::string & = std::string("FE 1D Solution"),
62  int properties=0);
63 
67  virtual void write(const std::string &) override;
68 
74 
79  virtual void write_nodal_data (const std::string &,
80  const std::vector<Number> &,
81  const std::vector<std::string> &) override;
82 
86  void set_title(const std::string & title) { _title = title; }
87 
91  void use_grid(bool grid) { _grid = grid; }
92 
93 
97  void set_png_output(bool png_output) { _png_output = png_output; }
98 
107  std::string axes_limits;
108 
109 private:
115  void write_solution (const std::string &,
116  const std::vector<Number> * = nullptr,
117  const std::vector<std::string> * = nullptr);
118 
119  std::string _title;
120 
121  bool _grid;
123 };
124 
125 } // namespace libMesh
126 
127 
128 #endif // LIBMESH_GNUPLOT_IO_H
std::string _title
Definition: gnuplot_io.h:119
void use_grid(bool grid)
Definition: gnuplot_io.h:91
void set_title(const std::string &title)
Definition: gnuplot_io.h:86
virtual void write(const std::string &) override
Definition: gnuplot_io.C:43
Base class for Mesh.
Definition: mesh_base.h:77
virtual void write_nodal_data(const std::string &, const std::vector< Number > &, const std::vector< std::string > &) override
Definition: gnuplot_io.C:48
std::string axes_limits
Definition: gnuplot_io.h:107
void write_solution(const std::string &, const std::vector< Number > *=nullptr, const std::vector< std::string > *=nullptr)
Definition: gnuplot_io.C:59
GnuPlotIO(const MeshBase &, const std::string &=std::string("FE 1D Solution"), int properties=0)
Definition: gnuplot_io.C:32
void set_png_output(bool png_output)
Definition: gnuplot_io.h:97