mbsim  4.0.0
MBSim Kernel
extrusion.h
1/* Copyright (C) 2004-2025 MBSim Development Team
2 *
3 * This library is free software; you can redistribute it and/or
4 * modify it under the terms of the GNU Lesser General Public
5 * License as published by the Free Software Foundation; either
6 * version 2.1 of the License, or (at your option) any later version.
7 *
8 * This library is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * Lesser General Public License for more details.
12 *
13 * You should have received a copy of the GNU Lesser General Public
14 * License along with this library; if not, write to the Free Software
15 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16 *
17 * Contact: martin.o.foerg@googlemail.com
18 */
19
20#ifndef _EXTRUSION_H
21#define _EXTRUSION_H
22
23#include "mbsim/contours/rigid_contour.h"
24#include "mbsim/functions/function.h"
25#include "mbsim/utils/boost_parameters.h"
26#include "mbsim/utils/openmbv_utils.h"
27
28namespace MBSim {
29
30 class Extrusion : public RigidContour {
31 public:
32 Extrusion(const std::string& name="", Frame *R=nullptr);
33 ~Extrusion() override = default;
34
35 void init(InitStage stage, const InitConfigSet &config) override;
36
37 void setPositionFunction(Function<fmatvec::Vec3(double)> *fr_);
38 void setOrientationFunction(Function<fmatvec::RotMat3(double)> *fA_);
39 void setProfileFunction(Function<fmatvec::Vec2(double)> *fyz_);
40
41 fmatvec::Vec3 evalKrPS(const fmatvec::Vec2 &zeta) override;
42 fmatvec::Vec3 evalKs(const fmatvec::Vec2 &zeta) override;
43 fmatvec::Vec3 evalKt(const fmatvec::Vec2 &zeta) override;
44 fmatvec::Vec3 evalParDer1Ks(const fmatvec::Vec2 &zeta) override;
45 fmatvec::Vec3 evalParDer2Ks(const fmatvec::Vec2 &zeta) override;
46 fmatvec::Vec3 evalParDer1Kt(const fmatvec::Vec2 &zeta) override;
47 fmatvec::Vec3 evalParDer2Kt(const fmatvec::Vec2 &zeta) override;
48
49 bool isZetaOutside(const fmatvec::Vec2 &zeta) override;
50
51 void setOpenEta(bool openEta_) { openEta = openEta_; }
52 void setOpenXi(bool openXi_) { openXi = openXi_; }
53
54// BOOST_PARAMETER_MEMBER_FUNCTION( (void), enableOpenMBV, tag, (optional (diffuseColor,(const fmatvec::Vec3&),fmatvec::Vec3(std::vector<double>{-1,1,1}))(transparency,(double),0)(pointSize,(double),0)(lineWidth,(double),0))) {
55// OpenMBVColoredBody ombv(diffuseColor,transparency,pointSize,lineWidth);
56// openMBVRigidBody=ombv.createOpenMBV<OpenMBV::Frustum>();
57// }
58
59 void initializeUsingXML(xercesc::DOMElement *element) override;
60
61 protected:
62 fmatvec::Vec3 rOQ, rQP, rOQp, rQPp, rOQpp, rQPpp;
63 fmatvec::RotMat3 A;
64 fmatvec::Mat3x3 Ap, App;
65 Function<fmatvec::Vec3(double)> *fr{nullptr};
66 Function<fmatvec::RotMat3(double)> *fA{nullptr};
67 Function<fmatvec::Vec2(double)> *fyz{nullptr};
68 bool openEta{true};
69 bool openXi{false};
70 };
71
72}
73
74#endif
InitStage
The stages of the initialization.
Definition: element.h:62
std::string name
name of element
Definition: element.h:260
Definition: extrusion.h:30
void init(InitStage stage, const InitConfigSet &config) override
plots time series header
Definition: extrusion.cc:136
cartesian frame on bodies used for application of e.g. links and loads
Definition: frame.h:39
Definition: function.h:53
basic class for rigid contours
Definition: rigid_contour.h:37
Frame * R
coordinate system of contour
Definition: rigid_contour.h:135
namespace MBSim
Definition: bilateral_constraint.cc:30