Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91871664
py_aka_boundary_conditions.cc
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Fri, Nov 15, 08:17
Size
2 KB
Mime Type
text/x-c++
Expires
Sun, Nov 17, 08:17 (2 d)
Engine
blob
Format
Raw Data
Handle
22337966
Attached To
rAKA akantu
py_aka_boundary_conditions.cc
View Options
/* -------------------------------------------------------------------------- */
#include "aka_common.hh"
/* -------------------------------------------------------------------------- */
#include <pybind11/operators.h>
#include <pybind11/pybind11.h>
#include <pybind11/stl.h>
/* -------------------------------------------------------------------------- */
#include "boundary_condition_python_functor.hh"
/* -------------------------------------------------------------------------- */
namespace py = pybind11;
namespace _aka = akantu;
namespace {
/* -------------------------------------------------------------------------- */
class PyDirichletFunctor : public _aka::BC::DirichletFunctor {
public:
/* Inherit the constructors */
using _aka::BC::DirichletFunctor::DirichletFunctor;
/* Trampoline (need one for each virtual function) */
void operator()(_aka::UInt node, _aka::Vector<bool> & flags,
_aka::Vector<_aka::Real> & primal,
const _aka::Vector<_aka::Real> & coord) const override {
PYBIND11_OVERLOAD_NAME(void, _aka::BC::DirichletFunctor,
"__call__", operator(), node, flags, primal, coord);
}
};
/* -------------------------------------------------------------------------- */
class PyNeumannFunctor : public _aka::BC::NeumannFunctor {
public:
/* Inherit the constructors */
using _aka::BC::NeumannFunctor::NeumannFunctor;
/* Trampoline (need one for each virtual function) */
void operator()(const _aka::IntegrationPoint & quad_point,
_aka::Vector<_aka::Real> & dual,
const _aka::Vector<_aka::Real> & coord,
const _aka::Vector<_aka::Real> & normals) const override {
PYBIND11_OVERLOAD_PURE_NAME(void, _aka::BC::NeumannFunctor,
"__call__", operator(), quad_point, dual, coord,
normals);
}
};
/* -------------------------------------------------------------------------- */
py::module & register_boundary_conditions(py::module & mod) {
py::class_<_aka::BC::Functor>(mod, "BCFunctor");
py::class_<_aka::BC::DirichletFunctor, PyDirichletFunctor, _aka::BC::Functor>(
mod, "DirichletFunctor")
.def(py::init())
.def(py::init<_aka::SpatialDirection>());
py::class_<_aka::BC::NeumannFunctor, PyNeumannFunctor, _aka::BC::Functor>(
mod, "NeumannFunctor")
.def(py::init());
return mod;
} // namespace
} // namespace
Event Timeline
Log In to Comment