Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90439846
py_solid_mechanics_model_cohesive.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 1, 16:33
Size
3 KB
Mime Type
text/x-c
Expires
Sun, Nov 3, 16:33 (2 d)
Engine
blob
Format
Raw Data
Handle
20348228
Attached To
rAKA akantu
py_solid_mechanics_model_cohesive.cc
View Options
/* -------------------------------------------------------------------------- */
#include "py_aka_array.hh"
/* -------------------------------------------------------------------------- */
#include <non_linear_solver.hh>
#include <solid_mechanics_model_cohesive.hh>
/* -------------------------------------------------------------------------- */
#include <pybind11/pybind11.h>
/* -------------------------------------------------------------------------- */
namespace
py
=
pybind11
;
/* -------------------------------------------------------------------------- */
namespace
akantu
{
/* -------------------------------------------------------------------------- */
#define def_deprecated(func_name, mesg) \
def(func_name, [](py::args, py::kwargs) { AKANTU_ERROR(mesg); })
#define def_function_nocopy(func_name) \
def( \
#func_name, \
[](SolidMechanicsModel & self) -> decltype(auto) { \
return self.func_name(); \
}, \
py::return_value_policy::reference)
#define def_function(func_name) \
def(#func_name, [](SolidMechanicsModel & self) -> decltype(auto) { \
return self.func_name(); \
})
void
register_solid_mechanics_model_cohesive
(
py
::
module
&
mod
)
{
py
::
class_
<
CohesiveElementInserter
>
(
mod
,
"CohesiveElementInserter"
)
.
def
(
"setLimit"
,
&
CohesiveElementInserter
::
setLimit
);
py
::
class_
<
SolidMechanicsModelCohesiveOptions
,
SolidMechanicsModelOptions
>
(
mod
,
"SolidMechanicsModelCohesiveOptions"
)
.
def
(
py
::
init
<
AnalysisMethod
,
bool
>
(),
py
::
arg
(
"analysis_method"
)
=
_explicit_lumped_mass
,
py
::
arg
(
"is_extrinsic"
)
=
false
);
py
::
class_
<
SolidMechanicsModelCohesive
,
SolidMechanicsModel
>
(
mod
,
"SolidMechanicsModelCohesive"
)
.
def
(
py
::
init
<
Mesh
&
,
UInt
,
const
ID
&
,
const
MemoryID
&>
(),
py
::
arg
(
"mesh"
),
py
::
arg
(
"spatial_dimension"
)
=
_all_dimensions
,
py
::
arg
(
"id"
)
=
"solid_mechanics_model"
,
py
::
arg
(
"memory_id"
)
=
0
)
.
def
(
"initFull"
,
[](
SolidMechanicsModel
&
self
,
const
AnalysisMethod
&
analysis_method
,
bool
is_extrinsic
)
{
self
.
initFull
(
_analysis_method
=
analysis_method
,
_is_extrinsic
=
is_extrinsic
);
},
py
::
arg
(
"_analysis_method"
),
py
::
arg
(
"_is_extrinsic"
)
=
false
)
.
def
(
"checkCohesiveStress"
,
&
SolidMechanicsModelCohesive
::
checkCohesiveStress
)
.
def
(
"getElementInserter"
,
&
SolidMechanicsModelCohesive
::
getElementInserter
,
py
::
return_value_policy
::
reference
)
.
def
(
"updateAutomaticInsertion"
,
&
SolidMechanicsModelCohesive
::
updateAutomaticInsertion
);
}
}
// namespace akantu
Event Timeline
Log In to Comment