Nektar++
Functions
LocalElements.cpp File Reference
#include <LibUtilities/Python/NekPyConfig.hpp>
#include <LocalRegions/HexExp.h>
#include <LocalRegions/PrismExp.h>
#include <LocalRegions/PyrExp.h>
#include <LocalRegions/QuadExp.h>
#include <LocalRegions/SegExp.h>
#include <LocalRegions/TetExp.h>
#include <LocalRegions/TriExp.h>

Go to the source code of this file.

Functions

void export_LocalElements ()
 

Function Documentation

◆ export_LocalElements()

void export_LocalElements ( )

Definition at line 47 of file LocalElements.cpp.

48{
49 py::class_<SegExp, py::bases<Expansion, StdRegions::StdSegExp>,
50 std::shared_ptr<SegExp>>(
51 "SegExp", py::init<const LibUtilities::BasisKey &,
53 py::class_<TriExp, py::bases<Expansion, StdRegions::StdTriExp>,
54 std::shared_ptr<TriExp>>(
55 "TriExp",
56 py::init<const LibUtilities::BasisKey &, const LibUtilities::BasisKey &,
58 py::class_<QuadExp, py::bases<Expansion, StdRegions::StdQuadExp>,
59 std::shared_ptr<QuadExp>>(
60 "QuadExp",
61 py::init<const LibUtilities::BasisKey &, const LibUtilities::BasisKey &,
63 py::class_<TetExp, py::bases<Expansion, StdRegions::StdTetExp>,
64 std::shared_ptr<TetExp>>(
65 "TetExp",
66 py::init<const LibUtilities::BasisKey &, const LibUtilities::BasisKey &,
69 py::class_<PrismExp, py::bases<Expansion, StdRegions::StdPrismExp>,
70 std::shared_ptr<PrismExp>>(
71 "PrismExp",
72 py::init<const LibUtilities::BasisKey &, const LibUtilities::BasisKey &,
75 py::class_<PyrExp, py::bases<Expansion, StdRegions::StdPyrExp>,
76 std::shared_ptr<PyrExp>>(
77 "PyrExp",
78 py::init<const LibUtilities::BasisKey &, const LibUtilities::BasisKey &,
81 py::class_<HexExp, py::bases<Expansion, StdRegions::StdHexExp>,
82 std::shared_ptr<HexExp>>(
83 "HexExp",
84 py::init<const LibUtilities::BasisKey &, const LibUtilities::BasisKey &,
87}
Describes the specification for a Basis.
Definition: Basis.h:45
std::shared_ptr< QuadGeom > QuadGeomSharedPtr
Definition: HexGeom.h:45
std::shared_ptr< PrismGeom > PrismGeomSharedPtr
Definition: PrismGeom.h:82
std::shared_ptr< HexGeom > HexGeomSharedPtr
Definition: HexGeom.h:84
std::shared_ptr< SegGeom > SegGeomSharedPtr
Definition: Geometry2D.h:59
std::shared_ptr< PyrGeom > PyrGeomSharedPtr
Definition: PyrGeom.h:75
std::shared_ptr< TetGeom > TetGeomSharedPtr
Definition: TetGeom.h:82
std::shared_ptr< TriGeom > TriGeomSharedPtr
Definition: TriGeom.h:56

Referenced by BOOST_PYTHON_MODULE().