Nektar++
Loading...
Searching...
No Matches
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 (py::module &m)
 

Function Documentation

◆ export_LocalElements()

void export_LocalElements ( py::module &  m)

Definition at line 47 of file LocalElements.cpp.

48{
50 std::shared_ptr<SegExp>>(m, "SegExp", py::multiple_inheritance())
51 .def(py::init<const LibUtilities::BasisKey &,
54 std::shared_ptr<TriExp>>(m, "TriExp", py::multiple_inheritance())
55 .def(py::init<const LibUtilities::BasisKey &,
59 std::shared_ptr<QuadExp>>(m, "QuadExp",
60 py::multiple_inheritance())
61 .def(py::init<const LibUtilities::BasisKey &,
65 std::shared_ptr<TetExp>>(m, "TetExp", py::multiple_inheritance())
66 .def(py::init<
70 std::shared_ptr<PrismExp>>(m, "PrismExp",
71 py::multiple_inheritance())
72 .def(py::init<
76 std::shared_ptr<PyrExp>>(m, "PyrExp", py::multiple_inheritance())
77 .def(py::init<
81 std::shared_ptr<HexExp>>(m, "HexExp", py::multiple_inheritance())
82 .def(py::init<
85}
Describes the specification for a Basis.
Definition Basis.h:45
Class representing a hexehedral element in reference space.
Definition StdHexExp.h:44
Class representing a prismatic element in reference space.
Definition StdPrismExp.h:45
Class representing a segment element in reference space All interface of this class sits in StdExpans...
Definition StdSegExp.h:45

Referenced by PYBIND11_MODULE().