Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F97987416
py_aka_mesh.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
Wed, Jan 8, 07:50
Size
1 KB
Mime Type
text/x-c
Expires
Fri, Jan 10, 07:50 (2 d)
Engine
blob
Format
Raw Data
Handle
23473076
Attached To
rAKA akantu
py_aka_mesh.cc
View Options
/* -------------------------------------------------------------------------- */
#include "aka_common.hh"
#include "element_group.hh"
#include "mesh.hh"
#include "py_aka_array.hh"
#include <pybind11/operators.h>
#include <pybind11/pybind11.h>
#include <pybind11/stl.h>
/* -------------------------------------------------------------------------- */
namespace
py
=
pybind11
;
namespace
akantu
{
/* -------------------------------------------------------------------------- */
__attribute__
((
visibility
(
"default"
)))
void
register_mesh
(
py
::
module
&
mod
)
{
py
::
class_
<
ElementGroup
>
(
mod
,
"ElementGroup"
);
py
::
class_
<
GroupManager
>
(
mod
,
"GroupManager"
)
.
def
(
"getElementGroup"
,
[](
GroupManager
&
self
,
const
std
::
string
&
name
)
->
decltype
(
auto
)
{
return
self
.
getElementGroup
(
name
);
},
py
::
return_value_policy
::
reference
);
py
::
class_
<
Mesh
,
GroupManager
>
(
mod
,
"Mesh"
)
.
def
(
py
::
init
<
UInt
,
const
ID
&
,
const
MemoryID
&>
(),
py
::
arg
(
"spatial_dimension"
),
py
::
arg
(
"id"
)
=
"mesh"
,
py
::
arg
(
"memory_id"
)
=
0
)
.
def
(
"read"
,
&
Mesh
::
read
,
py
::
arg
(
"filename"
),
py
::
arg
(
"mesh_io_type"
)
=
_miot_auto
,
"read the mesh from a file"
)
.
def
(
"getNodes"
,
[](
Mesh
&
self
)
->
Array
<
Real
>
{
return
self
.
getNodes
();
},
py
::
return_value_policy
::
reference
)
.
def
(
"getNbNodes"
,
&
Mesh
::
getNbNodes
)
.
def
(
"distribute"
,
[](
Mesh
&
self
)
{
self
.
distribute
();
});
}
}
// namespace akantu
Event Timeline
Log In to Comment