File: WallPrmsPy.cpp

package info (click to toggle)
esys-particle 2.3.5%2Bdfsg2-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 13,132 kB
  • sloc: cpp: 81,480; python: 5,872; makefile: 1,259; sh: 313; perl: 225
file content (210 lines) | stat: -rw-r--r-- 7,484 bytes parent folder | download | duplicates (4)
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
/////////////////////////////////////////////////////////////
//                                                         //
// Copyright (c) 2003-2017 by The University of Queensland //
// Centre for Geoscience Computing                         //
// http://earth.uq.edu.au/centre-geoscience-computing      //
//                                                         //
// Primary Business: Brisbane, Queensland, Australia       //
// Licensed under the Open Software License version 3.0    //
// http://www.apache.org/licenses/LICENSE-2.0              //
//                                                         //
/////////////////////////////////////////////////////////////

#include <mpi.h>
#include <boost/version.hpp>
#include <boost/python.hpp>
#include "Python/esys/lsm/InteractionParamsPy.h"
#include "Python/esys/lsm/WallPrmsPy.h"

namespace esys
{
  namespace lsm
  {

    /*!
      constructor of non-rotational elastic wall parameters
      
      \param name the name of the interaction
      \param wname the name of the wall
      \param normalSpringK the spring constant for the elastic interactions
    */
    NRotElasticWallPrmsPy::NRotElasticWallPrmsPy(
      const std::string& name,
      const std::string& wname,
      double normalSpringK
    )
      : CEWallIGP(name,wname,normalSpringK)
    {
    }

    /*!
      constructor of non-rotational bonded wall parameters
   
      \param name the name of the interaction
      \param wname  the name of the wall
      \param normalSpringK the spring constant for the elastic interactions
      \param particleTag the tag of the particles to which the wall is bonded
      (if build via bond and not via distance)
    */
    NRotBondedWallPrmsPy::NRotBondedWallPrmsPy(
      const std::string& name,
      const std::string& wname,
      double normalSpringK,
      int particleTag
    )
      : CBWallIGP(name,wname,normalSpringK,particleTag,-1)
    {
    }

    /*!
      constructor of non-rotational bonded wall parameters
   
      \param name the name of the interaction
      \param wname  the name of the wall
      \param normalSpringK the spring constant for the elastic interactions
      \param particleTag the tag of the particles to which the wall is bonded
      \param tagMask the particle tag mask (which bits of the tag are significant)
    */
    NRotBondedWallPrmsPy::NRotBondedWallPrmsPy(
      const std::string& name,
      const std::string& wname,
      double normalSpringK,
      int particleTag,
      int tagMask
    )
      : CBWallIGP(name,wname,normalSpringK,particleTag,tagMask)
    {
    }

    /*!
      constructor of non-rotational bonded wall parameters with directional stiffness
   
      \param name the name of the interaction
      \param wname  the name of the wall
      \param SpringKx the spring constant for the elastic interactions
      \param SpringKy the spring constant for the elastic interactions
      \param SpringKz the spring constant for the elastic interactions
      \param particleTag the tag of the particles to which the wall is bonded
      (if build via bond and not via distance)
    */
    NRotSoftBondedWallPrmsPy::NRotSoftBondedWallPrmsPy(
      const std::string& name,
      const std::string& wname,
      double normalK,
      double shearK,
      int particleTag,
      int tagMask,
      bool scaling
    ) : CSoftBWallIGP(name,wname,normalK,shearK,particleTag,tagMask,scaling)
    {}

    using boost::python::arg;
    void exportWallPrms()
    {
      // Disable autogeneration of C++ signatures (Boost 1.34.0 and higher)
      // for Epydoc which stumbles over indentation in the automatically generated strings.
      boost::python::docstring_options no_autogen(true,false);

      boost::python::class_<NRotBondedWallPrmsPy,boost::python::bases<InteractionPrmsPy> >(
        "NRotBondedWallPrms",
        "Parameters for linear elastic bond between particles and"
        " a wall.",
	      boost::python::init<const std::string&, const std::string&, double, int, int>(
          (
            arg("name"),
            arg("wallName"),
            arg("normalK"),
            arg("particleTag"),
            arg("tagMask")
          ),
	  "Parameters defining bonded elastic interactions between particles and a planar wall\n"
          "@type name: string\n"
          "@kwarg name: Name assigned to the created interaction group.\n"
          "@type wallName: string\n"
          "@kwarg wallName: The name of an existing wall.\n"
          "@type normalK: float\n"
          "@kwarg normalK: spring constant for the linear elastic force"
          " calculation.\n"
          "@type particleTag: int\n"
          "@kwarg particleTag: Particles with this tag are bonded to the wall.\n"
          "@type tagMask: int\n"
          "@kwarg tagMask: the tag mask (default: -1) shows the significant"
          " bits of the tag.\n"
				)
			)
			.def(boost::python::init<const std::string&, const std::string&, double, int>(
        (
          arg("name"),
          arg("wallName"),
          arg("normalK"),
          arg("particleTag")
        )
			));
      
   

      boost::python::class_<NRotSoftBondedWallPrmsPy,boost::python::bases<InteractionPrmsPy> >(
        "NRotSoftBondedWallPrms",
        "Parameters for soft linear elastic bonds between particles and"
        " a wall. Soft bonds may have differing normal and shear stiffnesses.",
        boost::python::init<const std::string&, const std::string&, double, double,int,int,bool>(
          (
            arg("name"),
            arg("wallName"),
            arg("normalK"),
            arg("shearK"),
            arg("particleTag"),
            arg("tagMask"),
            arg("scaling")
          ),
	  "Parameters defining soft bonded interactions between particles and a planar wall\n"
          "@type name: string\n"
          "@kwarg name: Name assigned to the created interaction group.\n"
          "@type wallName: string\n"
          "@kwarg wallName: The name of an existing wall.\n"
          "@type normalK: float\n"
          "@kwarg normalK: spring constant for the normal elastic forces.\n"
          "@type shearK: float\n"
          "@kwarg shearK: spring constant for the shear elastic forces.\n"
          "@type particleTag: int\n"
          "@kwarg particleTag: Particles with this tag are bonded to the wall.\n"
          "@type tagMask: int\n"
          "@kwarg tagMask: the tag mask.\n"
          "@type scaling: bool\n"
          "@kwarg scaling: toggle whether to scale elastic constants by radius.\n"
        )
      );



      boost::python::class_<NRotElasticWallPrmsPy,boost::python::bases<InteractionPrmsPy> >(
        "NRotElasticWallPrms",
        "Parameters for linear elastic contact between particles and"
        " a wall.",
        boost::python::init<
          const std::string&,
          const std::string&,
          double
        >(
          (
            arg("name"),
            arg("wallName"),
            arg("normalK")
          ),
	  "Parameters defining elastic contacts between particles and a planar wall\n"
          "@type name: string\n"
          "@kwarg name: Name assigned to the created interaction group.\n"
          "@type wallName: string\n"
          "@kwarg wallName: The name of an existing wall.\n"
          "@type normalK: float\n"
          "@kwarg normalK: spring constant for the linear elastic force"
          " calculation.\n"
        )
      )
      ;

      
    }
  }
}