-
Notifications
You must be signed in to change notification settings - Fork 1
/
gsKLShell.h
75 lines (52 loc) · 2.32 KB
/
gsKLShell.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#include <gsCore/gsTemplateTools.h>
#include <gsKLShell/src/getMaterialMatrix.h>
#include <gsKLShell/src/gsMaterialMatrixBase.h>
#include <gsKLShell/src/gsMaterialMatrixBaseDim.h>
#include <gsKLShell/src/gsMaterialMatrixComposite.h>
#include <gsKLShell/src/gsMaterialMatrixEval.h>
#include <gsKLShell/src/gsMaterialMatrixIntegrate.h>
#include <gsKLShell/src/gsMaterialMatrixLinear.h>
#include <gsKLShell/src/gsMaterialMatrixNonlinear.h>
#include <gsKLShell/src/gsMaterialMatrixTFT.h>
#include <gsKLShell/src/gsMaterialMatrixUtils.h>
#include <gsKLShell/src/gsMaterialMatrixXml.h>
#include <gsKLShell/src/gsThinShellAssembler.h>
#include <gsKLShell/src/gsThinShellAssemblerDWR.h>
#include <gsKLShell/src/gsThinShellFunctions.h>
#include <gsKLShell/src/gsThinShellUtils.h>
namespace gismo
{
#ifdef GISMO_WITH_PYBIND11
namespace py = pybind11;
void pybind11_init_gsKLShell(py::module &m)
{
gismo::pybind11_init_gsMaterialMatrixBase( m );
gismo::pybind11_init_gsMaterialMatrixBaseDim2( m );
gismo::pybind11_init_gsMaterialMatrixBaseDim3( m );
gismo::pybind11_init_gsMaterialMatrixLinear2( m );
gismo::pybind11_init_gsMaterialMatrixLinear3( m );
gismo::pybind11_init_gsMaterialMatrixNH2i( m );
gismo::pybind11_init_gsMaterialMatrixNH2c( m );
gismo::pybind11_init_gsMaterialMatrixNH3i( m );
gismo::pybind11_init_gsMaterialMatrixNH3c( m );
gismo::pybind11_init_gsMaterialMatrixMR2i( m );
gismo::pybind11_init_gsMaterialMatrixMR2c( m );
gismo::pybind11_init_gsMaterialMatrixMR3i( m );
gismo::pybind11_init_gsMaterialMatrixMR3c( m );
gismo::pybind11_init_gsMaterialMatrixOG2i( m );
gismo::pybind11_init_gsMaterialMatrixOG2c( m );
gismo::pybind11_init_gsMaterialMatrixOG3i( m );
gismo::pybind11_init_gsMaterialMatrixOG3c( m );
gismo::pybind11_init_gsThinShellAssemblerBase( m );
gismo::pybind11_enum_gsThinShellAssemblerStatus( m );
gismo::pybind11_init_gsThinShellAssembler2( m );
gismo::pybind11_init_gsThinShellAssembler3( m );
gismo::pybind11_init_gsThinShellAssembler3nb( m );
gismo::pybind11_enum_GoalFunction( m );
gismo::pybind11_init_gsThinShellAssemblerDWRBase( m );
gismo::pybind11_init_gsThinShellAssemblerDWR2( m );
gismo::pybind11_init_gsThinShellAssemblerDWR3( m );
gismo::pybind11_init_gsThinShellAssemblerDWR3nb( m );
}
#endif
}