File: crouzeix-raviart.h

package info (click to toggle)
basix 0.0.1~git20210122.4f10ef2-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 696 kB
  • sloc: cpp: 3,987; python: 1,918; makefile: 33
file content (22 lines) | stat: -rw-r--r-- 433 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright (c) 2020 Chris Richardson
// FEniCS Project
// SPDX-License-Identifier:    MIT

#pragma once

#include "finite-element.h"

namespace basix
{

/// Crouzeix-Raviart element
namespace cr
{
/// @note degree must be 1 for Crouzeix-Raviart
/// @param celltype
/// @param degree
FiniteElement create(cell::type celltype, int degree);

static std::string family_name = "Crouzeix-Raviart";
} // namespace cr
} // namespace basix