/usr/include/deal.II/hp/mapping_collection.h is in libdeal.ii-dev 8.1.0-6ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 | // ---------------------------------------------------------------------
// $Id: mapping_collection.h 30036 2013-07-18 16:55:32Z maier $
//
// Copyright (C) 2005 - 2013 by the deal.II authors
//
// This file is part of the deal.II library.
//
// The deal.II library is free software; you can use it, redistribute
// it, and/or modify it under the terms of the GNU Lesser General
// Public License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
// The full text of the license can be found in the file LICENSE at
// the top level of the deal.II distribution.
//
// ---------------------------------------------------------------------
#ifndef __deal2__mapping_collection_h
#define __deal2__mapping_collection_h
#include <deal.II/base/config.h>
#include <deal.II/base/subscriptor.h>
#include <deal.II/fe/mapping_q1.h>
#include <deal.II/fe/fe.h>
#include <vector>
#include <deal.II/base/std_cxx1x/shared_ptr.h>
DEAL_II_NAMESPACE_OPEN
namespace hp
{
/**
* This class implements a collection of mapping objects in the same way as
* the hp::FECollection implements a collection of finite element classes.
*
* It implements the concepts stated in the @ref hpcollection module described
* in the doxygen documentation.
*
* Although it is recommended to supply an appropriate mapping for
* each finite element kind used in a hp-computation, the
* MappingCollection class implements a conversion constructor from a
* single mapping. Therefore it is possible to offer only a single
* mapping to the hp::FEValues class instead of a
* hp::MappingCollection. This is for the convenience of the user, as
* many simple geometries do not require different mappings along the
* boundary to achieve optimal convergence rates. Hence providing a
* single mapping object will usually suffice. See the hp::FEValues
* class for the rules which mapping will be selected for a given
* cell.
*
* @ingroup hp hpcollection
*
* @author Oliver Kayser-Herold, 2005
*/
template<int dim, int spacedim=dim>
class MappingCollection : public Subscriptor
{
public:
/**
* Default constructor. Leads
* to an empty collection that
* can later be filled using
* push_back().
*/
MappingCollection ();
/**
* Conversion constructor. This
* constructor creates a
* MappingCollection from a
* single mapping. More
* mappings can be added with
* push_back(), if desired,
* though it would probably be
* clearer to add all mappings
* the same way.
*/
explicit MappingCollection (const Mapping<dim,spacedim> &mapping);
/**
* Copy constructor.
*/
MappingCollection (const MappingCollection<dim,spacedim> &mapping_collection);
/**
* Adds a new mapping to the
* MappingCollection. The
* mappings have to be added in
* the order of the
* active_fe_indices. Thus the
* reference to the mapping
* object for active_fe_index 0
* has to be added first,
* followed by the mapping
* object for active_fe_index
* 1.
*/
void push_back (const Mapping<dim,spacedim> &new_mapping);
/**
* Returns the mapping object
* which was specified by the
* user for the active_fe_index
* which is provided as a
* parameter to this method.
*
* @pre @p index must be
* between zero and the number
* of elements of the
* collection.
*/
const Mapping<dim,spacedim> &
operator[] (const unsigned int index) const;
/**
* Returns the number of
* mapping objects stored in
* this container.
*/
unsigned int size () const;
/**
* Determine an estimate for the
* memory consumption (in bytes)
* of this object.
*/
std::size_t memory_consumption () const;
private:
/**
* The real container, which stores
* pointers to the different Mapping
* objects.
*/
std::vector<std_cxx1x::shared_ptr<const Mapping<dim,spacedim> > > mappings;
};
/**
* In order to avoid creation of static MappingQ1 objects at several
* places in the library (in particular in backward compatibility
* functions), we define a static collection of mappings with a single
* MappingQ1 mapping object once and for all places where it is
* needed.
*/
template<int dim, int spacedim=dim>
struct StaticMappingQ1
{
private:
/**
* A static MappingQ1
* object. We can't use the one
* in ::StaticMappingQ1 since
* we can't make sure that the
* constructor for that object
* is run before the
* constructor for the present
* static object.
*/
static MappingQ1<dim,spacedim> mapping_q1;
public:
/**
* The publicly available
* static Q1 mapping collection
* object.
*/
static MappingCollection<dim,spacedim> mapping_collection;
};
/* --------------- inline functions ------------------- */
template<int dim, int spacedim>
inline
unsigned int
MappingCollection<dim,spacedim>::size () const
{
return mappings.size();
}
template<int dim, int spacedim>
inline
const Mapping<dim,spacedim> &
MappingCollection<dim,spacedim>::operator[] (const unsigned int index) const
{
Assert (index < mappings.size (),
ExcIndexRange (index, 0, mappings.size ()));
return *mappings[index];
}
} // namespace hp
DEAL_II_NAMESPACE_CLOSE
#endif
|