deal.II version GIT relicensing-6809-ge913b9bb34 2026-09-25 17:20:01+00:00
\(\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\}}\)
Loading...
Searching...
No Matches
mapping_q1.h
Go to the documentation of this file.
1// -----------------------------------------------------------------------------
2//
3// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception OR LGPL-2.1-or-later
4// Copyright (C) 2001 - 2026 by the deal.II authors
5//
6// This file is part of the deal.II library.
7//
8// Detailed license information governing the source code and contributions
9// can be found in LICENSE.md and CONTRIBUTING.md at the top level directory.
10//
11// -----------------------------------------------------------------------------
12
13#ifndef dealii_mapping_q1_h
14#define dealii_mapping_q1_h
15
16
17#include <deal.II/base/config.h>
18
20
21
23
50template <int dim, int spacedim = dim>
51class MappingQ1 : public MappingQ<dim, spacedim>
52{
53public:
57 MappingQ1();
58
59 // for documentation, see the Mapping base class
60 virtual std::unique_ptr<Mapping<dim, spacedim>>
61 clone() const override;
62};
63
64
65
87template <int dim, int spacedim = dim>
96
97
100template <int dim, int spacedim>
103
105
106#endif
virtual std::unique_ptr< Mapping< dim, spacedim > > clone() const override
Definition mapping_q1.cc:30
#define DEAL_II_NAMESPACE_OPEN
Definition config.h:38
#define DEAL_II_NAMESPACE_CLOSE
Definition config.h:39
static MappingQ< dim, spacedim > mapping
Definition mapping_q1.h:94