Reference documentation for deal.II version 9.0.0
|
#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 |
Public Member Functions inherited from DataOutBase::OutputFlagsBase< GnuplotFlags > | |
void | parse_parameters (const ParameterHandler &prm) |
std::size_t | memory_consumption () const |
Static Public Member Functions | |
static ::ExceptionBase & | ExcNotEnoughSpaceDimensionLabels () |
Static Public Member Functions inherited from DataOutBase::OutputFlagsBase< GnuplotFlags > | |
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 668 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 1834 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 1843 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 1850 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 696 of file data_out_base.h.