Tabulation Project basix
nedelec.h
1 // Copyright (c) 2020 Chris Richardson
2 // FEniCS Project
3 // SPDX-License-Identifier: MIT
4 
5 #pragma once
6 
7 #include "finite-element.h"
8 #include <string>
9 
10 namespace basix
11 {
16 FiniteElement create_nedelec(cell::type celltype, int degree,
17  const std::string& name = std::string());
18 
19 // static std::string family_name = "Nedelec 1st kind H(curl)";
20 // } // namespace basix
21 
26 FiniteElement create_nedelec2(cell::type celltype, int degree,
27  const std::string& name = std::string());
28 
29 // static std::string family_name = "Nedelec 2nd kind H(curl)";
30 // } // namespace nedelec2
31 
32 } // namespace basix
type
Cell type.
Definition: cell.h:21
basix
Definition: basix.h:7
FiniteElement create_nedelec2(cell::type celltype, int degree, const std::string &name=std::string())
Definition: nedelec.cpp:698
FiniteElement create_nedelec(cell::type celltype, int degree, const std::string &name=std::string())
Definition: nedelec.cpp:655
int degree(int handle)
Degree.
Definition: basix.cpp:50