Nektar++
Functions
Python/ExpList2D.cpp File Reference
#include <MultiRegions/ExpList1D.h>
#include <MultiRegions/ExpList2D.h>
#include <MultiRegions/ExpList3D.h>
#include <LibUtilities/Python/NekPyConfig.hpp>

Go to the source code of this file.

Functions

void export_ExpList2D ()
 

Function Documentation

◆ export_ExpList2D()

void export_ExpList2D ( )

Definition at line 43 of file Python/ExpList2D.cpp.

References NEKPY_SHPTR_FIX.

Referenced by BOOST_PYTHON_MODULE().

44 {
45  py::class_<ExpList1D, py::bases<ExpList>,
46  std::shared_ptr<ExpList1D> >(
47  "ExpList1D", py::init<
50  py::class_<ExpList2D, py::bases<ExpList>,
51  std::shared_ptr<ExpList2D> >(
52  "ExpList2D", py::init<
55  py::class_<ExpList3D, py::bases<ExpList>,
56  std::shared_ptr<ExpList3D> >(
57  "ExpList3D", py::init<
60 
64 }
std::shared_ptr< MeshGraph > MeshGraphSharedPtr
Definition: MeshGraph.h:163
#define NEKPY_SHPTR_FIX(SOURCE, TARGET)
Base class for all multi-elemental spectral/hp expansions.
Definition: ExpList.h:103
This class is the abstraction of a one-dimensional multi-elemental expansions which is merely a colle...
Definition: ExpList1D.h:58
Abstraction of a two-dimensional multi-elemental expansion which is merely a collection of local expa...
Definition: ExpList2D.h:57
Abstraction of a three-dimensional multi-elemental expansion which is merely a collection of local ex...
Definition: ExpList3D.h:48
std::shared_ptr< SessionReader > SessionReaderSharedPtr