Reference documentation for deal.II version 9.1.0-pre
data_out_rotation.h
1 // ---------------------------------------------------------------------
2 //
3 // Copyright (C) 2000 - 2018 by the deal.II authors
4 //
5 // This file is part of the deal.II library.
6 //
7 // The deal.II library is free software; you can use it, redistribute
8 // it, and/or modify it under the terms of the GNU Lesser General
9 // Public License as published by the Free Software Foundation; either
10 // version 2.1 of the License, or (at your option) any later version.
11 // The full text of the license can be found in the file LICENSE.md at
12 // the top level directory of deal.II.
13 //
14 // ---------------------------------------------------------------------
15 
16 #ifndef dealii_data_out_rotation_h
17 #define dealii_data_out_rotation_h
18 
19 
20 #include <deal.II/base/config.h>
21 
22 #include <deal.II/numerics/data_out_dof_data.h>
23 
24 #include <string>
25 #include <vector>
26 
27 DEAL_II_NAMESPACE_OPEN
28 
29 
30 namespace internal
31 {
32  namespace DataOutRotationImplementation
33  {
39  template <int dim, int spacedim>
40  struct ParallelData
42  {
43  ParallelData(const unsigned int n_datasets,
44  const unsigned int n_subdivisions,
45  const unsigned int n_patches_per_circle,
46  const std::vector<unsigned int> &n_postprocessor_outputs,
47  const Mapping<dim, spacedim> & mapping,
48  const std::vector<
49  std::shared_ptr<::hp::FECollection<dim, spacedim>>>
50  & finite_elements,
51  const UpdateFlags update_flags);
52 
53  const unsigned int n_patches_per_circle;
54 
55  std::vector<Point<spacedim>> patch_evaluation_points;
56  };
57  } // namespace DataOutRotationImplementation
58 } // namespace internal
59 
60 
61 
122 template <int dim, typename DoFHandlerType = DoFHandler<dim>>
124  : public DataOut_DoFData<DoFHandlerType, DoFHandlerType::dimension + 1>
125 {
126 public:
131  static const unsigned int dimension = DoFHandlerType::dimension;
132 
137  static const unsigned int space_dimension = DoFHandlerType::space_dimension;
138 
143  using cell_iterator =
145 
163  virtual void
164  build_patches(const unsigned int n_patches_per_circle,
165  const unsigned int n_subdivisions = 0);
166 
173  virtual cell_iterator
174  first_cell();
175 
187  virtual cell_iterator
188  next_cell(const cell_iterator &cell);
189 
193  DeclException1(ExcRadialVariableHasNegativeValues,
194  double,
195  << "You are attempting to use this class on a triangulation "
196  "in which some vertices have a negative radial coordinate "
197  "value of "
198  << arg1
199  << ". If you rotate such a triangulation around an "
200  "axis, you will get (dim+1)-dimensional meshes "
201  "that are not likely what you hoped to see.");
202 
203 private:
209  void
210  build_one_patch(
211  const cell_iterator *cell,
213  space_dimension>
214  &data,
216  &my_patches);
217 };
218 
219 
220 DEAL_II_NAMESPACE_CLOSE
221 
222 #endif
typename Triangulation< DoFHandlerType::dimension, DoFHandlerType::space_dimension >::cell_iterator cell_iterator
#define DeclException1(Exception1, type1, outsequence)
Definition: exceptions.h:408
UpdateFlags
Abstract base class for mapping classes.
Definition: dof_tools.h:57
typename DataOut_DoFData< DoFHandlerType, dimension+1 >::cell_iterator cell_iterator