mbsim  4.0.0
MBSim Kernel
circle_frustum.h
1/* Copyright (C) 2004-2009 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 CIRCLE_FRUSTUM_H_
21#define CIRCLE_FRUSTUM_H_
22
23#include "mbsim/contact_kinematics/contact_kinematics.h"
24
25namespace MBSim {
26
27 class Circle;
28 class Frustum;
29 class FuncPairConeSectionCircle;
30 class JacobianPairConeSectionCircle;
31
40 public:
48
53
54 void search_();
55
56 /* INHERITED INTERFACE OF CONTACTKINEAMTICS */
57 void calcisSize() override { isSize = 1; }
58 void assignContours(const std::vector<Contour*> &contour) override;
59 void setInitialGuess(const fmatvec::MatV &zeta0_) override;
60 void updateg(SingleContact &contact, int i=0) override;
61 /***************************************************/
62
63 protected:
67 int icircle, ifrustum;
68
73 Circle *circle;
74
77 std::vector<double> nodes;
78 };
79
80}
81
82#endif /* CIRCLE_FRUSTUM_H_ */
circular contour with contact possibility from outside and inside and binormal in direction of the th...
Definition: circle.h:36
contact kinematics for unilateral contact between circle and frustum with at most one contact point
Definition: circle_frustum.h:39
void assignContours(const std::vector< Contour * > &contour) override
treats ordering of contours
Definition: circle_frustum.cc:44
~ContactKinematicsCircleFrustum() override
destructor
Definition: circle_frustum.cc:41
void updateg(SingleContact &contact, int i=0) override
compute contact kinematics for a single contact
Definition: circle_frustum.cc:86
ContactKinematicsCircleFrustum()
constructor \default no debugging \default no warnings \default global search
Definition: circle_frustum.cc:37
void setInitialGuess(const fmatvec::MatV &zeta0_) override
set initial guess for root-finding
Definition: circle_frustum.cc:60
int icircle
contour index
Definition: circle_frustum.h:67
Frustum * frustum
contour classes
Definition: circle_frustum.h:72
basic class for contact kinematical calculations
Definition: contact_kinematics.h:41
frustum with axis in direction of second column of contour reference frame
Definition: frustum.h:36
base root function for planar pairing ConeSection and Circle
Definition: funcpair_conesection_circle.h:32
base Jacobian of root function for planar pairing ConeSection and Circle
Definition: jacpair_conesection_circle.h:32
class for contacts
Definition: single_contact.h:46
namespace MBSim
Definition: bilateral_constraint.cc:30