BUILDING A BETTER PASSIVE WALKER

Size: px
Start display at page:

Download "BUILDING A BETTER PASSIVE WALKER"

Transcription

1 BUILDING A BETTER PASSIVE WALKER Abstract - A passive dynamic walker is a mechanism which uses gravitational energy to walk down an incline with a periodic gait. Simple passive dynamic walkers have an inner and outer set of equal length legs which are pinned together at the hip. To prevent tripping, these walkers require alternating stepping stones for the feet to walk on top of. My senior design project involved building a passive dynamic walker which did not require stepping stones to walk down a slope. The walker was functional, but it could be improved significantly. For my RISE project, I was tasked with implementing these changes to build a better passive dynamic walker. I learned about the mathematic theory behind these walkers. I then used Matlab code developed by Professor Remy and computer aided design software to design a more optimized passive dynamic walker. Finally, I built the walker and implemented an Arduino control system to lift the inner legs. The project was a success. The final walker is larger, more durable, and walks with a periodic gait over a 0.5 to 6.0 range of slope angles. I. Introduction A. Passive Dynamics and their Application Researchers have been trying to create legged robots since the late 1960s. The Phony Pony, built in 1968, was the first mechanical walking system coordinated by a computer. [1] The unique abilities of legged robots lie in the combined features of torque-controllability, portability, ability to move quickly, joint mobility allowing it to climb over significant obstacles, and suitability for human interaction [2]. In the 1980s, two design philosophies began to emerge to design walking robots. One approach focused on developing robust statically stable gaits, generally through the use of precisely controllable, stiff drive mechanisms [3]. These stiff drive mechanisms allow the robot to have precise control over the position of its weight placement, but they require a significant amount of electrical and computing power to do so. In 1990, McGeer pioneered a new way to design walking robots by utilizing passive dynamic walking. The practical motivation for studying Brian A. McCann passive walking is that it makes for mechanical simplicity and relatively high efficiency [4]. Designing legged robots around passive dynamics allows them to walk significantly further with less energy consumption. If designed correctly, these robots can walk down inclines by only utilizing gravity. To achieve passive dynamic motion, these robots must be designed to have a periodically stable gait. A periodic gait refers to a gait where each stride is identical the next. Passive dynamic walkers are unique in that they are statically unstable, but dynamically stable due to their periodic gait. If they are stood upright, they will fall over. However, when they are walking they will continually catch themselves from falling which results in a dynamically stable system. Although the periodicity of the gait is important, it is also critical that the gait is stable. For a gait to be stable, small perturbations to the walker must be naturally damped out from the kinematics of the system. If the gait is not stable, then it will not function outside of simulations. Just as an inverted pendulum is theoretically stable when vertical, it is possible to find periodic gaits which are only stable if left completely untouched. In the real world, manufacturing tolerances and other small imperfections will cause the real world gait to be slightly different from the computer simulation. B. Previous Work In ME450, my senior design class, I worked with 3 other students to develop a passive dynamic walker which would be able to walk down a smooth incline without stepping stones. Figure 1 shows this walker. Servo to Control Inner Legs Lithium Ion Batteries Figure 1: The ME450 passive dynamic walker.

2 Professor Remy was our group s sponsor and he wanted us to build the walker to demonstrate control systems to the ME350 class. The only design constraint we had was to make a walker that was functional. We were provided with a tutorial on passive dynamic walkers as well as accompanying Matlab code. The tutorial was part of a summer class program on passive dynamic walkers offered by TU Delft where the students would build a simple stepping stone style walker as shown in Figure 2, below. Raised stepping stones Adjustable masses for tuning the walker s gait Figure 2: The simplest "stepping stone" style passive dynamic walker [5] The code would simulate a walker based on the following design parameters: not periodic. The robot had large feet and a low center of mass which allowed to catch itself when it began to fall. The robot was also much smaller than what our sponsor wanted. It was too small to be seen in a lecture hall and thus made a poor demonstration tool. Finally, the durability of the robot was questionable. It did not have any durability issues during testing, but some wires began to pull out during the design expo after several hours of heavy use. I chose to make an improved passive walker as my individual study project for two reasons. First, I wanted to understand the math behind these systems. In ME450, nobody in the group understood exactly what the code was doing to simulate the walker. I wanted to understand the mathematics behind the problem we were trying to solve. The second reason is that I simply wanted to build an improved walker which could walk with a smooth, stable, and periodic gait. II. Methods A. Model The model for the passive dynamic walker consists of an inner and outer set of legs joined at the hip. These legs have equal mass, inertia, and center of gravity locations. Leg Length Leg Mass Leg Inertia Foot Radius Center of Mass Location Slope of the Incline We modified the code with a nested loop to iterate through every combination of the design parameters within a specified range. The simulation took 4 computers several hours to run through 7 million iterations to find about 25 stable and manufacturable options. The final build parameters we chose were in the middle of an island of stability where only the leg inertia varied between the solutions. The final robot was successfully able to walk down smooth inclined surfaces, although there were several issues with it. First, the robot s gait was Figure 3: The simplest Passive Dynamic Walker Model [6] Lagrange equations are used to describe the system rather than free body diagrams. The Lagrange method allows the bodies of the walker to be described by two variables: γ, the angle of the first leg with respect to the ground and α, the angle between the two legs. By differentiating the kinetic

3 and potential energy equations of the system, the equations of motion are found. M(q)q + b(q, q ) + g(q) = J c T F c (1) q is a vector of the generalized coordinates M is the mass matrix b is a matrix containing the coriolis forces g is the gravity matrix J c T is the contact jacobian F c is the contact force matrix Professor Remy s Doctoral thesis, A MATLAB Framework for Efficient Gait Creation, and the accompanying Matlab code were used to determine the walker parameters. Rather than test every possible combination, Remy s Matlab code attempts to find stable walker parameters by finding a periodic limit cycle and then determining the stability of the limit cycle. B. Finding a Periodic Limit Cycle Periodicity of the walker s gait is determined by ensuring the conditions of the walker at the beginning of a stride are the same as the conditions at the end of a stride. The vector x k defines the initial state and x k+1 defines the terminal state of the walker. A function P is used to link the initial and terminal states. For a function to be periodic, the initial and terminal states must be the same such that: x k+1 = P (x k, p) = x k (2) P is the Poincaré map of the system and p is a vector which contains the physical walker parameters. The Poincaré map is a plot of where the walker s trajectory intersects with some section transverse to the trajectory s flow. For this passive walker model, the transverse section is defined as the end of a stride. If the walker s gait is perfectly periodic, the walker s Poincaré map will be a single point. This is because the walker s trajectory will intersect the transverse section at the same location every time. If the walker s gait is not periodic, the Poincaré map will be populated with several points scattered about the transverse section. If there is a root of x * which solves equation (3), then a periodic gait has been found. P (x, p) x = 0 (3) Equation (3) is an implicit differential equation and is solved using Matlab s ODE45 function. C. Evaluating the Periodic Gait s Stability After a periodic gait is found, the stability of the gait must be analyzed. For a gait to be stable, a small perturbation to the walker s motion must be damped out over time and return to its original gait. A stable gait is critical for a walker to function in the real world. If the walker has a periodic gait which is made unstable by some small external force, then any imperfection will cause the walker to fall. The stability of the limit cycle is assessed by linearizing the Poincaré map with a Taylor series expansion. Ignoring higher order terms and simplifying, the following equation is derived. x k+1 = J x x k (4) Jx is the monodromy matrix of the Poincaré map [7]. The monodromy matrix essentially links a small perturbation for each of the variables of the begin-ofstride state to the resultant perturbation of the end-ofstride state. The eigenvalues of J x are called Floquet multipliers. If any of the Floquet multipliers have a magnitude greater than 1, then the perturbations will intensify with each step, causing the system to be unstable. If all of the Floquet multipliers are less than 1, then any small perturbations will diminish over time and the walker is stable. III. Design and Manufacturing A. Mechanical Design The mechanical design for the walker is difficult because the design of the walker can only be validated by the simulation code once it is already designed. Therefore, the initial design of the robot must be an educated guess. I used my intuition from designing the ME450 walker to design a larger walker in CAD which I felt could walk successfully. I then used CAD to evaluate the walker parameters which are the same as the parameters used to design the simple passive walkers mentioned above so I

4 could put these into the simulation software. Based on the simulation results, I modified my design to fit the simulation as closely as possible and then ran the new design through the simulation. I iterated through this process until I designed a walker which had the parameters shown in Table 1, below. Table 1: Walker Design Parameters Leg Length m Body Mass kg Leg Mass kg COG Location (Along Leg Axis) m COG Location (Perp. To Leg Axis) m Inertia About Centroid of the Legs kg*m 2 Radius of Feet m Slope Angle 1 One problem I encountered during the design phase of the walker was the importance of the prescribed initial conditions. In addition to the physical design parameters, the user must enter the initial conditions of the walker into a script called ContStateDefinition.m. These initial conditions [γ, γ, α, α ] are defined as follows: γ Angle between stance leg and ground γ Angular Velocity of Stance Leg α Angle between the legs α Angular Velocity between the legs By default, the initial conditions were set at [0.3, -0.5, -0.6, 0.5]. These conditions worked for the code s default walker, but they cause my walker designs to fail on the first simulated step. Eventually I discovered this was because the inertia of my walkers was much higher than the code s default walker. The code finds a periodic solution by varying the initial conditions until a solution is found, but the user defined first guess needs to be close to the periodic value for the solver to converge. The solution I found was to slow down the initial conditions to end up at the following vector: [0.2, -0.25, -0.2, 0.25]. The chassis of the new walker is twice the size and much more durable than the 450 walker. Every structural component is made from CNC machined 6061-T6 aluminum for dimensional accuracy, weight savings, and durability. The inner Foam for impact protection Electronics housed in upper chassis Ball bearings reduce joint friction High speed, high torque servo T-slot linear sliders Batteries housed in shrink wrap Figure 4: Final Passive Dynamic Walker legs are constrained by two T-slot guide rails. These rails are a significant improvement over the dowel pin sliders from the ME450 walker because they can t pull out, they do not bind, and they have much less compliance than the dowel sliders. Ball bearings are used to reduce friction in the hip joint and Helicoil threaded inserts are used in set screw holes to reduce the risk of stripping threads. Foam tape has also been added to the top of the robot to protect it when it falls. The wiring has been significantly improved with all the electrical components tightly packaged in the upper chassis of the robot. The wires have been properly sized and routed around the robot to avoid any of them pulling out or catching on objects. The batteries and additional tuning weights are shrink wrapped to the outer legs of the robot to ensure the tuned mass distribution of the walker does not change even with heavy use. B. Electronics and Controls The controller is an Arduino Micro due to its small size, low cost, and ease of programming. The legs of the robot are actuated by a Futaba S9551 servo powered by two lightweight lithium ion batteries and a small voltage regulator. A small servo was chosen over a motor because it allows for tight packaging and it is easy to accurately control the position with an Arduino. The S9551 model was chosen in particular because it can rotate 60 in 0.11 seconds and can output a maximum torque of 8.8 kg-

5 cm. The leg actuation needs to be as quick as possible because these walkers can misstep if they are not started perfectly. If the legs actuate quickly enough, the walker can recover and continue walking. The servo has a 10x safety factor on torque to ensure the legs do not retract under the impact force of a step which could throw off the kinematics of the walker. The leg actuation control system is based on the phase angle (φ) of the leg position (θ) and velocity (ω), as shown in Figure 5, below. II I position. This threshold is based on the magnitude of the motor velocity and phase angle. Because the center of mass is positioned along the centerline of the legs, it is possible for the robot to walk both forwards and backwards down a slope. When the robot is turned on, it will wait until the inner legs are pulled back to the usual starting position. It will assume this position coincides with the quadrant III phase angle and the robot will walk successfully in that direction when released. To change walking directions, the user must restart the Arduino and repeat the procedure with the robot facing the other direction. IV. Testing III IV Figure 5: Diagram of the Walker's Control System To start the robot, the user pulls the inner legs backwards. In this position, the phase angle is in quadrant III, and the legs are in their retract state. When the user lets go of the legs, the inner legs swing forwards and the phase angle enters quadrant IV. Once the inner legs reach their apex, they begin to swing backwards and the phase angle enters quadrant I causing the legs to extend. As the outer legs swing past the inner legs, the phase angle enters quadrant II where the inner legs retract. Once the inner legs begin to swing towards the front of the walker, the phase angle is in quadrant III and the cycle repeats periodically. This control method was chosen because only two leg states are required for the robot to walk: fully extended and fully retracted. The inclusion of a neutral state allows the legs to move into a position which halves the distance between either the extend or retract states when the inner legs are swinging through a region where tripping will not occur. This control method emulates the stepping stones which the simple passive walker must use to walk. To reduce erratic servo motion, a threshold must be exceeded for the servo to exit its neutral The gait of the new walker is much better than the ME450 walker. Once the new walker finds its gait, it will smoothly walk to the end of the 4ft testing ramp. Successfully starting the walker does have a learning curve, however. To quantify the performance of the walker, I found a volunteer who had never used a passive walker before. I quickly demonstrated the walker and then let them play with it for 5 minutes before starting the test. The volunteer tested the walker at ramp angles ranging from 0.5 to 6.0 with 10 attempts at each increment. False starts where the walker failed to take its first step were not included in the data. This data was excluded because failing to take 1 step is attributed to user error rather than instability of the walker. As discovered during the design phase of the walker, as long as the initial conditions of the walker are close to the periodic conditions, the walker should be able to find a periodic gait. While the gaits for the walker are stable, they are not able to recover if a large force disrupts the gait or if the initial conditions are not even close to the periodic conditions. If a mechanism were created which could consistently release the walker at prescribed initial conditions, then the walker should walk down the ramp every time. Two measurements were used to gauge the success of the walker (Fig. 6). The first is the number of steps which the walker was able to take. This measurement shows the periodicity and stability of the robot, specifically at ramp angles less than 3. At angles of 3 and greater, the number of

6 Ramp Angle steps becomes a poor way to measure the success of the robot. This is because the number of steps required to reach the end of the test ramp reduces to only 6 or 7 steps. Therefore, I also decided to also measure the walker s success by the number of times it was able to successfully walk down the entire length of the ramp. For the casual observer watching a demonstration of this robot, success will likely be seen as whether or not the robot can walk to the end of the test ramp without falling. An objectively better way to measure success would be the number of steps taken on an inclined treadmill so that the length of the ramp did not matter, however I did not have access to a treadmill during my testing. The ramp angles near 1 tended to have the best success rate as this was the slope the robot was optimized around. The walker was able to find a periodic gait all the way up to a 6 ramp angle. Although the ME450 walker was able to walk down the same range of slope angles with a similar success rate, the gait it exhibited was never periodic. Because of this, I conclude that the new walker is an objectively better passive walker than the ME450 walker. V. Conclusion Average Number of Steps Reached End of Ramp Figure 6: Test Results of the Passive Dynamic Walker With a better understanding of the theory behind passive dynamic walkers and better simulation tools, I was able to build a much more successful passive dynamic walker. The fundamental problem with these walkers lies in the importance of the initial conditions to make it walk. When the robot is started by a human, it is impossible to ensure the correct initial conditions are met. It takes practice to learn how to use the walker correctly, but I have found it only takes a novice about 5 minutes to learn how to start the walker with reasonable success. The only way to ensure proper initial conditions on every start attempt would be to design a launching mechanism for the robot which allows the user to specify the initial conditions. I feel this would be the best way to improve upon the performance of the walker. From my experience, I do not believe truly passive walkers will find widespread use in reducing legged robot energy consumption because their gaits are too easily disrupted. However, controlled robots designed around these theories could save considerable amounts of energy. REFERENCES [1] Csonka, P., & Waldron, K. (2011). A Brief..History of Legged Robotics. Technology..Developments: The Role of Mechanism and..machine Science and IFToMM, [2] NCCR Robotics. (2015, February 26)...Retrieved April 25, 2015, from.. robotics.ch/rescueleggedrobots [3] Csonka, P., & Waldron, K. (2011). A Brief..History of Legged Robotics. Technology..Developments: The Role of Mechanism and..machine Science and IFToMM, [4] Mcgeer, T. (1990). Passive Dynamic Walking...The International Journal of Robotics Research, [5] C. David Remy (2011). A Matlab..Framework for Efficient Gait Creation..[Accompanying Matlab Code]. [6] Hutter, M. (2011). Dynamic Walking and..running with Robots: Robotic Summer..School Modeling of a Passive..Dynamic..Walker. [7] C. Remy, Buffinton, K., & Siegwart, R...(2011). A MATLAB Framework for Efficient..Gait Creation.

Motion Control of a Bipedal Walking Robot

Motion Control of a Bipedal Walking Robot Motion Control of a Bipedal Walking Robot Lai Wei Ying, Tang Howe Hing, Mohamed bin Hussein Faculty of Mechanical Engineering Universiti Teknologi Malaysia, 81310 UTM Skudai, Johor, Malaysia. Wylai2@live.my

More information

OPTIMAL TRAJECTORY GENERATION OF COMPASS-GAIT BIPED BASED ON PASSIVE DYNAMIC WALKING

OPTIMAL TRAJECTORY GENERATION OF COMPASS-GAIT BIPED BASED ON PASSIVE DYNAMIC WALKING OPTIMAL TRAJECTORY GENERATION OF COMPASS-GAIT BIPED BASED ON PASSIVE DYNAMIC WALKING Minseung Kim Dept. of Computer Science Illinois Institute of Technology 3201 S. State St. Box 2082 Chicago IL 60616

More information

Biomechanics and Models of Locomotion

Biomechanics and Models of Locomotion Physics-Based Models for People Tracking: Biomechanics and Models of Locomotion Marcus Brubaker 1 Leonid Sigal 1,2 David J Fleet 1 1 University of Toronto 2 Disney Research, Pittsburgh Biomechanics Biomechanics

More information

Journal of Chemical and Pharmaceutical Research, 2016, 8(6): Research Article. Walking Robot Stability Based on Inverted Pendulum Model

Journal of Chemical and Pharmaceutical Research, 2016, 8(6): Research Article. Walking Robot Stability Based on Inverted Pendulum Model Available online www.jocpr.com Journal of Chemical and Pharmaceutical Research, 2016, 8(6):463-467 Research Article ISSN : 0975-7384 CODEN(USA) : JCPRC5 Walking Robot Stability Based on Inverted Pendulum

More information

Kochi University of Technology Aca Study on Dynamic Analysis and Wea Title stem for Golf Swing Author(s) LI, Zhiwei Citation 高知工科大学, 博士論文. Date of 2015-03 issue URL http://hdl.handle.net/10173/1281 Rights

More information

Using GPOPS-II to optimize sum of squared torques of a double pendulum as a prosthesis leg. Abstract

Using GPOPS-II to optimize sum of squared torques of a double pendulum as a prosthesis leg. Abstract Using GPOPS-II to optimize sum of squared torques of a double pendulum as a prosthesis leg Abstract Milad Zarei MCE 593 Prosthesis Design & Control A two-dimensional, two links pendulum is developed to

More information

Body Stabilization of PDW toward Humanoid Walking

Body Stabilization of PDW toward Humanoid Walking Body Stabilization of PDW toward Humanoid Walking Masaki Haruna, Masaki Ogino, Koh Hosoda, Minoru Asada Dept. of Adaptive Machine Systems, Osaka University, Suita, Osaka, 565-0871, Japan ABSTRACT Passive

More information

Humanoid Robots and biped locomotion. Contact: Egidio Falotico

Humanoid Robots and biped locomotion. Contact: Egidio Falotico Humanoid Robots and biped locomotion Contact: Egidio Falotico e.falotico@sssup.it Outline What is a Humanoid? Why Develop Humanoids? Challenges in Humanoid robotics Active vs Passive Locomotion Active

More information

Creation of a Fallback Catch Method. Megan Berry Mechanical Engineering Senior MAE 490 (4 credits)

Creation of a Fallback Catch Method. Megan Berry Mechanical Engineering Senior MAE 490 (4 credits) Creation of a Fallback Catch Method Megan Berry Mechanical Engineering Senior MAE 490 (4 credits) Abstract In order that the Cornell Ranger remains autonomous during long distance record attempts and avoids

More information

PERCEPTIVE ROBOT MOVING IN 3D WORLD. D.E- Okhotsimsky, A.K. Platonov USSR

PERCEPTIVE ROBOT MOVING IN 3D WORLD. D.E- Okhotsimsky, A.K. Platonov USSR PERCEPTIVE ROBOT MOVING IN 3D WORLD D.E- Okhotsimsky, A.K. Platonov USSR Abstract. This paper reflects the state of development of multilevel control algorithms for a six-legged mobile robot. The robot

More information

John Sushko. Major Professor: Kyle B. Reed, Ph.D. Rajiv Dubey, Ph.D. Jose Porteiro, Ph.D. Date of Approval: October 21, 2011

John Sushko. Major Professor: Kyle B. Reed, Ph.D. Rajiv Dubey, Ph.D. Jose Porteiro, Ph.D. Date of Approval: October 21, 2011 Asymmetric Passive Dynamic Walker Used to Examine Gait Rehabilitation Methods by John Sushko A thesis submitted in partial fulfillment of the requirements for the degree of Master of Science Department

More information

In memory of Dr. Kevin P. Granata, my graduate advisor, who was killed protecting others on the morning of April 16, 2007.

In memory of Dr. Kevin P. Granata, my graduate advisor, who was killed protecting others on the morning of April 16, 2007. Acknowledgement In memory of Dr. Kevin P. Granata, my graduate advisor, who was killed protecting others on the morning of April 16, 2007. There are many others without whom I could not have completed

More information

A NEW GOLF-SWING ROBOT MODEL UTILIZING SHAFT ELASTICITY

A NEW GOLF-SWING ROBOT MODEL UTILIZING SHAFT ELASTICITY Journal of Sound and Vibration (1998) 17(1), 17 31 Article No. sv981733 A NEW GOLF-SWING ROBOT MODEL UTILIZING SHAFT ELASTICITY S. SUZUKI Department of Mechanical System Engineering, Kitami Institute of

More information

Controlling Velocity In Bipedal Walking: A Dynamic Programming Approach

Controlling Velocity In Bipedal Walking: A Dynamic Programming Approach Controlling Velocity In Bipedal Walking: A Dynamic Programming Approach Thijs Mandersloot and Martijn Wisse Delft University of Technology Delft, Netherlands thijs.mandersloot@gmail.com, m.wisse@tudelft.nl

More information

ZMP Trajectory Generation for Reduced Trunk Motions of Biped Robots

ZMP Trajectory Generation for Reduced Trunk Motions of Biped Robots ZMP Trajectory Generation for Reduced Trunk Motions of Biped Robots Jong H. Park School of Mechanical Engineering Hanyang University Seoul, 33-79, Korea email:jong.park@ieee.org Yong K. Rhee School of

More information

Human Pose Tracking III: Dynamics. David Fleet University of Toronto

Human Pose Tracking III: Dynamics. David Fleet University of Toronto Human Pose Tracking III: Dynamics David Fleet University of Toronto CIFAR Summer School, 2009 Interactions with the world are fundamental Implausible motions [Poon and Fleet, 01] Kinematic Model: damped

More information

CHAPTER IV FINITE ELEMENT ANALYSIS OF THE KNEE JOINT WITHOUT A MEDICAL IMPLANT

CHAPTER IV FINITE ELEMENT ANALYSIS OF THE KNEE JOINT WITHOUT A MEDICAL IMPLANT 39 CHAPTER IV FINITE ELEMENT ANALYSIS OF THE KNEE JOINT WITHOUT A MEDICAL IMPLANT 4.1 Modeling in Biomechanics The human body, apart of all its other functions is a mechanical mechanism and a structure,

More information

ROSE-HULMAN INSTITUTE OF TECHNOLOGY Department of Mechanical Engineering. Mini-project 3 Tennis ball launcher

ROSE-HULMAN INSTITUTE OF TECHNOLOGY Department of Mechanical Engineering. Mini-project 3 Tennis ball launcher Mini-project 3 Tennis ball launcher Mini-Project 3 requires you to use MATLAB to model the trajectory of a tennis ball being shot from a tennis ball launcher to a player. The tennis ball trajectory model

More information

Foot Placement in the Simplest Slope Walker Reveals a Wide Range of Walking Solutions

Foot Placement in the Simplest Slope Walker Reveals a Wide Range of Walking Solutions Foot Placement in the Simplest Slope Walker Reveals a Wide Range of Walking Solutions Pranav A. Bhounsule Abstract We show that the simplest slope walker can walk over wide combinations of step lengths

More information

Stable Upright Walking and Running using a simple Pendulum based Control Scheme

Stable Upright Walking and Running using a simple Pendulum based Control Scheme 1 Stable Upright Walking and Running using a simple Pendulum based Control Scheme H.-M. MAUS, J. RUMMEL and A. SEYFARTH Lauflabor Locomotion Laboratory, University of Jena, Germany E-mail: moritz.maus@uni-jena.de

More information

Effects of Ankle Stiffness on Gait Selection of Dynamic Bipedal Walking with Flat Feet

Effects of Ankle Stiffness on Gait Selection of Dynamic Bipedal Walking with Flat Feet 2 IEEE International Conference on Rehabilitation Robotics Rehab Week Zurich, ETH Zurich Science City, Switzerland, June 29 - July, 2 Effects of Ankle Stiffness on Gait Selection of Dynamic Bipedal Walking

More information

Ranger Walking Initiation Stephanie Schneider 5/15/2012 Final Report for Cornell Ranger Research

Ranger Walking Initiation Stephanie Schneider 5/15/2012 Final Report for Cornell Ranger Research 1 Ranger Walking Initiation Stephanie Schneider sns74@cornell.edu 5/15/2012 Final Report for Cornell Ranger Research Abstract I joined the Biorobotics Lab this semester to gain experience with an application

More information

Sample Solution for Problem 1.a

Sample Solution for Problem 1.a Sample Solution for Problem 1.a 1 Inverted Pendulum Model (IPM) 1.1 Equations of Motion and Ground Reaction Forces Figure 1: Scheme of the Inverted Pendulum Model (IPM). The equations of motion of this

More information

Decentralized Autonomous Control of a Myriapod Locomotion Robot

Decentralized Autonomous Control of a Myriapod Locomotion Robot Decentralized utonomous Control of a Myriapod Locomotion Robot hmet Onat Sabanci University, Turkey onat@sabanciuniv.edu Kazuo Tsuchiya Kyoto University, Japan tsuchiya@kuaero.kyoto-u.ac.jp Katsuyoshi

More information

RUNNING ON SOFT GROUND: SIMPLE, ENERGY-OPTIMAL DISTURBANCE REJECTION

RUNNING ON SOFT GROUND: SIMPLE, ENERGY-OPTIMAL DISTURBANCE REJECTION CLAWAR 2012 Proceedings of the Fifteenth International Conference on Climbing and Walking Robots and the Support Technologies for Mobile Machines, Baltimore, MD, USA, 23 26 July 2012 543 RUNNING ON SOFT

More information

COURSE NUMBER: ME 321 Fluid Mechanics I Fluid statics. Course teacher Dr. M. Mahbubur Razzaque Professor Department of Mechanical Engineering BUET

COURSE NUMBER: ME 321 Fluid Mechanics I Fluid statics. Course teacher Dr. M. Mahbubur Razzaque Professor Department of Mechanical Engineering BUET COURSE NUMBER: ME 321 Fluid Mechanics I Fluid statics Course teacher Dr. M. Mahbubur Razzaque Professor Department of Mechanical Engineering BUET 1 Fluid statics Fluid statics is the study of fluids in

More information

1. A tendency to roll or heel when turning (a known and typically constant disturbance) 2. Motion induced by surface waves of certain frequencies.

1. A tendency to roll or heel when turning (a known and typically constant disturbance) 2. Motion induced by surface waves of certain frequencies. Department of Mechanical Engineering Massachusetts Institute of Technology 2.14 Analysis and Design of Feedback Control Systems Fall 2004 October 21, 2004 Case Study on Ship Roll Control Problem Statement:

More information

Current issues regarding induced acceleration analysis of walking using the integration method to decompose the GRF

Current issues regarding induced acceleration analysis of walking using the integration method to decompose the GRF Current issues regarding induced acceleration analysis of walking using the integration method to decompose the GRF George Chen May 17, 2002 Stanford Neuromuscular Biomechanics Lab Group Muscle contribution

More information

Precision Rotary Ball Screw

Precision Rotary Ball Screw 57E Precision Rotary Ball Screw Models DIR and BLR Outer ring Ball screw nut Deflector Section A Screw shaft Spacer Seal Collar Ball End cap Retainer End cap Ball Screw shaft Outer ring Structure of Standard-Lead

More information

Simulation of the Hybtor Robot

Simulation of the Hybtor Robot Simulation of the Hybtor Robot Pekka Aarnio, Kari Koskinen and Sami Salmi Information and Computer Systems in Automation Helsinki University of Technology ABSTRACT A dynamic rigid body simulation model

More information

Variable Face Milling to Normalize Putter Ball Speed and Maximize Forgiveness

Variable Face Milling to Normalize Putter Ball Speed and Maximize Forgiveness Proceedings Variable Face Milling to Normalize Putter Ball Speed and Maximize Forgiveness Jacob Lambeth *, Dustin Brekke and Jeff Brunski Cleveland Golf, 5601 Skylab Rd. Huntington Beach, CA 92647, USA;

More information

Emergent walking stop using 3-D ZMP modification criteria map for humanoid robot

Emergent walking stop using 3-D ZMP modification criteria map for humanoid robot 2007 IEEE International Conference on Robotics and Automation Roma, Italy, 10-14 April 2007 ThC9.3 Emergent walking stop using 3-D ZMP modification criteria map for humanoid robot Tomohito Takubo, Takeshi

More information

Mecánica de Sistemas Multicuerpo:

Mecánica de Sistemas Multicuerpo: Universidad Pública de Navarra 12 de Noviembre de 2008 Departamento de Ingeniería Mecánica, Energética y de Materiales Mecánica de Sistemas Multicuerpo: Análisis de la Silla de Ruedas Triesférica y Dinámica

More information

Gyro stabilized biped walking

Gyro stabilized biped walking Gyro stabilized biped walking N. Michael Mayer Asada S.I. Project, ERATO JST Osaka, Japan Email: michael@jeap.org Kazuhiro Masui Osaka University, Osaka, Japan Email: masui@jeap.org Matthew Browne CSIRO

More information

Biomechanics Sample Problems

Biomechanics Sample Problems Biomechanics Sample Problems Forces 1) A 90 kg ice hockey player collides head on with an 80 kg ice hockey player. If the first person exerts a force of 450 N on the second player, how much force does

More information

Dynamically stepping over large obstacle utilizing PSO optimization in the B4LC system

Dynamically stepping over large obstacle utilizing PSO optimization in the B4LC system 1 Dynamically stepping over large obstacle utilizing PSO optimization in the B4LC system QI LIU, JIE ZHAO, KARSTEN BERNS Robotics Research Lab, University of Kaiserslautern, Kaiserslautern, 67655, Germany

More information

Controlling Walking Behavior of Passive Dynamic Walker utilizing Passive Joint Compliance

Controlling Walking Behavior of Passive Dynamic Walker utilizing Passive Joint Compliance Controlling Walking Behavior of Passive Dynamic Walker utilizing Passive Joint Compliance Takashi TAKUMA, Koh HOSODA Department of Adaptive Machine Systems, Graduate School of Engineering Osaka University

More information

Skippy: Reaching for the Performance Envelope

Skippy: Reaching for the Performance Envelope Workshop on Dynamic Locomotion and Manipulation ETH Zürich, July 2016 Skippy: Reaching for the Performance Envelope Roy Featherstone 2016 Roy Featherstone What is Skippy? a hopping and balancing machine

More information

Walking Simulator Mechanism

Walking Simulator Mechanism The Downtown Review Volume 2 Issue 2 Article 4 2015 Walking Simulator Mechanism Titus Lungu Cleveland State University Igor Tachynskyy Cleveland State University Omri Tayyara Cleveland State University

More information

Modeling of Hydraulic Hose Paths

Modeling of Hydraulic Hose Paths Mechanical Engineering Conference Presentations, Papers, and Proceedings Mechanical Engineering 9-2002 Modeling of Hydraulic Hose Paths Kurt A. Chipperfield Iowa State University Judy M. Vance Iowa State

More information

Swing leg retraction helps biped walking stability

Swing leg retraction helps biped walking stability Proceedings of 25 5th IEEE-RAS International Conference on Humanoid Robots Swing leg retraction helps biped walking stability M Wisse*, C G Atkeson,DKKloimwieder * Delft University of Technology, wwwdbltudelftnl,

More information

Washington University in St. Louis Introductory Physics Lab Summer 2015

Washington University in St. Louis Introductory Physics Lab Summer 2015 Bikes and Energy Pre- Lab: The Bike Speedometer Note that this is a long Pre- Lab. Because of its length, this Pre- Lab will be worth 30 points rather than the usual 15. A Bit of History In this lab you

More information

Speed Control System Design in Bicycle Robot by Low Power Method. Abstract

Speed Control System Design in Bicycle Robot by Low Power Method. Abstract The 2 nd RMUTP International Conference 2010 Page 195 Speed Control System Design in Bicycle Robot by Low Power Method Sunthorn Wiriya, Nikom Distaklu and Suppachai Howimanporn*. Department of Electrical

More information

Improvement of the Cheetah Locomotion Control

Improvement of the Cheetah Locomotion Control Improvement of the Cheetah Locomotion Control Master Project - Midterm Presentation 3 rd November 2009 Student : Supervisor : Alexander Sproewitz Professor : Auke Jan Ijspeert Presentation of the Cheetah

More information

Ankle springs instead of arc-shaped feet for passive dynamic walkers

Ankle springs instead of arc-shaped feet for passive dynamic walkers Ankle springs instead of arc-shaped feet for passive dynamic walkers Martijn Wisse, Daan GE Hobbelen, and Remco JJ Rotteveel Mechanical Engineering Delft University of Technology Delft, The Netherlands

More information

Control based on passive dynamic walking

Control based on passive dynamic walking Chapter 1 Control based on passive dynamic walking Author: Pranav A. Bhounsule Email: pranav.bhounsule@utsa.edu A liation: Dept. of Mechanical Engineering, University of Texas San Antonio, Address: 1 UTSA

More information

An investigation of kinematic and kinetic variables for the description of prosthetic gait using the ENOCH system

An investigation of kinematic and kinetic variables for the description of prosthetic gait using the ENOCH system An investigation of kinematic and kinetic variables for the description of prosthetic gait using the ENOCH system K. OBERG and H. LANSHAMMAR* Amputee Training and Research Unit, University Hospital, Fack,

More information

Effects of a Passive Dynamic Walker s Mechanical Parameters on Foot- Ground Clearance

Effects of a Passive Dynamic Walker s Mechanical Parameters on Foot- Ground Clearance Applied Mechanics and Materials Submitted: 204-09-9 ISSN: 662-7482, Vols. 687-69, pp 279-284 Accepted: 204-09-27 doi:0.4028/www.scientific.net/amm.687-69.279 Online: 204--27 204 Trans Tech Publications,

More information

Asymmetric Passive Dynamic Walker

Asymmetric Passive Dynamic Walker 11 IEEE International Conference on Rehabilitation Robotics Rehab Week Zurich, ETH Zurich Science City, Switzerland, June 29 - July 1, 11 Asymmetric Passive Dynamic Walker Craig Honeycutt, John Sushko,

More information

INCLINOMETER DEVICE FOR SHIP STABILITY EVALUATION

INCLINOMETER DEVICE FOR SHIP STABILITY EVALUATION Proceedings of COBEM 2009 Copyright 2009 by ABCM 20th International Congress of Mechanical Engineering November 15-20, 2009, Gramado, RS, Brazil INCLINOMETER DEVICE FOR SHIP STABILITY EVALUATION Helena

More information

Toward a Human-like Biped Robot with Compliant Legs

Toward a Human-like Biped Robot with Compliant Legs Book Title Book Editors IOS Press, 2003 1 Toward a Human-like Biped Robot with Compliant Legs Fumiya Iida a,b,1, Yohei Minekawa a Juergen Rummel a and Andre Seyfarth a a Locomotion Laboratory, University

More information

Design of a double quadruped for the Tech United soccer robot

Design of a double quadruped for the Tech United soccer robot Design of a double quadruped for the Tech United soccer robot M.J. Naber (0571509) DCT report number: 2009.134 Master Open Space project Eindhoven, 21 December 2009 Supervisor dr.ir. P.C.J.N. Rosielle

More information

Mechanical Design of a Simple Bipedal Robot. Ming-fai Fong

Mechanical Design of a Simple Bipedal Robot. Ming-fai Fong Mechanical Design of a Simple Bipedal Robot by Ming-fai Fong Submitted to the Department of Mechanical Engineering in partial fulfillment of the requirements for the degree of Bachelor of Science in Mechanical

More information

An Impeller Blade Analysis of Centrifugal Gas Compressor Using CFD

An Impeller Blade Analysis of Centrifugal Gas Compressor Using CFD An Impeller Blade Analysis of Centrifugal Gas Compressor Using CFD Vivek V. Kulkarni Department of Mechanical Engineering KLS Gogte Institute of Technology, Belagavi, Karnataka Dr. Anil T.R. Department

More information

U S F O S B u o y a n c y And Hydrodynamic M a s s

U S F O S B u o y a n c y And Hydrodynamic M a s s 1 U S F O S B u o y a n c y And Hydrodynamic M a s s 2 CONTENTS: 1 INTRODUCTION... 3 2 ACCURACY LEVELS... 3 2.1 LEVEL-0... 3 2.2 LEVEL-1... 3 2.3 PANEL MODEL... 3 3 EX 1. SINGLE PIPE. NON FLOODED... 4

More information

Gerald D. Anderson. Education Technical Specialist

Gerald D. Anderson. Education Technical Specialist Gerald D. Anderson Education Technical Specialist The factors which influence selection of equipment for a liquid level control loop interact significantly. Analyses of these factors and their interactions

More information

Keywords--Bio-Robots, Walking Robots, Locomotion and Stability Controlled Gait.

Keywords--Bio-Robots, Walking Robots, Locomotion and Stability Controlled Gait. Six Legged Locomotion on Uneven Terrain Kale Aparna S., Salunke Geeta D. kaleaparna5@gmail.com, geetasalunke@gmail.com Abstract -In this paper current state of many walking robots are compared and advantages

More information

Limit Cycle Walking and Running of Biped Robots

Limit Cycle Walking and Running of Biped Robots Tokyo Institute of Technology Yamakita Lab. Limit Cycle Walking and Running of Biped Robots Masaki Yamakita Tokyo Institute of Technology Introduction of Yamakita Lab. 1/14 Other Research Topics State

More information

Locomotion Concepts. Autonomous Mobile Robots. Concepts Legged Locomotion Wheeled Locomotion. Autonomous Systems Lab. Zürich. Localization.

Locomotion Concepts. Autonomous Mobile Robots. Concepts Legged Locomotion Wheeled Locomotion. Autonomous Systems Lab. Zürich. Localization. Autonomous Mobile Robots Localization "Position" Global Map Cognition Environment Model Local Map Path Perception Real World Environment Motion Control Locomotion Concepts Concepts Legged Locomotion Wheeled

More information

LOCAL STABILITY ANALYSIS OF PASSIVE DYNAMIC BIPEDALROBOT

LOCAL STABILITY ANALYSIS OF PASSIVE DYNAMIC BIPEDALROBOT International Journal of Robotics Research and Development (IJRRD) ISSN(P): 2250-1592; ISSN(E): 2278 9421 Vol. 4, Issue 1, Feb 2014, 9-16 TJPRC Pvt. Ltd. LOCAL STABILITY ANALYSIS OF PASSIVE DYNAMIC BIPEDALROBOT

More information

Gait. Kinesiology RHS 341 Lecture 12 Dr. Einas Al-Eisa

Gait. Kinesiology RHS 341 Lecture 12 Dr. Einas Al-Eisa Gait Kinesiology RHS 341 Lecture 12 Dr. Einas Al-Eisa Definitions Locomotion = the act of moving from one place to the other Gait = the manner of walking Definitions Walking = a smooth, highly coordinated,

More information

Sensing and Modeling of Terrain Features using Crawling Robots

Sensing and Modeling of Terrain Features using Crawling Robots Czech Technical University in Prague Sensing and Modeling of Terrain Features using Crawling Robots Jakub Mrva 1 Faculty of Electrical Engineering Agent Technology Center Computational Robotics Laboratory

More information

Dynamic Lateral Stability for an Energy Efficient Gait

Dynamic Lateral Stability for an Energy Efficient Gait Dynamic Lateral Stability for an Energy Efficient Gait Zhenglong Sun a Nico Roos a a Department of Knowledge Engineering, Maastricht University P.O. Box 616, 6200 MD Maastricht, The Netherlands Abstract

More information

ABSTRACT PATTERNS USING 3D-DYNAMIC MODELING. Kaustav Nandy, Master of Science, Department of Electrical And Computer Engineering

ABSTRACT PATTERNS USING 3D-DYNAMIC MODELING. Kaustav Nandy, Master of Science, Department of Electrical And Computer Engineering ABSTRACT Title of Thesis: IDENTIFICATION OF HUMAN WALKING PATTERNS USING 3D-DYNAMIC MODELING Kaustav Nandy, Master of Science, 26 Thesis Directed By: Professor. Rama Chellappa Department of Electrical

More information

INSTRUMENT INSTRUMENTAL ERROR (of full scale) INSTRUMENTAL RESOLUTION. Tutorial simulation. Tutorial simulation

INSTRUMENT INSTRUMENTAL ERROR (of full scale) INSTRUMENTAL RESOLUTION. Tutorial simulation. Tutorial simulation Lab 1 Standing Waves on a String Learning Goals: To distinguish between traveling and standing waves To recognize how the wavelength of a standing wave is measured To recognize the necessary conditions

More information

Spring Locomotion Concepts. Roland Siegwart, Margarita Chli, Martin Rufli. ASL Autonomous Systems Lab. Autonomous Mobile Robots

Spring Locomotion Concepts. Roland Siegwart, Margarita Chli, Martin Rufli. ASL Autonomous Systems Lab. Autonomous Mobile Robots Spring 2016 Locomotion Concepts Locomotion Concepts 01.03.2016 1 Locomotion Concepts: Principles Found in Nature ASL Autonomous Systems Lab On ground Locomotion Concepts 01.03.2016 2 Locomotion Concepts

More information

First Hops of the 3D Bow Leg

First Hops of the 3D Bow Leg First Hops of the 3D Bow Leg Garth Zeglin and H. Benjamin Brown, Jr. Robotics Institute Carnegie Mellon University Pittsburgh, PA 15213, USA ABSTRACT We have constructed several hopping machines using

More information

Kungl Tekniska Högskolan

Kungl Tekniska Högskolan Centre for Autonomous Systems Kungl Tekniska Högskolan hic@kth.se March 22, 2006 Outline Wheel The overall system layout : those found in nature found in nature Difficult to imitate technically Technical

More information

Centre for Autonomous Systems

Centre for Autonomous Systems Centre for Autonomous Systems Kungl Tekniska Högskolan hic@kth.se March 22, 2006 Outline Wheel The overall system layout : those found in nature found in nature Difficult to imitate technically Technical

More information

Research on Goods and the Ship Interaction Based on ADAMS

Research on Goods and the Ship Interaction Based on ADAMS Research on Goods and the Ship Interaction Based on ADAMS Fangzhen Song, Yanshi He and Haining Liu School of Mechanical Engineering, University of Jinan, Jinan, 250022, China Abstract. The equivalent method

More information

DETC DESIGN OPTIMIZATION OF A NOVEL TRIPEDAL LOCOMOTION ROBOT THROUGH SIMULATION AND EXPERIMENTS FOR A SINGLE STEP DYNAMIC GAIT

DETC DESIGN OPTIMIZATION OF A NOVEL TRIPEDAL LOCOMOTION ROBOT THROUGH SIMULATION AND EXPERIMENTS FOR A SINGLE STEP DYNAMIC GAIT Proceedings of the ASME 27 International Design Engineering Technical Conferences & Computers and Information in Engineering Conference IDETC/CIE 27 September 4-7, 27, Las Vegas, Nevada, USA DETC27-34472

More information

Bikes and Energy. Pre- Lab: The Bike Speedometer. A Bit of History

Bikes and Energy. Pre- Lab: The Bike Speedometer. A Bit of History Bikes and Energy Pre- Lab: The Bike Speedometer A Bit of History In this lab you ll use a bike speedometer to take most of your measurements. The Pre- Lab focuses on the basics of how a bike speedometer

More information

Optimization of an off-road bicycle with four-bar linkage rear suspension

Optimization of an off-road bicycle with four-bar linkage rear suspension Proceedings of MUSME 2008, the International Symposium on Multibody Systems and Mechatronics San Juan (Argentina), 8-12 April 2008 Paper n. 02-MUSME08 Optimization of an off-road bicycle with four-bar

More information

C-Brace Orthotronic Mobility System

C-Brace Orthotronic Mobility System C-Brace Orthotronic Mobility System You ll always remember your first step Information for practitioners C-Brace Orthotics reinvented Until now, you and your patients with conditions like incomplete spinal

More information

ZSTT Team Description Paper for Humanoid size League of Robocup 2017

ZSTT Team Description Paper for Humanoid size League of Robocup 2017 Adult- ZSTT Team Description Paper for Humanoid size League of Robocup 2017 Jaesik Jeong, Youngsup Oh and Jeehyun Yang ZSTT E-mail: soulmatree@gmail.com Web: www.soulmatree.com Abstract. This paper describes

More information

Proceedings of Meetings on Acoustics

Proceedings of Meetings on Acoustics Proceedings of Meetings on Acoustics Volume 9, 2010 http://acousticalsociety.org/ 159th Meeting Acoustical Society of America/NOISE-CON 2010 Baltimore, Maryland 19-23 April 2010 Session 1pBB: Biomedical

More information

intended velocity ( u k arm movements

intended velocity ( u k arm movements Fig. A Complete Brain-Machine Interface B Human Subjects Closed-Loop Simulator ensemble action potentials (n k ) ensemble action potentials (n k ) primary motor cortex simulated primary motor cortex neuroprosthetic

More information

EXPERIMENTAL STUDY OF EXOSKELETON FOR ANKLE AND KNEE JOINT

EXPERIMENTAL STUDY OF EXOSKELETON FOR ANKLE AND KNEE JOINT EXPERIMENTAL STUDY OF EXOSKELETON FOR ANKLE AND KNEE JOINT PROJECT REFERENCE NO. : 37S0925 COLLEGE : NEW HORIZON COLLEGE OF ENGINEERING, BANGALORE BRANCH : MECHANICAL ENGINEERING GUIDES : DR GANESHA PRASAD

More information

Project 1 Those amazing Red Sox!

Project 1 Those amazing Red Sox! MASSACHVSETTS INSTITVTE OF TECHNOLOGY Department of Electrical Engineering and Computer Science 6.001 Structure and Interpretation of Computer Programs Spring Semester, 2005 Project 1 Those amazing Red

More information

Numerical study on the wrist action during the golf downswing

Numerical study on the wrist action during the golf downswing Numerical study on the wrist action during the golf downswing C.C. Chen, Y. Inoue and K. Shibara Department of Intelligent Mechanical Systems Engineering, Kochi University of Technology, Kochi-prefecture,

More information

Designing a Traffic Circle By David Bosworth For MATH 714

Designing a Traffic Circle By David Bosworth For MATH 714 Designing a Traffic Circle By David Bosworth For MATH 714 Abstract We all have had the experience of sitting in a traffic jam, or we ve seen cars bunched up on a road for some no apparent reason. The use

More information

Study of Dynamic Biped Locomotion on Rugged Terrain - Derivation and Application of the Linear Inverted Pendulum Mode -

Study of Dynamic Biped Locomotion on Rugged Terrain - Derivation and Application of the Linear Inverted Pendulum Mode - Proceedings of the 1991 IEEE Intemational Conference on Robotics and Automation Sacramento, California - April 1991 Study of Dynamic Biped Locomotion on Rugged Terrain - Derivation and Application of the

More information

Characterizers for control loops

Characterizers for control loops Characterizers for control loops By: F. G. Shinskey (May 1999) Introduction Commercial controllers such as the PID series (proportional, integral, derivative, and their combinations) are linear devices

More information

TWO DIMENSIONAL KINEMATICS

TWO DIMENSIONAL KINEMATICS PHYSICS HOMEWORK #11 TWO DIMENSIONAL [Remember that ALL vectors must be described by BOTH magnitude and direction!] 1. You walk 250. steps North and then 400. steps East. What is your displacement? (Distance

More information

Velocity Based Stability Margins for Fast Bipedal Walking

Velocity Based Stability Margins for Fast Bipedal Walking Velocity Based Stability Margins for Fast Bipedal Walking Jerry E. Pratt 1 and Russ Tedrake 2 1 Florida Institute for Human and Machine Cognition jpratt@ihmc.us 2 Massachusettes Institute of Technology

More information

Design and control of Ranger: an energy-efficient, dynamic walking robot

Design and control of Ranger: an energy-efficient, dynamic walking robot 1 Design and control of Ranger: an energy-efficient, dynamic walking robot Pranav A. Bhounsule, Jason Cortell and Andy Ruina Biorobotics and Locomotion Laboratory, 306 Kimball Hall, Cornell University,

More information

by Michael Young Human Performance Consulting

by Michael Young Human Performance Consulting by Michael Young Human Performance Consulting The high performance division of USATF commissioned research to determine what variables were most critical to success in the shot put The objective of the

More information

Human-Inspired Control of Bipedal Walking Robots

Human-Inspired Control of Bipedal Walking Robots IEEE TRANSACTIONS ON AUTOMATIC CONTROL, VOL. 59, NO. 5, MAY 2014 1115 Human-Inspired Control of Bipedal Walking Robots Aaron D. Ames Abstract This paper presents a human-inspired control approach to bipedal

More information

The Physics of Lateral Stability 1

The Physics of Lateral Stability 1 The Physics of Lateral Stability 1 This analysis focuses on the basic physics of lateral stability. We ask Will a boat heeled over return to the vertical? If so, how long will it take? And what is the

More information

Adaptation of the Paddle-One

Adaptation of the Paddle-One Adaptation of the Paddle-One Putting some into your paddling machine. Richard E. Butts richeb@frontiernet.net @Richard_Butts Bring balance and fun to your paddlesport training! January 2010 http://www.frontiernet.net/~richeb/

More information

-Elastic strain energy (duty factor decreases at higher speeds). Higher forces act on feet. More tendon stretch. More energy stored in tendon.

-Elastic strain energy (duty factor decreases at higher speeds). Higher forces act on feet. More tendon stretch. More energy stored in tendon. As velocity increases ( ) (i.e. increasing Froude number v 2 / gl) the component of the energy cost of transport associated with: -Internal kinetic energy (limbs accelerated to higher angular velocity).

More information

Programming Self-Recovery in the humanoid Leong Ti Xean 1 Yap Kian Tiong 2

Programming Self-Recovery in the humanoid Leong Ti Xean 1 Yap Kian Tiong 2 Programming Self-Recovery in the humanoid Leong Ti Xean 1 Yap Kian Tiong 2 1. INTRODUCTION 1.1 Background In October 2000, Honda announced the ASIMO humanoid robot, capable of interpreting the postures

More information

STABILITY AND CHAOS IN PASSIVE-DYNAMIC LOCOMOTION

STABILITY AND CHAOS IN PASSIVE-DYNAMIC LOCOMOTION STABILITY AND CHAOS IN PASSIVE-DYNAMIC LOCOMOTION M.J. COLEMAN, M. GARCIA, A. L. RUINA AND J. S. CAMP Department of Theoretical and Applied Mechanics Cornell University, Ithaca, NY 14853-751 AND A. CHATTERJEE

More information

Robotics and Autonomous Systems

Robotics and Autonomous Systems Robotics and Autonomous Systems Lecture 4: Locomotion Richard Williams Department of Computer Science University of Liverpool 1 / 57 Today 2 / 57 Motion Two aspects: Locomotion Kinematics Locomotion: What

More information

Robotics and Autonomous Systems

Robotics and Autonomous Systems Robotics and Autonomous Systems Lecture 4: Locomotion Simon Parsons Department of Computer Science University of Liverpool 1 / 57 Today 2 / 57 Motion Two aspects: Locomotion Kinematics Locomotion: What

More information

The Science Behind Conveyor Oven Thermal Profiling

The Science Behind Conveyor Oven Thermal Profiling The Science Behind Conveyor Oven Thermal Profiling By Philip C. Kazmierowicz, 1992 Overview One of the main problems faced in Printed Circuit Board (PCB) assembly applications is the initial setting up,

More information

Mobile Robots (Legged) (Take class notes)

Mobile Robots (Legged) (Take class notes) Mobile Robots (Legged) (Take class notes) Legged mobile robots Mobile robots are robots which can move There are two types of mobile robots - Legged two, four, six and eight legs - Wheeled one, two, three

More information

In this course you will learn the following

In this course you will learn the following Module 11 : Example study of robots Lecture 40 : NATARAJ a case study of a 6-legged robot Objectives In this course you will learn the following Mobile Robots Legged Robots Nataraj Robot Nataraj Development

More information

Computer Aided Drafting, Design and Manufacturing Volume 26, Number 2, June 2016, Page 53. The design of exoskeleton lower limbs rehabilitation robot

Computer Aided Drafting, Design and Manufacturing Volume 26, Number 2, June 2016, Page 53. The design of exoskeleton lower limbs rehabilitation robot Computer Aided Drafting, Design and Manufacturing Volume 26, Number 2, June 2016, Page 53 CADDM The design of exoskeleton lower limbs rehabilitation robot Zhao Xiayun 1, Wang Zhengxing 2, Liu Zhengyu 1,3,

More information

+ t1 t2 moment-time curves

+ t1 t2 moment-time curves Part 6 - Angular Kinematics / Angular Impulse 1. While jumping over a hurdle, an athlete s hip angle was measured to be 2.41 radians. Within 0.15 seconds, the hurdler s hip angle changed to be 3.29 radians.

More information