DNDSR 0.1.0.dev1+gcd065ad
Distributed Numeric Data Structure for CFV
Loading...
Searching...
No Matches
eulerP_pybind11.cpp
Go to the documentation of this file.
3#include "EulerP_BC_bind.hpp"
5
6PYBIND11_MODULE(eulerP_pybind11, m)
7{
8 auto m_placeholder_submodule = m.def_submodule("placeholder_submodule");
9
10 //! hard coded dependency here
11 //! better solution?
12 py::module_::import("DNDSR.DNDS");
13 py::module_::import("DNDSR.Geom");
14 py::module_::import("DNDSR.CFV");
15
16 using namespace DNDS::EulerP;
17 pybind11_Physics_bind(m);
18
19 pybind11_BC_bind(m);
20
21 pybind11_Evaluator_bind(m);
22}
Shared pybind11 plumbing used by every *_bind.hpp in DNDS (buffer-protocol type check,...
Pybind11 bindings for the EulerP boundary condition types and handlers.
Pybind11 bindings for the EulerP Evaluator class and its packed argument structs.
Pybind11 bindings for the EulerP Physics class.
PYBIND11_MODULE(eulerP_pybind11, m)
Namespace for the EulerP alternative evaluator module with GPU support.
Definition EulerP.hpp:29