% Example LaTeX Document % Preamble: Sets up General Parameters which are Global \documentclass[12pt]{article} \usepackage[pdftex]{graphicx} \usepackage{amsmath} \usepackage{amssymb} %\usepackage{doublespace, fullpage} % Body: Main Document \begin{document} \title{Control of Complex, Physically Simulated Robot Groups} \author{David C. Brogan \\ University of Virginia \\ Charlottesville, Virginia} \maketitle \begin{abstract} Actuated systems such as robots take many forms and sizes but each requires solving the difficult task of utilizing available control inputs to accomplish desired system performance. Coordinated groups of robots provide the opportunity to accomplish more complex tasks, to adapt to changing environmental conditions, and to survive individual failures. Similarly, groups of simulated robots, represented as graphical characters, can test the design of experimental scenarios and provide autonomous interactive counterparts for video games. The complexity of writing control algorithms for these groups currently hinders their use. A combination of biologically inspired heuristics, search strategies, and optimization techniques serve to reduce the complexity of controlling these real and simulated characters and to provide computationally feasible solutions. \\ % '\\' generates a newline \par % http://www.artofproblemsolving.com/LaTeX/AoPS_L_GuideLay.php {\bf Keywords:} Multiagent, dynamic simulation, group navigation, herds, swarms \end{abstract} \section{Introduction} Animated characters are needed to play the role of teachers or guides, teammates or competitors, or just to provide a source of interesting motion in virtual environments. The characters in a compelling virtual environment must have a wide variety of complex and interesting behaviors and must be responsive to the actions of the user. The difficulty of constructing such synthetic characters currently hinders the development of these environments, particularly when realism is required. In this paper, we describe one approach to populating graphical environments, using dynamic simulation to generate the motion of characters (Figure 1). \par % see http://www.artofproblemsolving.com/LaTeX/AoPS_L_PictMan.php % This figure is being shifted -4 inches up %\begin{figure} %\caption{Images of 105 simulated one-legged robots and 6 simulated bicycle riders.} %\end{figure} %\vskip-4in %\scalebox{.5}[.5]{\includegraphics*{fig1a.pdf}} %\hskip-1.5in %\scalebox{.5}[.5] {\includegraphics*{fig1b.pdf}} \begin{figure} \vskip-6in \scalebox{.7}[.7]{\includegraphics*{fig1.pdf}} %\hskip-1.5in %\scalebox{.5}[.5] {\includegraphics*{fig1b.pdf}} \caption{Images of 105 simulated one-legged robots and 6 simulated bicycle riders.} \end{figure} \par Motion for characters in virtual environments can be generated with keyframing, motion capture, or dynamic simulation. All three approaches require a tradeoff between the level of control given to the animator and the automatic nature of the process. Animators require detailed control when creating subtle movements that are unique or highly stylized. Generating expressive facial animations usually requires this low level of control. Automatic methods are bene¿cial because they can interactively produce motion for characters based on the continuously changing state of the user and other characters in the virtual environment. \par Keyframing requires that the animator specify critical, or key, positions for the animated objects. The computer then fills in the missing frames by smoothly interpolating between those positions. The specification of keyframes for some ob jects can be partially automated with techniques such as inverse kinematics, but keyframing still requires that the animator possess a detailed understanding of how moving objects should behave over time as well as the talent to express that information through the con¿guration of the character. A library of many keyframed animations can be generated off-line and subsequently accessed in an interactive environment to provide the motion for a character that interacts with the user. \par To illustrate the use of dynamically simulated characters, we created a group of simulated human bicyclists and a group of alien bicyclists that ride on a bicycle race course (figure 2). Our earlier results indicate 1,2 that we can generate algorithms that support characters of different types and groups of varying size, however, manual tuning was required to obtain good performance. In this paper we describe automatic tuning methods and algorithms that generate improved group performance. \begin{figure} \vskip-6in \scalebox{.7}[.7]{\includegraphics*{fig2.pdf}} %\hskip-1.5in %\scalebox{.5}[.5] {\includegraphics*{fig1b.pdf}} \caption{The 13-kilometer race course from the 1996 Olympics. This graphical course captures the elevation, side streets, and surrounding terrain of the streets from Atlanta, Georgia where the race was held.} \end{figure} \section{Background} Herding, flocking, and schooling behaviors of animals have been studied extensively over the past century, and this research has stimulated attempts to create robots and simulated characters with similar skills. Biologists have found that groupings in animals are created through an attraction that modulates the desire of each member to join the group with the desire to maintain a sufficient distance from nearby characters.\cite{BrogHodg} As an example of this attraction, Cullen, Shaw, and Baldwin\cite{BrogMet} report that the density of fish is approximately equal in all planes of a school, as if each fish had a sphere around its head with which it wished to contact the spheres of other fish. Biologists have found that herding benefits group members by limiting the average number of encounters with predators (data summarized in Veherencamp ). Group behaviors also allow animals to hunt more powerful animals than those they could overpower as individuals. The success of behaviors such as these in biological systems argues the merit of exploring their use in robotic systems. An understanding of these behaviors is essential for realistic characters in virtual environments. \section{Bicycle Simulation Locomotion Controller} The bicyclists in these groups consist of three components: physical simulation, locomotion controller, and navigation controller (figure 3). The physical simulation is de¿ned by equations of motion that represent a hierarchy of rigid body parts and the rotary and telescoping joints that connect them. The equations of motion for the bicyclist were formulated using a commercially available package.\cite{RoseSher} A character's locomotion control ler computes how to actuate its joints in order to move at a specified desired velocity. Due to kinematic and dynamic constraints, the locomotion controllers cannot instantaneously eliminate errors between a character's desired velocity and its actual velocity. These limitations to a character's maneuverability, or mobility constraints, are realistic and intuitive to the user, but they make it more difficult for navigation controllers to compute a desired velocity for each character that accomplishes group behaviors, obstacle avoidance, and path following. \begin{figure} \vskip-6.2in \scalebox{.7}[.7]{\includegraphics*{fig3.pdf}} \caption{The simulation system used to animate physically simulated characters. The locomotion controller obtains a desired velocity from the navigation controller and computes the joint positions that will achieve it. The desired joint positions are passed to the joint controller, where joint torques are computed to eliminate errors in joint position. The joint torques are used by the numerical integrator to compute new positions for all the character's body parts.} \end{figure} \par The locomotion control system adjusts the speed of the bicycle by moving the bicyclist's legs to produce a torque at the crank. The desired torque at the crank is $\tau = k (v - v_b )$, where $k$ is a gain, $v$ is the magnitude of the velocity, and $v_d$ is the desired velocity (specified by the navigation controller). The force that can be applied by each leg depends on the angle of the crank because we assume that the legs are most effective when pushing downwards. When the crank is horizontal, the front leg can generate a positive torque and the rear leg can generate a negative torque. To compensate for the crank position, the desired forces for the legs are scaled by a weighting function between zero and one that depends on the crank position, $\theta_c$ : \begin{equation} w = \frac{\sin(\theta_c) + 1}{2} \end{equation} If $\tau_c > 0$, the force on the pedal that the left leg should produce is \begin{equation} f_l = \frac{\omega\tau_c}{l} \end{equation} where l is the length of the crank arms. \section{Bicycle Simulation Navigation Controller} The bicyclists in these groups consist of three components: physical simulation, locomotion controller, and navigation controller (Figure 3). The physical simulation is de¿ned by equations of motion that represent a hierarchy of rigid body parts and the rotary and telescoping joints that connect them. The equations of motion for the bicyclist were formulated using a commercially available package.12 A character¿s locomotion control ler computes how to actuate its joints in order to move at a speci¿ed desired velocity. Due to kinematic and dynamic constraints, the locomotion controllers cannot instantaneously eliminate errors between a character¿s desired velocity and its actual velocity. These limitations to a character¿s maneuverability, or mobility constraints, are realistic and intuitive to the user, but they make it more di¿cult for navigation control lers to compute a desired velocity for each character that accomplishes group behaviors, obstacle avoidance, and path following. \subsection{Computing Desired Positions} In this stage of the navigation control algorithm, a set of desired positions is computed for each individual in the group. These desired positions correspond to the herding and path following goals of the navigation controller. Each character computes a desired position relative to its visible neighbors that preserves a close grouping while avoiding collisions. Each individual would be in the perfect position according to the grouping goals of the navigation controller if it could move to this position instantaneously. However, each character must also follow the path, and a desired position is computed that satisfies this goal. In this subsection we describe the algorithms that specify these two desired positions. \subsection{Computing Desired Velocities} The desired velocity algorithm must combine a character¿s desired positions, current state, neighbor velocities, and the user-speci¿ed nominal velocity to compute an appropriate desired velocity. This desired velocity must preserve the character's balance while e¿ectively moving towards the desired positions. Therefore, the navigation control algorithm must take into account each character¿s physical qualities and locomotion controller. For example, human and alien bicyclists possess di¿erent mass distributions, which in turn affect how these characters must compute velocities to eliminate position errors. The navigation controller requires that the desired velocity algorithms be tuned to account for unique attributes of each character. \end{document}