Reference documentation for deal.II version 9.1.0-pre
dof_accessor_set.cc
1 // ---------------------------------------------------------------------
2 //
3 // Copyright (C) 1998 - 2017 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 #include <deal.II/dofs/dof_accessor.h>
17 #include <deal.II/dofs/dof_handler.h>
18 #include <deal.II/dofs/dof_levels.h>
19 
20 #include <deal.II/fe/fe.h>
21 
22 #include <deal.II/grid/tria_iterator.h>
23 #include <deal.II/grid/tria_iterator.templates.h>
24 
25 #include <deal.II/hp/dof_handler.h>
26 
27 #include <deal.II/lac/block_vector.h>
28 #include <deal.II/lac/la_parallel_block_vector.h>
29 #include <deal.II/lac/la_parallel_vector.h>
30 #include <deal.II/lac/la_vector.h>
31 #include <deal.II/lac/petsc_block_vector.h>
32 #include <deal.II/lac/petsc_vector.h>
33 #include <deal.II/lac/sparse_matrix.h>
34 #include <deal.II/lac/trilinos_parallel_block_vector.h>
35 #include <deal.II/lac/trilinos_vector.h>
36 #include <deal.II/lac/vector.h>
37 
38 #include <vector>
39 
40 DEAL_II_NAMESPACE_OPEN
41 
42 
43 template <typename DoFHandlerType, bool lda>
44 template <class OutputVector, typename number>
45 void
47  const Vector<number> &local_values,
48  OutputVector & values,
49  const unsigned int fe_index) const
50 {
51  if (!this->has_children() && !this->is_artificial())
52  {
53  if ((dynamic_cast<DoFHandler<DoFHandlerType::dimension,
54  DoFHandlerType::space_dimension> *>(
55  this->dof_handler) != nullptr) ||
56  // for hp-DoFHandlers, we need to require that on
57  // active cells, you either don't specify an fe_index,
58  // or that you specify the correct one
59  (fe_index == this->active_fe_index()) ||
60  (fe_index == DoFHandlerType::default_fe_index))
61  // simply set the values on this cell
62  this->set_dof_values(local_values, values);
63  else
64  {
65  Assert(local_values.size() ==
66  this->dof_handler->get_fe(fe_index).dofs_per_cell,
67  ExcMessage("Incorrect size of local_values vector."));
68 
69  FullMatrix<double> interpolation(
70  this->get_fe().dofs_per_cell,
71  this->dof_handler->get_fe(fe_index).dofs_per_cell);
72 
73  this->get_fe().get_interpolation_matrix(
74  this->dof_handler->get_fe(fe_index), interpolation);
75 
76  // do the interpolation to the target space. for historical
77  // reasons, matrices are set to size 0x0 internally even
78  // we reinit as 4x0, so we have to treat this case specially
79  Vector<number> tmp(this->get_fe().dofs_per_cell);
80  if ((tmp.size() > 0) && (local_values.size() > 0))
81  interpolation.vmult(tmp, local_values);
82 
83  // now set the dof values in the global vector
84  this->set_dof_values(tmp, values);
85  }
86  }
87  else
88  // otherwise distribute them to the children
89  {
90  Assert((dynamic_cast<DoFHandler<DoFHandlerType::dimension,
91  DoFHandlerType::space_dimension> *>(
92  this->dof_handler) != nullptr) ||
93  (fe_index != DoFHandlerType::default_fe_index),
94  ExcMessage(
95  "You cannot call this function on non-active cells "
96  "of hp::DoFHandler objects unless you provide an explicit "
97  "finite element index because they do not have naturally "
98  "associated finite element spaces associated: degrees "
99  "of freedom are only distributed on active cells for which "
100  "the active_fe_index has been set."));
101 
102  const FiniteElement<dim, spacedim> &fe =
103  this->get_dof_handler().get_fe(fe_index);
104  const unsigned int dofs_per_cell = fe.dofs_per_cell;
105 
106  Assert(this->dof_handler != nullptr,
107  typename BaseClass::ExcInvalidObject());
108  Assert(local_values.size() == dofs_per_cell,
109  typename BaseClass::ExcVectorDoesNotMatch());
110  Assert(values.size() == this->dof_handler->n_dofs(),
111  typename BaseClass::ExcVectorDoesNotMatch());
112 
113  Vector<number> tmp(dofs_per_cell);
114 
115  for (unsigned int child = 0; child < this->n_children(); ++child)
116  {
117  if (tmp.size() > 0)
118  fe.get_prolongation_matrix(child, this->refinement_case())
119  .vmult(tmp, local_values);
120  this->child(child)->set_dof_values_by_interpolation(tmp,
121  values,
122  fe_index);
123  }
124  }
125 }
126 
127 
128 // --------------------------------------------------------------------------
129 // explicit instantiations
130 #include "dof_accessor_set.inst"
131 
132 DEAL_II_NAMESPACE_CLOSE
size_type size() const
virtual const FullMatrix< double > & get_prolongation_matrix(const unsigned int child, const RefinementCase< dim > &refinement_case=RefinementCase< dim >::isotropic_refinement) const
Definition: fe.cc:335
static::ExceptionBase & ExcMessage(std::string arg1)
#define Assert(cond, exc)
Definition: exceptions.h:1227
const unsigned int dofs_per_cell
Definition: fe_base.h:297
void set_dof_values_by_interpolation(const Vector< number > &local_values, OutputVector &values, const unsigned int fe_index=DoFHandlerType::default_fe_index) const