Free Essay

Standford Search Techniques in Path Planning

In:

Submitted By aishamim
Words 4106
Pages 17
Practical Search Techniques in Path Planning for Autonomous Driving
Sebastian Thrun

Dmitri Dolgov
AI & Robotics Group
Toyota Research Institute
Ann Arbor, MI 48105 ddolgov@ai.stanford.edu Michael Montemerlo

James Diebel

Computer Science Department Computer Science Department Computer Science Department
Stanford University
Stanford University
Stanford University
Stanford, CA 94305
Stanford, CA 94305
Stanford, CA 94305 diebel@stanford.edu mmde@ai.stanford.edu thrun@ai.stanford.edu Abstract
We describe a practical path-planning algorithm that generates smooth paths for an autonomous vehicle operating in an unknown environment, where obstacles are detected online by the robot’s sensors. This work was motivated by and experimentally validated in the 2007 DARPA Urban Challenge, where robotic vehicles had to autonomously navigate parking lots. Our approach has two main steps. The first step uses a variant of the well-known A* search algorithm, applied to the 3D kinematic state space of the vehicle, but with a modified state-update rule that captures the continuous state of the vehicle in the discrete nodes of A* (thus guaranteeing kinematic feasibility of the path). The second step then improves the quality of the solution via numeric non-linear optimization, leading to a local (and frequently global) optimum. The path-planning algorithm described in this paper was used by the Stanford Racing Teams robot, Junior, in the Urban Challenge. Junior demonstrated flawless performance in complex general path-planning tasks such as navigating parking lots and executing U-turns on blocked roads, with typical fullcycle replaning times of 50–300ms.

Figure 1: Junior, our entry in the DARPA Urban Challenge, was used in all experiments. Junior is equipped with several LIDAR and RADAR units, and a high-accuracy inertial measurement system.

Introduction and Related Work
We address the problem of path planning for an autonomous vehicle operating in an unknown environment. We assume the robot has adequate sensing and localization capability and must replan online while incrementally building an obstacle map. This scenario was motivated, in part, by the DARPA Urban Challenge, in which vehicles had to freely navigate parking lots. The path-planning algorithm described below was used by the Stanford Racing Team’s robot, Junior in the Urban Challenge (DARPA 2007). Junior (Figure 1) demonstrated flawless performance in complex general path-planning tasks—many involving driving in reverse—such as navigating parking lots, executing Uturns, and dealing with blocked roads and intersections with typical full-cycle replanning times of 50–300ms on a modern PC.
One of the main challenges in developing a practical path planner for free navigation zones arises from the fact that the space of all robot controls—and hence trajectories—is continuous, leading to a complex continuous-variable optimization landscape. Much of prior work on search algorithms for
Copyright c 2008, American Association for Artificial Intelligence (www.aaai.org). All rights reserved.

path planning (Ersson and Hu 2001; Koenig and Likhachev
2002; Ferguson and Stentz 2005; Nash et al. 2007) yields fast algorithms for discrete state spaces, but those algorithms tend to produce paths that are non-smooth and do not generally satisfy the non-holonomic constraints of the vehicle.
An alternative approach that guarantees kinematic feasibility is forward search in continuous coordinates, e.g., using rapidly exploring random trees (RRTs) (Kavraki et al. 1996;
LaValle 1998; Plaku, Kavraki, and Vardi 2007). The key to making such continuous search algorithms practical for online implementations lies in an efficient guiding heuristic.
Another approach is to directly formulate the path-planning problem as a non-linear optimization problem in the space of controls or parametrized curves (Cremean et al. 2006), but in practice guaranteeing fast convergence of such programs is difficult due to local minima.
Our algorithm builds on the existing work discussed above, and consists of two main phases. The first step uses a heuristic search in continuous coordinates that guarantees kinematic feasibility of computed trajectories. While lacking theoretical optimality guarantees, in practice this first

Figure 2: Graphical comparison of search algorithms. Left:
A* associates costs with centers of cells and only visits states that correspond to grid-cell centers. Center: Field
D* (Ferguson and Stentz 2005) and Theta* (Nash et al.
2007) associate costs with cell corners and allow arbitrary linear paths from cell to cell. Right: Hybrid A* associates a continuous state with each cell and the score of the cell is the cost of its associated continuous state. step typically produces a trajectory that lies in a neighborhood of the global optimum. The second step uses conjugate gradient (CG) descent to locally improve the quality of the solution, producing a path that is at least locally optimal, but usually attains the global optimum as well.
Another practical challenge is the design of a cost function over paths that yields the desired driving behavior. The difficulty stems from the fact that we would like to obtain paths that are near-optimal in length, but at the same time are smooth and keep a comfortable distance to obstacles. A common way of penalizing proximity to obstacles is to use a potential field (Andrews and Hogan 1983; Khatib 1986;
Pavlov and Voronin 1984; Miyazaki and Arimoto 1985).
However, as has been observed by many researchers (Tilove
1990; Koren and Borenstein 1991), one of the drawbacks of potential fields is that they create high-potential areas in narrow passages, thereby making those passages effectively untraversable. To address this issues, we introduce a potential that rescales the field based on the geometry of the workspace, allowing precise navigation in narrow passages while also effectively pushing the robot away from obstacles in wider-open areas.

Hybrid-State A* Search
The first phase of our approach uses a variant of the wellknown A* algorithm applied to the 3D kinematic state space of the vehicle, but with a modified state-update rule that captures continuous-state data in the discrete search nodes of
A*. Just as in conventional A*, the search space (x, y, θ) is discretized, but unlike traditional A* which only allows visiting centers of cells, our hybrid-state A* associates with each grid cell a continuous 3D state of the vehicle, as illustrated in Figure 2.
As noted above, our hybrid-state A* is not guaranteed to find the minimal-cost solution, due to its merging of continuous-coordinate states that occupy the same cell in the discretized space. However, the resulting path is guaranteed to be drivable (rather than being piecewise-linear as in the case of standard A*). Also, in practice, the hybrid-A* solution typically lies in the neighborhood of the global optimum, allowing us to frequently arrive at the globally optimal solution via the second phase of our algorithm (which uses

gradient descent to locally improve the path, as described below). The main advantage of hybrid-state A* manifests itself in maneuvers in tight spaces, where the discretization errors become critical.
Our algorithm plans forward and reverse motion, with penalties for driving in reverse as well as switching the direction of motion.
Heuristics Our search algorithm is guided by two heuristics, illustrated in Figure 3. These heuristics do not rely on any properties of hybrid-state A* and are also applicable to other search methods (e.g., discrete A*).
The first heuristic—which we call “non-holonomicwithout-obstacles”—ignores obstacles but takes into account the non-holonomic nature of the car. To compute it, we assume a goal state of (xg , yg , θg ) = (0, 0, 0) and compute the shortest path to the goal from every point (x, y, θ) in some discretized neighborhood of the goal, assuming complete absence of obstacles.1 Clearly, this cost is an admissible heuristic. We then use a max of the non-holonomicwithout-obstacles cost and 2D Euclidean distance as our heuristic. The effect of this heuristic is that it prunes search branches that approach the goal with the wrong headings.
Notice that because this heuristic does not depend on runtime sensor information, it can be fully pre-computed offline and then simply translated and rotated to match the current goal. In our experiments in real driving scenarios, this heuristic provided close to an order-of-magnitude improvement in the number of nodes expanded over the straightforward 2D Euclidean-distance cost.
The second heuristic is a dual of the first in that it ignores the non-holonomic nature of the car, but uses the obstacle map to compute the shortest distance to the goal by performing dynamic programming in 2D. The benefit of this heuristic is that it discovers all U-shaped obstacles and dead-ends in 2D and then guides the more expensive 3D search away from these areas.
Both heuristics are mathematically admissible in the A* sense, so the maximum of the two can be used.
Analytic Expansions The forward search described above uses a discretized space of control actions (steering). This means that the search will never reach the exact continuouscoordinate goal state (the accuracy depends on the resolution of the grid in A*). To address this precision issue, and to further improve search speed, we augment the search with analytic expansions based on the Reed-Shepp model (Reeds and Shepp 1990). In the search described above, a node in the tree is expanded by simulating a kinematic model of the car—using a particular control action—for a small period of time (corresponding to the resolution of the grid).
In addition to children generated in such a way, for some nodes, an additional child is generated by computing an optimal Reed-and-Shepp path from the current state to the goal
(assuming an obstacle-free environment). The Reed-andShepp path is then checked for collisions against the current obstacle map, and the children node is only added to
1
We used a 160x160 grid with 1m resolution in x-y and 5◦ angular resolution.

(a)

(b)

Figure 4: Analytic Reed-and-Shepp expansion. The searchtree branches corresponding to short incremental expansions are shown in the yellow-green color range, and the ReedShepp path is the purple segment leading towards the goal.
(c)

(d)

Figure 3: A* heuristics. Euclidean distance in 2D expands
21, 515 nodes (a). The non-holonomic-without-obstacles heuristic is a significant improvement: it expands 1, 465 nodes in (b), but can lead to wasteful exploration of deadends in more complex settings: 68, 730 nodes in (c). This is rectified by using the latter in conjunction with the holonomic-with-obstacles heuristic: 10, 588 nodes in (d). the tree if the path is collision-free. For computational reasons, it is not desirable to apply the Reed-Shepp expansion to every node (especially far from the goal, where most such paths are likely to go through obstacles). In our implementation, we used a simple selection rule, where the Reed-Shepp expansion is applied to one of every N nodes, where N decreases as a function of the cost-to-goal heuristic (leading to more frequent analytic expansions as we get closer to the goal). A search tree with the Reed-Shepp expansion is shown in
Figure 4. The search tree generated by the short incremental expansion of nodes is shown in the yellow-green color range, and the Reed-Shepp expansions is shown as the single purple line leading to the goal. We found that this analytic extension of the search tree leads to significant benefits in both accuracy and planning time.

Path-Cost Function Using the Voronoi Field
We use the following potential field, which we call the
Voronoi Field, to define the trade off between path length and proximity to obstacles. The Voronoi Field is defined as follows: ρV (x, y) =

α α + dO (x, y)
(dO − dmax )2
O
,
(dmax )2
O

dV (x, y) dO (x, y) + dV (x, y)

(1)

where dO and dV are the distances to the nearest obstacle and the edge of the Generalized Voronoi Diagram (GVD),

(a)

(b)

(c)

Figure 5: (a) Voronoi field in a simulated parking lot. (b)
The corresponding Voronoi diagram. (c) A standard potential field with high-potential regions in narrow passages. respectively, and α > 0, dO > 0 are constants that control the falloff rate and the maximum effective range of the field. The expression in (1) is for dO ≤ dmax ; otherwise,
O
ρV (x, y) = 0.
This potential has the following properties: i) it is zero when dO ≥ dmax ; ii) ρV (x, y) ∈ [0, 1] and is continuous
O
on (x, y) since we cannot simultaneously have dO = dV =
0; iii) it reaches its maximum only within obstacles. iv) it reaches its minimum only on the edges of the GVD.
The key advantage of the Voronoi field over a conventional potential fields is the fact that the field value is scaled in proportion to the total available clearance for navigation.
As a result, even narrow openings remain navigable, which is not always the case for standard potential fields.
Figure 5 illustrates this property. Figure 5a shows the 2D projection of the Voronoi field, and Figure 5b gives the corresponding generalized Voronoi diagram. Notice that narrow passages between obstacles that are close to each other are not blocked off by the potential, and there is always a continuous ρV = 0 path between them. Compare this to a na¨ve potential field ρ(x, y) = α(α + dO (x, y))−1 shown in ı Figure 5c, which has high-potential regions in narrow pas-

Figure 6: Voronoi Field and a trajectory driven by Junior in a real parking lot.

sages between obstacles.
Figure 6 shows the Voronoi Field and a driven trajectory for a real parking lot.
We should note that the use of Voronoi diagrams and potential fields has long been proposed in the context of robot motion planning. For example, Voronoi diagrams can be used to derive skeletonizations of the free space (Choset and Burdick 2000). However, navigating along the Voronoi graph is not possible for a non-holonomic car.
Navigation functions (Koditschek 1987; Rimon and
Koditschek 1992) and Laplace potentials (Connolly, Burns, and Weiss 1990) are also similar to our Voronoi Field in that they construct potential functions free of local minima for global navigation. We do not use the Voronoi Field for global navigation. However, we observe that for workspaces with convex obstacles, the Voronoi Field can be augmented with a global attractive potential, yielding a field that has no local minima and is therefore suitable for global navigation.

Local Optimization and Smoothing
The paths produced by hybrid-state A* are often still suboptimal and worthy of further improvement. Empirically, we find that such paths are drivable, but can contain unnatural swerves that require unnecessary steering. We therefore post-process the hybrid-state A* solution by applying the following two-stage optimization procedure. In the first stage, we formulate a non-linear optimization program on the coordinates of the vertices of the path that improves the length and smoothness of the solution. The second stage performs non-parametric interpolation using another iteration of conjugate gradient with higher-resolution path discretization.
Given a sequence of vertices xi = (xi , yi ), i ∈ [1, N ], we define several quantities: oi , the location of the obstacle nearest to the vertex; ∆xi = xi − xi−1 , the displacement
∆y
∆y vector at the vertex; ∆φi = | tan−1 ∆xi+1 −tan−1 ∆xi |, the i+1 i change in the tangential angle at the vertex. The objective

Figure 7: Hybrid-A* and CG paths for a complicated maneuver, which involves reversing into a parking spot.
Hybrid-state A path (red), and the conjugate-gradient solution (blue). function is:
N

N



σo (|xi − oi | − dmax ) +

ρV (xi , yi ) + wo i=1 i=1

N −1



∆φi
− κmax
|∆xi |

σκ i=1 N −1

(∆xi+1 − ∆xi )2 ,

+ ws i=1 where ρV is the Voronoi field; κmax is the maximum allowable curvature of the path (defined by the turning radius of the car), and σo and σκ are penalty functions (empirically, we found simple quadratic penalties to work well); wρ , wo , wκ , ws are weights.
The first term of the cost function effectively guides the robot away from obstacles in both narrow and wide passages. The second term penalizes collisions with obstacles.
The third term upper-bounds the instantaneous curvature of the trajectory at every node and enforces the non-holonomic constraints of the vehicle. The fourth term is a measure of the smoothness of the path.
The gradient of the above cost function is computed in a straightforward manner as described below. For the
Voronoi-field term, we have when dO ≤ dmax :
O
∂ρV
∂xi
∂dO
∂xi
∂dV
∂xi
∂ρV
∂dV
∂ρV
∂dO

∂ρV ∂dO
∂ρV ∂dV
+
,
∂dO ∂xi
∂dV ∂xi xi − oi
=
,
|xi − oi | xi − vi
=
,
|xi − vi | dO α (dO − dmax )2
O
=
,
max )2 α + dO
(dO
(dO + dV )2 α dV
(dO − dmax )
O
= α + dO dO + dV (dmax )2
O
−(dO − dmax ) dO − dmax
O
O

+2 , α + dO dO + dV
=

Introducing the following normalized orthogonal complements: p1 =

xi ⊥ (−xi+1 )
;
|xi ||xi+1 |

p2 =

(−xi+1 ) ⊥ xi
,
|xi ||xi+1 |

(4)

we can then express the derivatives as:

(a)

∂ cos(∆φi )
= −p1 − p2 ;
∂xi
∂ cos(∆φi )
∂ cos(∆φi )
= p2 ;
= p1 .
∂xi−1
∂xi+1

(b)

Figure 8: Interpolation of the CG path. The input path is shown in (a), the result of the interpolation is shown in (b).
The planned paths of both the front and the rear axles are shown. where vi is a 2D vector of coordinates of the point on the edge of the Generalized Voronoi Diagram (GVD) that is closest to vertex i. We compute the nearest obstacle oi and the nearest GVD-edge point vi by maintaining a kd-tree of all obstacle points and GVD-edge points and updating the nearest neighbors of vertices at every iteration of conjugate gradient. For the collision penalty with a quadratic σo , we have if
|xi − oi | ≤ dmax :
∂σo
xi − oi
= 2(|xi − oi | − dmax )
.
∂xi
|xi − oi |
For the maximum-curvature term at vertex i, we have to take the derivatives with respect to the three points that affect the curvature at point i: i − 1, i, and i + 1. For this computation, the change in the tangential angle at node i is best expressed as
∆φi = cos−1

∆xT ∆xi+1 i |∆xi ||∆xi+1 |

,

(2)

and the derivatives of the curvature κi = ∆φi /|∆xi | with respect to the coordinates of the three nodes are then:
∂κi
1
∂∆φi ∂ cos(∆φi )
∆φi ∂∆xi
=−

,
∂xi
|∆xi | ∂ cos(∆φi )
∂xi
(∆xi )2 ∂xi
∂κi
1
∂∆φi ∂ cos(∆φi )
∆φi ∂∆xi
=−

,
∂xi−1
|∆xi | ∂ cos(∆φi ) ∂xi−1
(∆xi )2 ∂xi−1
1
∂∆φi ∂ cos(∆φi )
∂κi
=−
,
∂xi+1
|∆xi | ∂ cos(∆φi ) ∂xi+1 where ∂ cos−1 (cos(∆φi )
−1
∂∆φi
=
=
.
∂ cos(∆φi )
∂ cos(∆φi )
(1 − cos2 (∆φi ))1/2
The derivative of cos(∆φi ) with respect to the coordinates of the three vertices is easiest expressed in terms of orthogonal complements: a⊥b=a− aT b b
.
|b| |b|

(3)

(5)

Figure 7 shows the effect of the second optimization and smoothing step: the red line is the A* solution, and the blue line is the path obtained by CG optimization.
Using the CG smoothing described above, we obtain a path that is much smoother than the A* solution, but it is still piecewise linear, with a significant distance between vertices (around 0.5m–1m in our implementation). This can lead to very abrupt steering on a physical vehicle. Therefore, we further smooth the path using interpolation between the vertices of the CG solution. Many parametric interpolation techniques are very sensitive to noise in the input and exacerbate any such noise in the output (e.g., cubic splines can lead to arbitrarily large oscillations in the output as input vertices get closer to each other).
We therefore use non-parametric interpolation, where we super-sample the path by adding new vertices, and using CG to minimize curvature of the path, while holding the original vertices fixed. The result of interpolating the path in Figure 8a is shown in Figure 8b.

Results
Figure 9 depicts several trajectories driven by Junior in the
DARPA Urban Challenge. Figure 9a–c show U-turns on blocked roads, Figure 9d shows a task involving navigation in a parking lot.
A solution to a more complex maze-like environment computed in simulation is shown in Figure 10. A video showing the robot replanning as it incrementally detects obstacles and builds an obstacle map in scenario of Figure 10 is available at http://ai.stanford.edu/ ddolgov/gpp maze.avi .
We used the following parameters for our planner: the obstacle map was of size 160m×160m with 0.15cm resolution; A* used a grid of size 160m×160m×360◦ with 0.5m x-y resolution and 5◦ resolution for the heading θ. Typical running times for a full replanning cycle involving the hybrid A* search, CG smoothing, and interpolation were on the order of 50–300ms.

Acknowledgments
We would like to thank Dirk Haehnel, Jesse Levinson, and other members of the Stanford Racing Team for their help with implementing and testing our path planner on the vehicle. We would also like to thank Michael James and Michael
Samples for useful discussions related to this work.

(a)

(b)

(c)

Figure 9: Examples of trajectories generated by our planner and driven by Junior (Figure 1) in the DARPA Urban Challenge.
(a) and (b) show U-turns on blocked roads; (c) shows a parking task.

Figure 10: The shown path was generated in simulation.
Note that in all cases the robot had to replan in response to obstacles being detected by its sensors (via a simulated planar rangefinder); this explains the sub-optimality of the trajectory. A video of this planning problem is available at: http://robot.cc/gpp maze.avi

References
Andrews, J., and Hogan, N. 1983. Impedance control as a framework for implementing obstacle avoidance in a manipulator. Control of Manufacturing Processes and Robotic Systems
243–251.
Choset, H., and Burdick, J. 2000. Sensor-based exploration: The hierarchical generalized voronoi graph. The International Journal of Robotics Research 19.
Connolly, C.; Burns, J.; and Weiss, R. 1990. Path planning using laplace’s equation. In IEEE International Conference on Robotics and Automation (ICRA), 2102–2106.
Cremean, L. B.; Foote, T. B.; Gillula, J. H.; Hines, G. H.; Kogan, D.; Kriechbaum, K. L.; Lamb, J. C.; Leibs, J.; Lindzey, L.;
Rasmussen, C. E.; Stewart, A. D.; Burdick, J. W.; and Murray,
R. M. 2006. Alice: An information-rich autonomous vehicle for high-speed desert navigation. Journal of Field Robotics.
DARPA. 2007.
Ersson, T., and Hu, X. 2001. Path planning and navigation of

mobile robots in unknown environments. In IEEE International
Conference on Intelligent Robots and Systems (IROS).
Ferguson, D., and Stentz, A. 2005. Field d*: An interpolationbased path planner and replanner. In Proceedings of the Int.
Symp. on Robotics Research (ISRR).
Kavraki, L.; Svestka, P.; Latombe, J.-C.; and Overmars, M. 1996.
Probabilistic roadmaps for path planning in high-dimensional configuration spaces.
IEEE Transactions on Robotics and
Automation 12(4).
Khatib, O. 1986. Real-time obstacle avoidance for manipulators and mobile robots. International Journal of Robotics Research.
5(1):90–98.
Koditschek, D. E. 1987. Exact robot navigation by means of potential functions: Some topological considerations. In IEEE
Int. Conf. on Robotics and Autom.
Koenig, S., and Likhachev, M. 2002. Improved fast replanning for robot navigation in unknown terrain. In IEEE Int. Conf. on
Robotics and Automation (ICRA).
Koren, Y., and Borenstein, J. 1991. Potential field methods and their inherent limitations for mobile robot navigation. In ICRA.
LaValle, S. 1998. Rapidly-exploring random trees: A new tool for path planning.
Miyazaki, F., and Arimoto, S. 1985. Sensory feedback for robot manipulators. Journal of Robotic Systems 2(1):53–71.
Nash, A.; Daniel, K.; Koenig, S.; and Felner, A. 2007. Theta*:
Any-angle path planning on grids. In Proceedings of the AAAI
Conference on Artificial Intelligence (AAAI), 1177–1183. AAAI
Press.
Pavlov, V., and Voronin, A. N. 1984. The method of potential functions for coding constraints of the external space in an intelligent mobile robot. Soviet Automatic Control 17(6):45–51.
Plaku, E.; Kavraki, L.; and Vardi, M. 2007. Discrete search leading continuous exploration for kinodynamic motion planning.
In Robotics: Science and Systems.
Reeds, J. A., and Shepp, L. A. 1990. Optimal paths for a car that goes both forwards and backwards. Pacific Journal of
Mathematics 145(2):367–393.
Rimon, E., and Koditschek, D. E. 1992. Exact robot navigation using artificial potential fields. IEEE Transactions on Robotics and Automation 8(5):501–518.
Tilove, R. 1990. Robotics and automation. In IEEE International
Conference on Robotics and Automation, volume 1, 566 – 571.

Similar Documents

Free Essay

Psychology Papers

...Wednesday, April 9, 2014 PSY/460 - WEEK ONE SHORT ANSWER Environmental psychology is likely to be a new field for you, although many of the concepts are probably familiar. Provide your own definition of the discipline. Discuss an important milestone or influence in the development of environmental psychology and provide reasoning as to why you chose this one. Environmental psychology is a branch of psychology that studies how the environment affects individuals, and vice-verse. There is a reciprocal relationship between people and the environment they live in, as they both affect each other. The relationship between nature and the human species has been an object of study for many decades, and understanding this relationship can help individuals learn about the importance of conserving and maintaining the world that supports them (Steg, 2013). The environment provides humans with food, water, air, and all the other necessities individuals need to survive, even if, in a world dominated by technology and progress, it is easy to forget that one way or another, everything we need to survive comes from the earth. Environmental psychology focuses not only on the physical influences humans and environment have on each other, but also in which ways nature affects individuals’ behaviors. One important aspect of this discipline is the belief that people’s behaviors are not determined solely by the environment (Steg, 2013). Most psychologists in this area believe in free will...

Words: 19627 - Pages: 79

Free Essay

Technology

...INSTITUTE OF PHYSICS PUBLISHING Bioinsp. Biomim. 1 (2006) P1–P12 BIOINSPIRATION & BIOMIMETICS doi:10.1088/1748-3182/1/1/P01 PERSPECTIVE Biomimetics—using nature to inspire human innovation Yoseph Bar-Cohen Jet Propulsion Lab, California Institute of Technology, 4800 Oak Grove Drive, Pasadena, CA 91109-8099, USA E-mail: yosi@jpl.nasa.gov Received 7 November 2005 Accepted for publication 7 March 2006 Published 27 April 2006 Online at stacks.iop.org/BB/1/P1 Abstract Evolution has resolved many of nature’s challenges leading to lasting solutions. Nature has always inspired human achievements and has led to effective materials, structures, tools, mechanisms, processes, algorithms, methods, systems, and many other benefits (Bar-Cohen Y (ed) 2005 Biomimetics—Biologically Inspired Technologies (Boca Raton, FL: CRC Press) pp 1–552). This field, which is known as biomimetics, offers enormous potential for inspiring new capabilities for exciting future technologies. There are numerous examples of biomimetic successes that involve making simple copies, such as the use of fins for swimming. Others examples involved greater mimicking complexity including the mastery of flying that became possible only after the principles of aerodynamics were better understood. Some commercial implementations of biomimetics, including robotic toys and movie subjects, are increasingly appearing and behaving like living creatures. More substantial benefits of biomimetics include the development of prosthetics...

Words: 9606 - Pages: 39

Premium Essay

Student

...This page intentionally left blank Lut12575_fm_i-xxvi.indd Page i 2/10/11 2:28 PM user-f494 /203/MHBR222/Lut12575_disk1of1/0078112575/Lut12575_pagefiles International Management Culture, Strategy, and Behavior Eighth Edition Fred Luthans University of Nebraska–Lincoln Jonathan P. Doh Villanova University Lut12575_fm_i-xxvi.indd Page ii 2/11/11 2:35 PM user-f494 /203/MHBR222/Lut12575_disk1of1/0078112575/Lut12575_pagefiles INTERNATIONAL MANAGEMENT: CULTURE, STRATEGY, AND BEHAVIOR, EIGHTH EDITION Published by McGraw-Hill, a business unit of The McGraw-Hill Companies, Inc., 1221 Avenue of the Americas, New York, NY 10020. Copyright © 2012 by The McGraw-Hill Companies, Inc. All rights reserved. Previous editions © 2009, 2006, and 2003. No part of this publication may be reproduced or distributed in any form or by any means, or stored in a database or retrieval system, without the prior written consent of The McGraw-Hill Companies, Inc., including, but not limited to, in any network or other electronic storage or transmission, or broadcast for distance learning. Some ancillaries, including electronic and print components, may not be available to customers outside the United States. This book is printed on recycled, acid-free paper containing 10% postconsumer waste. 1 2 3 4 5 6 7 8 9 0 QDB/QDB 1 0 9 8 7 6 5 4 3 2 1 ISBN 978-0-07-811257-7 MHID 0-07-811257-5 Vice President & Editor-in-Chief: Brent Gordon Vice President, EDP/Central Publishing...

Words: 69321 - Pages: 278

Premium Essay

Bdhs

...Social Change and Modernity Edited By Hans Haferkamp and Neil J. Smelser UNIVERSITY OF CALIFORNIA PRESS Berkeley Los Angeles Oxford © 1992 The Regents of the University of California INTRODUCTION Hans Haferkamp and Neil J. Smelser Haferkamp is grateful to Angelika Schade for her fruitful comments and her helpful assistance in editing this volume and to Geoff Hunter for translating the first German version of parts of the Introduction; Smelser has profited from the research assistance and critical analyses given by Joppke. 1. Social Change and Modernity Those who organized the conference on which this volume is based—including the editors— decided to use the terms "social change" and "modernity" as the organizing concepts for this project. Because these terms enjoy wide usage in contemporary sociology and are general and inclusive, they seem preferable to more specific terms such as "evolution" "progress," "differentiation," or even "development," many of which evoke more specific mechanisms, processes, and directions of change. Likewise, we have excluded historically specific terms such as "late capitalism" and "industrial society" even though these concepts figure prominently in many of the contributions to this volume. The conference strategy called for a general statement of a metaframework for the study of social change within which a variety of more specific theories could be identified. 2. Theories of Social Change Change is such an evident feature of...

Words: 171529 - Pages: 687

Free Essay

Test2

...62118 0/nm 1/n1 2/nm 3/nm 4/nm 5/nm 6/nm 7/nm 8/nm 9/nm 1990s 0th/pt 1st/p 1th/tc 2nd/p 2th/tc 3rd/p 3th/tc 4th/pt 5th/pt 6th/pt 7th/pt 8th/pt 9th/pt 0s/pt a A AA AAA Aachen/M aardvark/SM Aaren/M Aarhus/M Aarika/M Aaron/M AB aback abacus/SM abaft Abagael/M Abagail/M abalone/SM abandoner/M abandon/LGDRS abandonment/SM abase/LGDSR abasement/S abaser/M abashed/UY abashment/MS abash/SDLG abate/DSRLG abated/U abatement/MS abater/M abattoir/SM Abba/M Abbe/M abbé/S abbess/SM Abbey/M abbey/MS Abbie/M Abbi/M Abbot/M abbot/MS Abbott/M abbr abbrev abbreviated/UA abbreviates/A abbreviate/XDSNG abbreviating/A abbreviation/M Abbye/M Abby/M ABC/M Abdel/M abdicate/NGDSX abdication/M abdomen/SM abdominal/YS abduct/DGS abduction/SM abductor/SM Abdul/M ab/DY abeam Abelard/M Abel/M Abelson/M Abe/M Aberdeen/M Abernathy/M aberrant/YS aberrational aberration/SM abet/S abetted abetting abettor/SM Abeu/M abeyance/MS abeyant Abey/M abhorred abhorrence/MS abhorrent/Y abhorrer/M abhorring abhor/S abidance/MS abide/JGSR abider/M abiding/Y Abidjan/M Abie/M Abigael/M Abigail/M Abigale/M Abilene/M ability/IMES abjection/MS abjectness/SM abject/SGPDY abjuration/SM abjuratory abjurer/M abjure/ZGSRD ablate/VGNSDX ablation/M ablative/SY ablaze abler/E ables/E ablest able/U abloom ablution/MS Ab/M ABM/S abnegate/NGSDX abnegation/M Abner/M abnormality/SM abnormal/SY aboard ...

Words: 113589 - Pages: 455