Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91164215
py_akantu.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 8, 13:26
Size
692 B
Mime Type
text/x-c
Expires
Sun, Nov 10, 13:26 (2 d)
Engine
blob
Format
Raw Data
Handle
22207505
Attached To
rAKA akantu
py_akantu.cc
View Options
#include <pybind11/numpy.h>
#include <pybind11/pybind11.h>
namespace
py
=
pybind11
;
#include "py_aka_array.cc"
#include "py_aka_boundary_conditions.hh"
#include "py_aka_common.hh"
#include "py_aka_fe_engine.hh"
#include "py_aka_material.hh"
#include "py_aka_mesh.hh"
#include "py_aka_parser.hh"
#include "py_aka_solid_mechanics_model.hh"
PYBIND11_MODULE
(
py11_akantu
,
mod
)
{
mod
.
doc
()
=
"Akantu python interface"
;
akantu
::
register_enums
(
mod
);
akantu
::
register_parser
(
mod
);
akantu
::
register_boundary_conditions
(
mod
);
akantu
::
register_fe_engine
(
mod
);
akantu
::
register_solid_mechanics_model
(
mod
);
akantu
::
register_material
(
mod
);
akantu
::
register_mesh
(
mod
);
}
// Module akantu
Event Timeline
Log In to Comment