The 6th International Conference on Ubiquitous Robots and Ambient Intelligence (URAI 2009)

Comparison between Position and Posture Recovery in Path Following Sunglok Choi, JaeYeong Lee, and Wonpil Yu Robot Research Department, ETRI, Daejeon, Republic of Korea {sunglok, jylee, ywp}@etri.re.kr

Abstract— Path following is one of the most basic function of a mobile robot. It is a series of trials to attain its state to the target state. Its objective state determines the type of path followers: position, pose, and posture recovery. This paper compares performance of two path followers via experiments. One of them makes the robot proceed to position on the path, which is position recovery. The other tries to follow position incorporated with orientation and velocity, which is posture recovery. Comparison presents that posture recovery makes the robot more shaking when a location sensor has noise. Keywords— Path Following, Path Tracking, Position Recovery, Pose Recovery, Posture Recovery, Pure Pursuit

1. Introduction Path following and tracking are one of the oldest topics in robotics and control theory because they are essential to perform more complex tasks such as guidance, serving, exploration, and so on. Many researchers does not distinguish path following and tracking, but they have slightly different definition. The path following is the process to control the robot to pursuit the given path. The path, P, is usually represented as a series of position on the given space. The problem is usually formalized as follows:   h xr i vc = Follow( yr , [ wvrr ] , P, . . . ) , (1) θr wc where xr , yr , and θr is current position and orientation of the robot, and vr and wr is its linear and angular velocity. Two outputs, vc and wc , are the desired linear and angular velocity to track the path. The robot usually operates on limited velocity and acceleration, whose bounds are noted as vmax , wmax , amax , and αmax , respectively. In contrast, the path tracking is the process to control the robot to attain the desired state such as position and velocity, so it is called as reference tracking. Its problem definition is    x (t)  h i h xr i d vc v (t) vr y r = Track( , [ wr ] , yd (t) , wd (t) , . . . ) , (2) d θr wc θd (t) where xd (t), yd (t), θd (t), vd (t), and wd (t) are the desired position, orientation, and velocity at time t. The robot needs to calculate the desired position and velocity profile with respect to the given path. The path following is regarded as less restrictive, whose theoretical comparison with tracking was dealt in [1]. The path following can be classified with its objective state on the given path (Figure 1). The position recovery moves This work was supported partly by the R&D program of the Korea Ministry of Knowledge and Economy (MKE) and the Korea Evaluation Institute of Industrial Technology (KEIT). (2008-S-031-01, Hybrid u-Robot Service System Technology Development for Ubiquitous City)

Fig. 1.

Three Types of Recovery Methods [2]

the robot on the path. It does not consider orientation and velocity of the robot, but it just tries to minimize distance from the path. In addition to position, the pose recovery tries to align the robot toward direction of the path. The posture recovery considers more about the path such as suitable velocity and acceleration. The path following is also categorized with its employed physics: kinematics and dynamics. This paper compares two different kinematic path followers. The first method, pure pursuit [3], aims position recovery. The other adopts concept of landing when the robot moves toward the path. It will be noted as landing path tracker [4], which is posture recovery. They are briefly explained in Section 2. Their performance is compared in experiments using two different trajectories: linear and circular. The experiments and its discussion are described in Section 3. 2. Two Path Following Methods 2.1 Pure Pursuit (Position Recovery) The pure pursuit [3] consists of two steps: target selection and velocity control. The first step chooses the target position to pursuit on the given path. The target position is usually selected as follows:    

xt = P arg min e([ xyrr ] , P(i)) + δahead , (3) yt i where e calculates Euclidean distance between two points, and δahead is the lookahead parameter. The lookahead parameter advances the target point to the goal point. The bigger lookahead makes the robot pursuit the path more smoothly. The second step calculates necessary velocity to follow the target point 1 . The radial and angular error are calculated as 1 The pure pursuit in this paper is described in more easier form than the original [3].

The 6th International Conference on Ubiquitous Robots and Ambient Intelligence (URAI 2009)

The curve satisfies three initial values as follows: dL(xL ) d 2 L(xL ) = 0, = 0 , (11) L(xL ) = 0, dxL xL =0 xL =0 dxL2 xL =0

(a) Pure Pursuit

(b) Landing Path Tracker

Fig. 2. Error Notation (Green: The Given Path, Blue: The Robot, Light Blue: The Target Pose, Red: Error Notation)

follows: D=

q

(xt − xr )2 + (yt − yr )2 ,

(4)

∆θ = atan2(yt − yr , xt − xr ) − θr , which are described in Figure 2(a). The linear velocity is usually selected as the maximum velocity, and the angular velocity is calculated under circular motion assumption as follows: 2vc sin ∆θ vc = vmax and wc = . (5) D In the degenerate case (|∆θ | > π/2), the velocity is calculated as follows: vc = 0

and

wc = wmax sign(∆θ ) ,

(6)

where sign returns sign of the given value as like −1, 0, and +1. The velocity makes the robot rotate until |∆θ | ≤ π/2. If the calculated angular velocity is bigger than its maximum (wc > wmax ), the velocity needs to be adjusted again as follows: Dwc . (7) wc = wmax sign(∆θ ) and vc = 2 sin ∆θ 2.2 Landing Path Tracker (Posture Recovery) The landing path tracker [4] originally solves the tracking problem, not the following problem. However, adopting the first step of the pure pursuit, it can be applied to path following. The target position is assigned as like Equation 3. The target orientation and velocity is selected as follows: θt = ∆θ ,

vt = vmax ,

and

wt = 0 .

(8)

The landing path tracker calculates necessary velocity using a landing curve 2 . It formulates error between the current position and target position as follows: ex = +(xt − xr ) cos θt + (yt − yr ) sin θt , ey = −(xt − xr ) sin θt + (yt − yr ) cos θt ,

(9)

eθ = θt − θr , where ex , ey , and eθ are tangential, lateral, and angular error, respectively. They are described in Figure 2(b). The landing curve is selected as L(xL ) = cx xL3 sign(ey ) .

(10)

2 The landing path tracker in this paper is modified from the original [4]. The authors corrected several errata and derived equations to avoid the degenerate case (ey = 0) in the original.

which means that the robot will have the target position, orientation, and velocity at xL = 0. From the landing curve (Equation 10), the tangential angle and its differential are derived as  θL = θt + tan−1 3cx e2L sign(ey ) , (12) 6cx eL θ˙L = wt + e˙y sign(ey ) , 2 1 + tan (θL − θt ) where eL is (|ey |/cx )1/3 sign(ey ) from Figure 2(b), and e˙y is −wt ex + vr sin eθ from Equation 9. The necessary angular velocity is derived using bang-bang control as follows:  1/2 wc = θ˙L − wr + 2αmax |θL − θr | sign(θL − θr ) , (13) which makes the robot have the tangential angle θL and its corresponding angular velocity θ˙L at xL = 0. Similarly, the linear velocity is also calculated as follows:  1/2 vc = e˙x + 2amax |ex | sign(ex ) , (14) where e˙x is vt − vr cos eθ + wt ey from Equation 9. It tries bang-bang control to minimize tangential error ex . 3. Experiments Experiments were performed on two kinds of trajectories as like Figure 3(a) and 4(a). The straight line path was generated from [0, 0]T to [10, 0]T , and the circular path was generated from [0, 0]T to [−0.5, 3.4]T , whose diameter is about 3.5 meters. The given robot can accelerate amax = 0.5 m/s2 and αmax = 50 deg/s2 . Its maximum velocity is vmax = 0.5 m/s and wmax = 50 deg/s. The robot performs following algorithm every 0.02 seconds, that is, 50 Hz. The position data was measured with unbiased Gaussian noise, whose standard deviation is 0.05 meters. The orientation also has unbiased Gaussian noise, whose standard deviation is 5 degrees. The robot was located at [−0.5, −0.5, 0]T . The lookahead parameter δahead was adjusted as 100 index, which was approximately 1 meter. The landing parameter cx was 0.02. Figure 3 and 4 presents trajectory and velocity of the robot when it pursued the given paths. In the line path, the landing tracker (about 1 m) approached the path earlier than the pure pursuit (about 2m). However, the landing tracker was shaking around ±0.5 m, which is also observed in angular velocity (Figure 3(c)). In the circular path, the result was similar. The landing tracker reached the path earlier, but it had bigger lateral error. 4. Discussion This paper describes two kinematic path followers: the pure pursuit and landing path tracker. The landing path tracker is expected to have better accuracy than the pure pursuit because it adopts posture recovery. However, the experimental results presented the landing path tracker was worse than the pure pursuit. Figure 5 shows the lateral error

The 6th International Conference on Ubiquitous Robots and Ambient Intelligence (URAI 2009)

(a) Trajectories Fig. 3.

(b) Linear Velocity

(c) Angular Velocity

(b) Linear Velocity

(c) Angular Velocity

Experimental Result in the Straight Line Trajectory

(a) Trajectories Fig. 4.

Experimental Result in the Circular Trajectory

Fig. 5.

The Lateral Error and Its Landing (cx = 0.02, e˙y = 1.0)

ey and its corresponding tangential angle θL (Blue) and angular velocity θ˙L (Red). In the figure, the angular velocity around 0 is varied significantly, which causes shaking angular velocity wc in case of small orientation error. The landing path tracker needs to be investigates more to solve this problem. References [1] A. P. Aguiar, J. P. Hespanha, and P. V. Kokotovic, “Performance limitations in reference tracking and path following for nonlinear systems,” Automatica, vol. 44, pp. 598–610, 2008. [2] T. Howard, R. A. Knepper, and A. Kelly, “Constrained optimization path following of wheeled robots in natural terrain,” in Proceedings of the International Symposium on Experimental Robotics (ISER), July 2006. [3] R. C. Coulter, “Implementation of the pure pursuit path ’hcking algorithm,” Camegie Mellon University, Tech. Rep. CMU-RI-TR-9201, 1992. [4] K. C. Koh and H. S. Cho, “A smooth path tracking algorithm for wheeled mobile robots with dynamic constraints,” Journal of Intelligent and Robotic Systems, vol. 24, pp. 367–385, 1999.

Comparison between Position and Posture Recovery in ...

Service System Technology Development for Ubiquitous City). Fig. 1. Three Types of Recovery Methods [2] the robot on the path. It does not consider orientation ...

296KB Sizes 1 Downloads 198 Views

Recommend Documents

Modesty in selfpresentation: A comparison between the USA and Japan
Modesty in self-presentation: A comparison between the USA and Japanajsp_ 60..68. Toshio Yamagishi,1 Hirofumi Hashimoto,1 Karen S. Cook,2 Toko Kiyonari,3. Mizuho Shinada,1 Nobuhiro Mifune,1 Keigo Inukai,1 Haruto Takagishi,1 Yutaka Horita1 and Yang Li

Comparison between Biexponential and Robust Biexponential ...
Comparison between Biexponential and Robust Biexponential Nonlinear Models, Using Simulation.pdf. Comparison between Biexponential and Robust ...

Limb Position Drift: Implications for Control of Posture ...
fingertip location were presented within the resulting virtual-reality environment. ..... B: mean instantaneous drift collapsed across trial number and start location. ...... and Graduate Studies Office of Penn State University to D. A. Rosenbaum.

Absolute and relative signals: a comparison between melanin- and ...
Summary. Some signalling traits may be highly influenced by environmental factors, thereby decreasing between-year trait repeatability what could compromise the honesty of signal. However, although the repeatability of environmentally-influenced trai

Multilineage Differentiation Capability Comparison between ... - hikari
MSCs were observed under the electron microscopes. Scanning .... the process of human development” [Verfaillie et al., 2003] urges us to reexamine the.

20140228 Comparison between MARATHON.pdf
garbage to the course. Strict prohibition!Violators will be immediately disqualified & will be. asked to leave the course. Mostly no Environmental Protection. Rules & Guidelines. If you find any trash on the. course. Be a HERO, by picking it up and t

Multilineage Differentiation Capability Comparison between ... - hikari
After blocked with PBS containing 2% BSA, cells were permeabilized with 0.1% Triton-X 100 for 10 min. Slides were incubated sequentially overnight at 4°C with ...

Comparison between discrete dipole implementations ...
The geometry of the scatterer is read from a file and all the parameters of .... unlimited number of dipoles, since ADDA is not limited by the memory of a single ... symmetry of the interaction matrix is used to decrease storage requirement of its ..

Comparison between discrete dipole implementations ...
in astronomy and in some technological applications has greatly increased in the last years. ..... [16] or the more advanced package 'fastest Fourier transform in the west' (FFTW) [26]. ...... science and is owned by the Ministry of Education.

Comparison of insect biodiversity between organic and conventional ...
Aug 26, 2014 - 3 Centre for Wildlife Studies, CWS, Bengaluru, Karnataka, India. 4 UAS - University of Agricultural Sciences, GKVK Campus, ... data; AG supervised the research plan and implementation of the field work and wrote up the paper. .... Figu

A Comparison Between Broad Histogram and ... - Springer Link
KEY WORDS: Microcanonical averages; numerical simulation. We could find three ... choose the energy E0 at the center of the spectrum, and equate our numerically .... authors re-formulated their criticism concerning what they call ''systemati-.

A comparison between 3G and 802.11 wireless ...
A comparison between 3G and 802.11 wireless technologies for Inter- ... Vehicular Ad Hoc Network, a VANET, between the ..... coverage. In order to guarantee no interference of any kind, the decision was taken to test each technology ...

Comparison between Course Options and Youth Options August 2015 ...
There was a problem previewing this document. Retrying. ... Comparison between Course Options and Youth Options August 2015 v1.0.pdf. Comparison ...

A Comparison Between Broad Histogram and ... - Springer Link
called Entropic Sampling, which, from now on, we call ESM. We present ... to note that these movements are virtual, since they are not actually per- ..... B. A. Berg, in Proceedings of the International Conference on Multiscale Phenomena and.

A Comparison Between Allophone, Syllable, and ...
done manually by using of Wavesurfer software. The results of this system and .... dêr têr mall tall şill çill jar yar pek tek duê kuê zall sall mîn tîn van ban sall tall ... [7] A. Youssef , et al, "An Arabic TTS System Based on the IBM. Tra

Computer-related posture and discomfort in primary ...
Contents lists available at ScienceDirect. Computers & Education .... 1982). The Body Discomfort Chart (BDC) consists of an outline drawing of the human body on which a person can mark the area that he or she feels discomfort. The Visual .... vention

Asymmetric load-carrying in young and elderly women - Gait & Posture
Walking with and without a hand-held bag was analyzed in five young and six elderly women using a 6-camera VICON system and two force plates. Balance ...

Position – PHD Position in Insect Systematics and Evolution ...
Dr. Andrea Lucky. University of Florida. Entomology/Nematology. Gainesville, FL 32611-0620, USA. Email: [email protected]. Website: www.andrealucky.com.

Position – PHD Position in Insect Systematics and Evolution ...
Insect systematics and biodiversity, ecology, population genetics, evolution. Focus on ants is preferred, but ... 32611-0620, USA. Email: [email protected]. Website:.

Position opportunity PhD position in epidemiology
Good knowledge in epidemiology, population dynamics and vectorial diseases ... Provide the following documents in an email to the researchers in charge of ...