Reference documentation for deal.II version 9.3.3
\(\newcommand{\dealvcentcolon}{\mathrel{\mathop{:}}}\) \(\newcommand{\dealcoloneq}{\dealvcentcolon\mathrel{\mkern-1.2mu}=}\) \(\newcommand{\jump}[1]{\left[\!\left[ #1 \right]\!\right]}\) \(\newcommand{\average}[1]{\left\{\!\left\{ #1 \right\}\!\right\}}\)
data_out_rotation.h
Go to the documentation of this file.
1// ---------------------------------------------------------------------
2//
3// Copyright (C) 2000 - 2020 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
23
24#include <string>
25#include <vector>
26
28
29
30namespace internal
31{
32 namespace DataOutRotationImplementation
33 {
39 template <int dim, int spacedim>
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>>>
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
121template <int dim, typename DoFHandlerType = DoFHandler<dim>>
123 : public DataOut_DoFData<DoFHandlerType, DoFHandlerType::dimension + 1>
124{
125public:
130 static const unsigned int dimension = DoFHandlerType::dimension;
131
136 static const unsigned int space_dimension = DoFHandlerType::space_dimension;
137
144
162 virtual void
163 build_patches(const unsigned int n_patches_per_circle,
164 const unsigned int n_subdivisions = 0);
165
172 virtual cell_iterator
173 first_cell();
174
186 virtual cell_iterator
187 next_cell(const cell_iterator &cell);
188
193 double,
194 << "You are attempting to use this class on a triangulation "
195 "in which some vertices have a negative radial coordinate "
196 "value of "
197 << arg1
198 << ". If you rotate such a triangulation around an "
199 "axis, you will get (dim+1)-dimensional meshes "
200 "that are not likely what you hoped to see.");
201
202private:
208 void
210 const cell_iterator *cell,
213 &data,
215 &my_patches);
216};
217
218namespace Legacy
219{
226 template <int dim, typename DoFHandlerType = DoFHandler<dim>>
228} // namespace Legacy
229
230
232
233#endif
void build_one_patch(const cell_iterator *cell, internal::DataOutRotationImplementation::ParallelData< dimension, space_dimension > &data, std::vector< DataOutBase::Patch< dimension+1, space_dimension+1 > > &my_patches)
virtual cell_iterator next_cell(const cell_iterator &cell)
static const unsigned int space_dimension
virtual void build_patches(const unsigned int n_patches_per_circle, const unsigned int n_subdivisions=0)
static const unsigned int dimension
virtual cell_iterator first_cell()
typename DataOut_DoFData< DoFHandlerType, dimension+1 >::cell_iterator cell_iterator
typename Triangulation< DoFHandlerType::dimension, DoFHandlerType::space_dimension >::cell_iterator cell_iterator
#define DEAL_II_NAMESPACE_OPEN
Definition: config.h:402
#define DEAL_II_NAMESPACE_CLOSE
Definition: config.h:403
UpdateFlags
static ::ExceptionBase & ExcRadialVariableHasNegativeValues(double arg1)
#define DeclException1(Exception1, type1, outsequence)
Definition: exceptions.h:515
const std::vector< std::shared_ptr<::hp::FECollection< dim, spacedim > > > finite_elements
std::vector< Point< spacedim > > patch_evaluation_points
ParallelData(const unsigned int n_datasets, const unsigned int n_subdivisions, const unsigned int n_patches_per_circle, const std::vector< unsigned int > &n_postprocessor_outputs, const Mapping< dim, spacedim > &mapping, const std::vector< std::shared_ptr<::hp::FECollection< dim, spacedim > > > &finite_elements, const UpdateFlags update_flags)