Rigid Body Dynamics: Links and Joints

Total Page:16

File Type:pdf, Size:1020Kb

Rigid Body Dynamics: Links and Joints FRIEDRICH-ALEXANDER-UNIVERSITAT¨ ERLANGEN-NURNBERG¨ INSTITUT FUR¨ INFORMATIK (MATHEMATISCHE MASCHINEN UND DATENVERARBEITUNG) Lehrstuhl f¨urInformatik 10 (Systemsimulation) Rigid Body Dynamics: Links and Joints Kristina Pickl Master Thesis Rigid Body Dynamics: Links and Joints Kristina Pickl Master Thesis Aufgabensteller: Prof. Dr. Ulrich R¨ude Betreuer: Klaus Iglberger, M. Sc. Bearbeitungszeitraum: 16.03.2009 { 16.09.2009 Declaration: I confirm that I developed this thesis on my own, without any help of others and that no sources and facilities other than those mentioned in this thesis were used. This thesis has never been submitted in total, in part or in modified form to any other examination board. All quotations taken from other sources are referenced accordingly. Erkl¨arung: Ich versichere, dass ich die Arbeit ohne fremde Hilfe und ohne Benutzung anderer als der angegebenen Quellen angefertigt habe und dass die Arbeit in gleicher oder ¨ahnlicher Form noch keiner anderen Prufungsbeh¨ ¨orde vorgelegen hat und von dieser als Teil einer Prufungs-¨ leistung angenommen wurde. Alle Ausfuhrungen,¨ die w¨ortlich oder sinngem¨aß ubernommen¨ wurden, sind als solche gekennzeichnet. Erlangen, den 16.09.2009 . Abstract Physics-based multibody simulations have a wide range of applications. In order to be capable of analyzing complex problem formulations, e.g. the motion of the human skeleton, joints are a necessary requirement for multibody simulation frameworks. The major focus of this thesis lies on the development and implementation of a general scheme to integrate joint motion constraints into the pe framework, which is developed at the Chair for System Simulation at the Friedrich-Alexander University Erlangen-Nuremberg. The mathematical background based on complementarity constraints is elucidated profoundly. Full-Coordinate methods are used to preserve the motion constraints. The complex mechan- ical background is elaborated. An abstract formulation, which incorporates joint, contact and limit constraints, and which is based on analytical mechanics is deduced. The Jacobian matrix notation is introduced to achieve a unified complementarity formulation. Several example joints are modeled and explained in detail. Error correction parameters for drifting problems due to the Full-Coordinate method are introduced in order to keep the er- rors to a minimum. Special emphasis lies on the modular class design, which enables the easy addition of other joint types in the future. In order to demonstrate the suitability of the extension selected joints are implemented. The correctness is substantiated with the help of several test scenarios, which test the specific char- acteristics of each implemented joint type. The results of these validation tests are analyzed and further interesting joint types and augmentations to the implementation are suggested. Zusammenfassung Physikalisch korrekte Starrk¨orpersimulationen k¨onnen vielf¨altig angewandt werden. Um kom- plexe Problemstellungen, wie z.B. die Bewegung des menschlichen Skeletts analysieren zu k¨onnen, ben¨otigt man in einem System zur Simulation von Mehrk¨orpern Verbindungen zwi- schen den K¨orpern. Das Hauptaugenmerk dieser Arbeit liegt in der Entwicklung und Implementierung eines allge- meinen Modells zur Einbindung von Zwangsbedingungen auf die Bewegung von Starrk¨orpern in das Simulationstool pe, das am Lehrstuhl fur¨ Systemsimulation der Friedrich-Alexander Universit¨at Erlangen-Nurnberg¨ entwickelt wird. Der mathematische Hintergrund, der auf linearen Komplementarit¨atsproblemen basiert, wird tiefgehend erl¨autert. Full-Coordinate Methoden werden dazu benutzt, die Zwangsbewegungen einzuhalten. Der komplizierte mechanische Hintergrund wird sorgf¨altig ausgearbeitet. Eine abstrakte Formulierung, die Verbindungen, Kontakte und Grenzen miteinbezieht und auf ana- lytischer Mechanik basiert, wird hergeleitet. Die Notation mit Hilfe von Jacobimatrizen wird eingefuhrt¨ um eine ganzheitliche Komplementarit¨atsformulierung zu erhalten. Zahlreiche Beispielverbindungen werden modelliert und detailgetreu erl¨autert. Parameter zur Fehlerkorrektur bezuglich¨ Abdriften der K¨orper, was auf die Full-Coordinate Methode zuruck-¨ zufuhren¨ ist, werden eingefuhrt¨ um die Fehler minimal zu halten. Ein besonderer Schwerpunkt liegt auf dem modularen Klassendesign, welches eine leichte zukunftige¨ Einbindung von wei- teren Verbindungsarten erm¨oglicht. Um die Eignung der Erweiterung zu zeigen, werden ausgew¨ahlte Beispielverbindungen imple- mentiert. Die Richtigkeit wird durch mehrere Testszenarien untermalt, welche die spezifischen Charakteristika jeder implementierten Verbindung prufen.¨ Die Ergebnisse dieser Validierungs- tests werden analysiert und weitere interessante Arten von Verbindungen sowie zukunftige¨ Erweiterungen der Implementierung vorgeschlagen. Acknowledgements I would like to thank Prof. Dr. Ulrich R¨udefor providing me with this interesting master thesis topic, for tutoring me throughout my studies and for offering me the great opportunity to attend the Multibody Dynamics Conference in Warsaw, which gave me a profound insight into the multibody community. Very special thanks to my supervisor Klaus Iglberger for his overall support and advice, not only in the context of this thesis, but also throughout the rest of my studies. Also, very special thanks to my \contact person" Tobias Preclik for several helpful hints and discussions and, moreover, for proofreading this thesis. Additionally, I would like to thank Tobias Gradl and Stefan Donath for several hints on the LaTeX layout of this thesis. Furthermore, many thanks to Dr. Harald K¨ostlerfor supporting and encouraging me during my studies. Contents Contents 1 Introduction1 1.1 Motivation......................................1 1.2 Overview.......................................2 2 Mechanical Background3 2.1 Classical Mechanics..................................3 2.1.1 Newton-Euler Equations for Contact Mechanics..............4 2.1.2 Integration of Joints.............................6 2.2 Analytical Mechanics.................................6 2.2.1 Velocity-based Constraint Formulation...................7 2.2.2 Bilateral Constraints.............................7 2.2.3 Unilateral Constraints............................8 2.3 Unified Constraint Formulation...........................9 3 Numerical Background 11 3.1 Linear Complementarity Problem.......................... 11 3.2 Solver......................................... 12 3.3 Error Reduction................................... 12 3.4 Limits......................................... 13 3.5 Unified Complementarity Notation......................... 14 4 Joint Modeling 17 4.1 Joint Types...................................... 17 4.1.1 Fixed Joint.................................. 18 4.1.2 Slider Joint.................................. 20 4.1.3 Hinge Joint.................................. 22 4.1.4 Contact Joint................................. 24 4.2 Joint Limits...................................... 25 4.2.1 Linear Limits................................. 26 4.2.2 Angular Limits................................ 27 5 Implementation 31 5.1 Data Preparation................................... 31 5.1.1 Data Storage and Allocation........................ 32 5.1.2 Data Insertion................................ 33 5.2 Class Design..................................... 37 5.3 Visualization..................................... 38 i Contents 6 Validation and Results 41 6.1 Fixed Joint...................................... 41 6.1.1 Test Scenario................................. 41 6.1.2 Results.................................... 42 6.2 Slider Joint...................................... 46 6.2.1 Test Scenario................................. 46 6.2.2 Results.................................... 46 6.3 Hinge Joint...................................... 50 6.3.1 Test Scenario................................. 50 6.3.2 Results.................................... 51 6.4 Planar Slider Crank Mechanism........................... 54 6.4.1 Test Scenario................................. 54 6.4.2 Results.................................... 54 7 Conclusions and Future Work 59 7.1 Conclusions...................................... 59 7.2 Future Work..................................... 60 Bibliography 63 ii List of Figures List of Figures 2.1 Sketch of a slider joint which can only move along one axis...........6 3.1 Dislocated ball-in-socket joint............................ 13 4.1 A fixed joint...................................... 18 4.2 Sketch of a fixed joint w.r.t. the global coordinate system............. 18 4.3 A slider joint...................................... 20 4.4 Sketch of a slider joint w.r.t. the global coordinate system............. 20 4.5 A hinge joint...................................... 22 4.6 Sketch of a hinge joint w.r.t. the global coordinate system............. 22 4.7 A contact joint..................................... 24 4.8 Sketch of a contact point w.r.t. the global coordinate system........... 25 4.9 Sign convention of the aperture angle of a hinge joint............... 28 4.10 An arbitrary initial angle of a hinge joint...................... 29 4.11 Calculation of an arbitrary initial angle of a hinge joint.............. 30 5.1 Hierarchy of the collision response module..................... 31 5.2 Example scenario................................... 34 5.3 Global Jacobian matrix of the example scenario.................. 34 5.4 Class design of the implementation.......................... 38 6.1 Test scenario
Recommended publications
  • Chapter 3 Dynamics of Rigid Body Systems
    Rigid Body Dynamics Algorithms Roy Featherstone Rigid Body Dynamics Algorithms Roy Featherstone The Austrailian National University Canberra, ACT Austrailia Library of Congress Control Number: 2007936980 ISBN 978-0-387-74314-1 ISBN 978-1-4899-7560-7 (eBook) Printed on acid-free paper. @ 2008 Springer Science+Business Media, LLC All rights reserved. This work may not be translated or copied in whole or in part without the written permission of the publisher (Springer Science+Business Media, LLC, 233 Spring Street, New York, NY 10013, USA), except for brief excerpts in connection with reviews or scholarly analysis. Use in connection with any form of information storage and retrieval, electronic adaptation, computer software, or by similar or dissimilar methodology now known or hereafter developed is forbidden. The use in this publication of trade names, trademarks, service marks and similar terms, even if they are not identified as such, is not to be taken as an expression of opinion as to whether or not they are subject to proprietary rights. 9 8 7 6 5 4 3 2 1 springer.com Preface The purpose of this book is to present a substantial collection of the most efficient algorithms for calculating rigid-body dynamics, and to explain them in enough detail that the reader can understand how they work, and how to adapt them (or create new algorithms) to suit the reader’s needs. The collection includes the following well-known algorithms: the recursive Newton-Euler algo- rithm, the composite-rigid-body algorithm and the articulated-body algorithm. It also includes algorithms for kinematic loops and floating bases.
    [Show full text]
  • Dynamics of Multibody Systems in Research and Education
    Editorial Dynamics of Multibody Systems in Research and Education prof. Ing. Štefan Segľa, CSc. Technical University of Košice, Faculty of Mechanical Engineering, Department of Applied Mechanics and Mechanical Engineering Štefan Segľa, prof., Ing., CSc., (born in 1954) is a professor at the Technical University of Košice, Faculty of Mechanical Engineering, Institute of Design and Process Engineering. He graduated from the Faculty of Mechanical Engineering, Czech Technical University in Prague in 1978. His research areas are kinematic and dynamic analysis and optimization of mechanical and mechatronical systems. He is an author of three monographs, twelve textbooks and more than one hundred scientific publications in journals and conference proceedings in Slovakia and abroad. Forteen papers are registered in Web of Science and SCOPUS. He is a member of IFToMM (International Federation for the Promotion of Mechanism and Machine Science), its Permanent Commission for the Standardization of Terminology and Multibody Dynamics, a vice-chairman of the Slovak National Committee of IFToMM, a member of the Czech Society of Mechanics, Slovak Society of Mechanics and Central European Association for Computational Mechanics. Many common mechanisms and machines such as vehicle and aircraft subsystems, robotic systems, biomechanical and mechatronic systems consist of rigid and deformable bodies that undergo large rigid body motion. The bodies are interconnected with kinematical constraints and coupling elements. The dynamics of these large-scale and nonlinear systems under dynamic loading in most cases can only be solved with methods of computational mechanics. For these systems the concept of the multibody dynamics can be successfuly utilized. Their mechanical models should be as complex as necessary but also as simple as possible.
    [Show full text]
  • Lie Group Formulation of Articulated Rigid Body Dynamics
    Lie Group Formulation of Articulated Rigid Body Dynamics Junggon Kim 12/10/2012, Ver 2.01 Abstract It has been usual in most old-style text books for dynamics to treat the formulas describing linear(or translational) and angular(or rotational) motion of a rigid body separately. For example, the famous Newton's 2nd law, f = ma, for the translational motion of a rigid body has its partner, so-called the Euler's equation which describes the rotational motion of the body. Separating translation and rotation, however, causes a huge complexity in deriving the equations of motion of articulated rigid body systems such as robots. In Section1, an elegant single equation of motion of a rigid body moving in 3D space is derived using a Lie group formulation. In Section2, the recursive Newton-Euler algorithm (inverse dynamics), Articulated-Body algorithm (forward dynamics) and a generalized recursive algorithm (hybrid dynamics) for open chains or tree-structured articulated body systems are rewritten with the geometric formulation for rigid body. In Section3, dynamics of constrained systems such as a closed loop mechanism will be described. Finally, in Section4, analytic derivatives of the dynamics algorithms, which would be useful for optimization and sensitivity analysis, are presented.1 1 Dynamics of a Rigid Body This section describes the equations of motion of a single rigid body in a geometric manner. 1.1 Rigid Body Motion To describe the motion of a rigid body, we need to represent both the position and orien- tation of the body. Let fBg be a coordinate frame attached to the rigid body and fAg be an arbitrary coordinate frame, and all coordinate frames will be right-handed Cartesian from now on.
    [Show full text]
  • Rigid Body Dynamics 2
    Rigid Body Dynamics 2 CSE169: Computer Animation Instructor: Steve Rotenberg UCSD, Winter 2017 Cross Product & Hat Operator Derivative of a Rotating Vector Let’s say that vector r is rotating around the origin, maintaining a fixed distance At any instant, it has an angular velocity of ω ω dr r ω r dt ω r Product Rule The product rule of differential calculus can be extended to vector and matrix products as well da b da db b a dt dt dt dab da db b a dt dt dt dA B dA dB B A dt dt dt Rigid Bodies We treat a rigid body as a system of particles, where the distance between any two particles is fixed We will assume that internal forces are generated to hold the relative positions fixed. These internal forces are all balanced out with Newton’s third law, so that they all cancel out and have no effect on the total momentum or angular momentum The rigid body can actually have an infinite number of particles, spread out over a finite volume Instead of mass being concentrated at discrete points, we will consider the density as being variable over the volume Rigid Body Mass With a system of particles, we defined the total mass as: n m m i i1 For a rigid body, we will define it as the integral of the density ρ over some volumetric domain Ω m d Angular Momentum The linear momentum of a particle is 퐩 = 푚퐯 We define the moment of momentum (or angular momentum) of a particle at some offset r as the vector 퐋 = 퐫 × 퐩 Like linear momentum, angular momentum is conserved in a mechanical system If the particle is constrained only
    [Show full text]
  • Modeling of Flexible Multibody Systems Excited by Moving Loads with Application to a Robotic Portal System
    CORE Metadata, citation and similar papers at core.ac.uk Provided by Institute of Transport Research:Publications The 2nd Joint International Conference on Multibody System Dynamics May 29–June 1, 2012, Stuttgart, Germany Modeling of Flexible Multibody Systems Excited by Moving Loads with Application to a Robotic Portal System Stefan Hartweg and Andreas Heckmann Department of System Dynamics and Control Robotics and Mechatronics Center (RMC) German Aerospace Center (DLR) Muenchner Strasse 20, D-82234 Wessling, Germany [Stefan.Hartweg, Andreas.Heckmann]@DLR.de ABSTRACT In this paper, an approach to solve mechanical problems with moving loads and flexible bodies is presented. Therefore, the multi-disciplinary modeling language Modelica together with the DLR FlexibleBodies Li- brary is utilized. Rather than solving the equations of motion analytically, this approach solves them numer- ically. While large overall motions of the flexible parts are described using the Floating Frame of Reference (FFR) method, the deformation is represented by appropriate shape functions. It is shown how a subsystem with masses and spring-damper elements can be connected to the flexible body and how the occurring forces of this moving load affect it. The equations of motion are derived in a general way, yielding a formulation compatible to e. g. a finite element models which are reduced to global shape functions. The usage of this formulation is shown for the simulation of a robotic portal system. 1 INTRODUCTION A variety of structures in the field of engineering is subject to moving loads. These loads can result from external forces, masses or whole subsystems moving with constant or varying velocity along the structure.
    [Show full text]
  • Newton Euler Equations of Motion Examples
    Newton Euler Equations Of Motion Examples Alto and onymous Antonino often interloping some obligations excursively or outstrikes sunward. Pasteboard and Sarmatia Kincaid never flits his redwood! Potatory and larboard Leighton never roller-skating otherwhile when Trip notarizes his counterproofs. Velocity thus resulting in the tumbling motion of rigid bodies. Equations of motion Euler-Lagrange Newton-Euler Equations of motion. Motion of examples of experiments that a random walker uses cookies. Forces by each other two examples of example are second kind, we will refer to specify any parameter in. 213 Translational and Rotational Equations of Motion. Robotics Lecture Dynamics. Independence from a thorough description and angular velocity as expected or tofollowa userdefined behaviour does it only be loaded geometry in an appropriate cuts in. An interface to derive a particular instance: divide and author provides a positive moment is to express to output side can be run at all previous step. The analysis of rotational motions which make necessary to decide whether rotations are. For xddot and whatnot in which a very much easier in which together or arena where to use them in two backwards operation complies with respect to rotations. Which influence of examples are true, is due to independent coordinates. On sameor adjacent joints at each moment equation is also be more specific white ellipses represent rotations are unconditionally stable, for motion break down direction. Unit quaternions or Euler parameters are known to be well suited for the. The angular momentum and time and runnable python code. The example will be run physics examples are models can be symbolic generator runs faster rotation kinetic energy.
    [Show full text]
  • Leonhard Euler - Wikipedia, the Free Encyclopedia Page 1 of 14
    Leonhard Euler - Wikipedia, the free encyclopedia Page 1 of 14 Leonhard Euler From Wikipedia, the free encyclopedia Leonhard Euler ( German pronunciation: [l]; English Leonhard Euler approximation, "Oiler" [1] 15 April 1707 – 18 September 1783) was a pioneering Swiss mathematician and physicist. He made important discoveries in fields as diverse as infinitesimal calculus and graph theory. He also introduced much of the modern mathematical terminology and notation, particularly for mathematical analysis, such as the notion of a mathematical function.[2] He is also renowned for his work in mechanics, fluid dynamics, optics, and astronomy. Euler spent most of his adult life in St. Petersburg, Russia, and in Berlin, Prussia. He is considered to be the preeminent mathematician of the 18th century, and one of the greatest of all time. He is also one of the most prolific mathematicians ever; his collected works fill 60–80 quarto volumes. [3] A statement attributed to Pierre-Simon Laplace expresses Euler's influence on mathematics: "Read Euler, read Euler, he is our teacher in all things," which has also been translated as "Read Portrait by Emanuel Handmann 1756(?) Euler, read Euler, he is the master of us all." [4] Born 15 April 1707 Euler was featured on the sixth series of the Swiss 10- Basel, Switzerland franc banknote and on numerous Swiss, German, and Died Russian postage stamps. The asteroid 2002 Euler was 18 September 1783 (aged 76) named in his honor. He is also commemorated by the [OS: 7 September 1783] Lutheran Church on their Calendar of Saints on 24 St. Petersburg, Russia May – he was a devout Christian (and believer in Residence Prussia, Russia biblical inerrancy) who wrote apologetics and argued Switzerland [5] forcefully against the prominent atheists of his time.
    [Show full text]
  • Lecture L27 - 3D Rigid Body Dynamics: Kinetic Energy; Instability; Equations of Motion
    J. Peraire, S. Widnall 16.07 Dynamics Fall 2008 Version 2.0 Lecture L27 - 3D Rigid Body Dynamics: Kinetic Energy; Instability; Equations of Motion 3D Rigid Body Dynamics In Lecture 25 and 26, we laid the foundation for our study of the three-dimensional dynamics of rigid bodies by: 1.) developing the framework for the description of changes in angular velocity due to a general motion of a three-dimensional rotating body; and 2.) developing the framework for the effects of the distribution of mass of a three-dimensional rotating body on its motion, defining the principal axes of a body, the inertia tensor, and how to change from one reference coordinate system to another. We now undertake the description of angular momentum, moments and motion of a general three-dimensional rotating body. We approach this very difficult general problem from two points of view. The first is to prescribe the motion in term of given rotations about fixed axes and solve for the force system required to sustain this motion. The second is to study the ”free” motions of a body in a simple force field such as gravitational force acting through the center of mass or ”free” motion such as occurs in a ”zero-g” environment. The typical problems in this second category involve gyroscopes and spinning tops. The second set of problems is by far the more difficult. Before we begin this general approach, we examine a case where kinetic energy can give us considerable insight into the behavior of a rotating body. This example has considerable practical importance and its neglect has been the cause of several system failures.
    [Show full text]
  • A Review on Application of Multibody Dynamics in the Field of Robotics
    © 2019 JETIR January 2019, Volume 6, Issue 1 www.jetir.org (ISSN-2349-5162) A Review on Application of Multibody Dynamics in the Field of Robotics Nitin Chauhan1, Dr. Manjeet Singh Sekhon2 1, 2 – Assistant Professor, School of Mechanical Engineering, Lovely Professional University ABSTRACT With advancements in technology, robots have become very common. As robots consists of multiple connected links and moving parts, their design involves multibody dynamic analysis. This paper reviews how multibody dynamics have been explored as a design tool in the field of robotics. INTRODUCTION Most of the machines and systems including automobiles consists of a number of solid bodies that are interconnected to each other and motion of one component results in constrained motion of other. Such systems are called multibody systems[1]. Suspension systems in automobiles, landing gear of an aircraft, robotic manipulators, wind turbines all are examples of multibody systems. As different components are interacting together in a multibody system, for designing the system it becomes important to analyze how motion and forces are transmitted in the body. The study of motion of multibody system under the influence of force is commonly termed as multibody dynamics. Figure 1 Example of Multi-body Systems [1] A multibody dynamic analysis involves study of the movement of, impact of multiple bodies. As a robot manipulator consists of multiple links connected together and is used for applications that require control over path and forces involved in movement, multibody dynamics is used in robotics for manipulator design and motion analysis. This paper discusses the research trends in the application areas of multibody dynamics and major applications of MBD in the field of robotics.
    [Show full text]
  • 8.09(F14) Chapter 2: Rigid Body Dynamics
    Chapter 2 Rigid Body Dynamics 2.1 Coordinates of a Rigid Body A set of N particles forms a rigid body if the distance between any 2 particles is fixed: rij ≡ jri − rjj = cij = constant: (2.1) Given these constraints, how many generalized coordinates are there? If we know 3 non-collinear points in the body, the remaing points are fully determined by triangulation. The first point has 3 coordinates for translation in 3 dimensions. The second point has 2 coordinates for spherical rotation about the first point, as r12 is fixed. The third point has one coordinate for circular rotation about the axis of r12, as r13 and r23 are fixed. Hence, there are 6 independent coordinates, as represented in Fig. 2.1. This result is independent of N, so this also applies to a continuous body (in the limit of N ! 1). Figure 2.1: 3 non-collinear points can be fully determined by using only 6 coordinates. Since the distances between any two other points are fixed in the rigid body, any other point of the body is fully determined by the distance to these 3 points. 29 CHAPTER 2. RIGID BODY DYNAMICS The translations of the body require three spatial coordinates. These translations can be taken from any fixed point in the body. Typically the fixed point is the center of mass (CM), defined as: 1 X R = m r ; (2.2) M i i i where mi is the mass of the i-th particle and ri the position of that particle with respect to a fixed origin and set of axes (which will notationally be unprimed) as in Fig.
    [Show full text]
  • Multibody System Dynamics (IMSD) Was Held at the Institute of Engineering and Computational Mechanics at the University of Stuttgart, Germany in May 29 - June 1, 2012
    Final Report of the IMSD 2012 Stuttgart, Germany For more information www.itm.uni-stuttgart.de/imsd2012 1. Summary The Joint International Conference on Multibody System Dynamics (IMSD) was held at the Institute of Engineering and Computational Mechanics at the University of Stuttgart, Germany in May 29 - June 1, 2012. The IMSD conference is a biannual series that serves as a meeting point for the international Multibody community and as an opportunity to exchange high-level, current information on the theory and applications of Multibody systems. As a rapidly growing branch of mechanical dynamics, Multibody System Dynamics is seeing more and more use, and is becoming increasingly important in the development of complex engineered systems. The continual new challenges faced by the IMSD community demand productive conference forums where ideas are freely exchanged and a spirit of cooperation is encouraged. Overview of the Conference Besides seven distinguished keynote lectures, 56 technical sessions were held, offering 192 technical presentations authored by more than 450 authors. In total, 299 participants from 29 different countries participated in the IMSD 2012. The conference website can be found at: http://www.itm.uni-stuttgart.de/imsd2012 We would like to thank the following institutional sponsors for their highly appreciated support. ASME (American Society of Mechanical Engineers) IFToMM (International Federation for the Promotion of Mechanism and Machine Science) IUTAM (International Union of Theoretical and Applied Mechanics) JSME (Japan Society of Mechanical Engineers) KSME (Korean Society of Mechanical Engineers) We would like to thank the following industrial sponsors for their highly appreciated support. Alcatel-Lucent Carl Zeiss SMT ESTA Apparatebau FunctionBay GmbH Maplesoft Europe Robert Bosch GmbH SIMPACK The organization of the IMSD 2012 was supervised by an International Steering Committee consisting of the following distinguished academics.
    [Show full text]
  • 2D Rigid Body Dynamics: Work and Energy
    J. Peraire, S. Widnall 16.07 Dynamics Fall 2008 Version 1.0 Lecture L22 - 2D Rigid Body Dynamics: Work and Energy In this lecture, we will revisit the principle of work and energy introduced in lecture L11-13 for particle dynamics, and extend it to 2D rigid body dynamics. Kinetic Energy for a 2D Rigid Body We start by recalling the kinetic energy expression for a system of particles derived in lecture L11, n 1 2 X 1 02 T = mvG + mir_i ; 2 2 i=1 0 where n is the total number of particles, mi denotes the mass of particle i, and ri is the position vector of Pn particle i with respect to the center of mass, G. Also, m = i=1 mi is the total mass of the system, and vG is the velocity of the center of mass. The above expression states that the kinetic energy of a system of particles equals the kinetic energy of a particle of mass m moving with the velocity of the center of mass, plus the kinetic energy due to the motion of the particles relative to the center of mass, G. For a 2D rigid body, the velocity of all particles relative to the center of mass is a pure rotation. Thus, we can write 0 0 r_ i = ! × ri: Therefore, we have n n n X 1 02 X 1 0 0 X 1 02 2 mir_i = mi(! × ri) · (! × ri) = miri ! ; 2 2 2 i=1 i=1 i=1 0 Pn 02 where we have used the fact that ! and ri are perpendicular.
    [Show full text]