![]() |
Reference documentation for deal.II version 9.1.1
|
#include <deal.II/base/data_out_base.h>
Public Member Functions | |
GnuplotFlags () | |
GnuplotFlags (const std::vector< std::string > &space_dimension_labels) | |
std::size_t | memory_consumption () const |
![]() | |
void | parse_parameters (const ParameterHandler &prm) |
std::size_t | memory_consumption () const |
Static Public Member Functions | |
static ::ExceptionBase & | ExcNotEnoughSpaceDimensionLabels () |
![]() | |
static void | declare_parameters (ParameterHandler &prm) |
Public Attributes | |
std::vector< std::string > | space_dimension_labels |
Flags controlling the details of output in Gnuplot format.
Definition at line 691 of file data_out_base.h.
DataOutBase::GnuplotFlags::GnuplotFlags | ( | ) |
Default constructor. Sets up the dimension labels with the default values of "x"
, "y"
, and "z"
.
Definition at line 1929 of file data_out_base.cc.
DataOutBase::GnuplotFlags::GnuplotFlags | ( | const std::vector< std::string > & | space_dimension_labels | ) |
Constructor which sets up non-default values for the dimension labels.
Definition at line 1938 of file data_out_base.cc.
std::size_t DataOutBase::GnuplotFlags::memory_consumption | ( | ) | const |
Return an estimate for the memory consumption, in bytes, of this object.
Definition at line 1945 of file data_out_base.cc.
std::vector<std::string> DataOutBase::GnuplotFlags::space_dimension_labels |
Labels to use in each spatial dimension. These default to "x"
, "y"
, and "z"
. Labels are printed to the Gnuplot file surrounded by angle brackets: For example, if the space dimension is 2 and the labels are "x"
and "t"
, then the relevant line will start with
* # <x> <t> *
Any extra labels will be ignored.
If you specify these labels yourself then there should be at least spacedim
labels, where spacedim
is the spatial dimension of the output data.
Definition at line 719 of file data_out_base.h.