16#ifndef dealii_base_parsed_convergence_table_h
17#define dealii_base_parsed_convergence_table_h
177 const std::vector<std::set<VectorTools::NormType>> &list_of_error_norms = {
246 const std::vector<std::set<VectorTools::NormType>> &list_of_error_norms,
274 template <
int dim,
int spacedim,
typename VectorType>
277 const VectorType & solution,
284 template <
int dim,
int spacedim,
typename VectorType>
288 const VectorType & solution,
360 const std::function<
double()> &custom_function,
361 const bool compute_rate =
true);
366 template <
int dim,
int spacedim,
typename VectorType>
376 template <
int dim,
int spacedim,
typename VectorType>
426 std::map<std::string, std::pair<std::function<double()>,
bool>>
482template <
int dim,
int spacedim,
typename VectorType>
485 const VectorType & solution1,
486 const VectorType & solution2,
491 VectorType solution(solution1);
492 solution -= solution2;
502template <
int dim,
int spacedim,
typename VectorType>
506 const VectorType & solution1,
507 const VectorType & solution2,
512 VectorType solution(solution1);
513 solution -= solution2;
524template <
int dim,
int spacedim,
typename VectorType>
527 const VectorType & solution,
540template <
int dim,
int spacedim,
typename VectorType>
544 const VectorType & solution,
557 const unsigned int n_dofs = dh.
n_dofs();
566 else if (col ==
"dofs")
575 zero_components(n_components,
580 weight_components(n_components,
583 if (weight !=
nullptr)
587 for (
auto &f : weight_components)
588 f = [&](const
Point<spacedim> &p) {
return weight->
value(p); };
593 for (
unsigned int i = 0; i < n_components; ++i)
595 return weight->
value(p, i);
602 std::map<VectorTools::NormType, double> errors;
611 auto components_expr = zero_components;
612 for (
unsigned int j = 0; j < n_components; ++j)
614 components_expr[j] = weight_components[j];
624 for (
const auto &norm : norms)
626 difference_per_cell = 0;
656 const double custom_error = extra_col.second.first();
658 std::string name = extra_col.first;
const FiniteElement< dim, spacedim > & get_fe(const types::fe_index index=0) const
const Triangulation< dim, spacedim > & get_triangulation() const
types::global_dof_index n_dofs() const
const unsigned int degree
unsigned int n_components() const
const unsigned int n_components
virtual RangeNumberType value(const Point< dim > &p, const unsigned int component=0) const
Abstract base class for mapping classes.
The ParsedConvergenceTable class.
void add_extra_column(const std::string &column_name, const std::function< double()> &custom_function, const bool compute_rate=true)
void difference(const Mapping< dim, spacedim > &mapping, const DoFHandler< dim, spacedim > &, const VectorType &, const VectorType &, const Function< spacedim > *weight=nullptr)
void difference(const DoFHandler< dim, spacedim > &, const VectorType &, const VectorType &, const Function< spacedim > *weight=nullptr)
void add_parameters(ParameterHandler &prm)
void error_from_exact(const Mapping< dim, spacedim > &mapping, const DoFHandler< dim, spacedim > &vspace, const VectorType &solution, const Function< spacedim > &exact, const Function< spacedim > *weight=nullptr)
void error_from_exact(const DoFHandler< dim, spacedim > &vspace, const VectorType &solution, const Function< spacedim > &exact, const Function< spacedim > *weight=nullptr)
std::string error_file_name
void prepare_table_for_output()
const std::vector< std::string > component_names
std::set< std::string > extra_columns
const std::vector< std::string > unique_component_names
std::vector< std::set< VectorTools::NormType > > norms_per_unique_component
const std::vector< ComponentMask > unique_component_masks
std::map< std::string, std::pair< std::function< double()>, bool > > extra_column_functions
void set_tex_format(const std::string &key, const std::string &format="c")
void add_value(const std::string &key, const T value)
void set_tex_caption(const std::string &key, const std::string &tex_caption)
void set_scientific(const std::string &key, const bool scientific)
void set_precision(const std::string &key, const unsigned int precision)
virtual types::global_cell_index n_global_active_cells() const
#define DEAL_II_NAMESPACE_OPEN
#define DEAL_II_NAMESPACE_CLOSE
#define AssertDimension(dim1, dim2)
static ::ExceptionBase & ExcDimensionMismatch(std::size_t arg1, std::size_t arg2)
#define AssertThrow(cond, exc)
const Mapping< dim, spacedim > & get_default_linear_mapping(const Triangulation< dim, spacedim > &triangulation)
double norm(const FEValuesBase< dim > &fe, const ArrayView< const std::vector< Tensor< 1, dim > > > &Du)
unsigned int n_active_cells(const internal::TriangulationImplementation::NumberCache< 1 > &c)