| <?xml version="1.0" encoding="UTF-8"?><book> |
| <title>Agent Modeling Guide</title> |
| <chapter id="Introduction"> |
| <title>Introduction</title> |
| <para>In this manual we provide an in-depth understanding of what goes into an Agent Model, how you can use the Agent Modeling Framework and related tools to design one and present tutorials to get you started. But before going into details, let's take a quick overview at what agent-based modeling is is and how the Agent Modeling Framework can help you to develop models for ABM or other problem domains.</para> |
| <para>We hope you enjoy using the tool, and we look forward to your comments and feedback and most of all participation!</para> |
| <section id="Quick_Start"> |
| <title>Quick Start</title> |
| <para>If you're the kind of person who likes to jump right in, here are the basics.</para> |
| <section id="Install"> |
| <title>Install</title> |
| <para>If you've already installed a complete Agent Modeling IDE, such as one offered by the project contributors, or you have already installed AMP from the Eclipse update sites, you can obviously ignore this step. Otherwise, refer to the Installation Guide at the end of this manual.</para> |
| </section> |
| <section id="Welcome.21"> |
| <title>Welcome!</title> |
| <para>When you first open the IDE (or you first install the tools form an update site), you will see a welcome screen. If the screen isn't showing, select the |
| <emphasis role="bold">Help > Welcome</emphasis> menu. Click on the "Overview", "Samples" or "Tutorials" buttons to begin your exploration. |
| </para> |
| </section> |
| <section id="Cheat.21"> |
| <title>Cheat!</title> |
| <para>The Agent Modeling tools come with a number of "Cheat Sheets" to help get you started. You can access them by selecting |
| <emphasis role="bold">Help > Cheat Sheets...</emphasis>. Then under the "Agent Modeling" category, select a cheat sheet, such as "Load Sample Projects". |
| </para> |
| </section> |
| <section id="Follow_the_Tutorial"> |
| <title>Follow the Tutorial</title> |
| <para>The tools also come with extensive tutorials. See the "Tutorials" section for more help on that.</para> |
| </section> |
| <section id="Follow_your_Interest"> |
| <title>Follow your Interest</title> |
| <para>AMP has many potential facets and use cases. Check out the following sections of the manual for more information about..</para> |
| <section id="ABM_Researchers"> |
| <title>ABM Researchers</title> |
| <para>Run an example model using the "Run an Example Model" cheat sheet.</para> |
| </section> |
| <section id="ABM_Modelers"> |
| <title>ABM Modelers</title> |
| <para>Create Agent-Based models using simple visual tools and deploy them to a number of popular ABM platforms, including Escape. Follow the tutorial section of the Modeler's guide.</para> |
| </section> |
| <section id="ABM_Java_Developers"> |
| <title>ABM Java Developers</title> |
| <para>Write "Plain Old Java" models within a full-featured agent-based modeling framework. Read Programmers Guide and then try the "Create an Escape Java Model" cheat sheet.</para> |
| </section> |
| <section id="Eclipse_Plugin_Developers"> |
| <title>Eclipse Plugin Developers</title> |
| <para>AXF and AGF provide a number of features based around Eclipse technologies such as GEF, GEF3D, BIRT Charts and Zest. For example, AGF supports dynamic visualization of objects in space, and AXF supports managed UI and headless execution for models of any kind. There isn't currently any general documentation for these features, but we encourage you to look at the APIs and at Escape's implementation of them. They're straightforward and can be useful for a variety of general science platform needs.</para> |
| </section> |
| </section> |
| </section> |
| <section id="Agent-Based_Modeling"> |
| <title>Agent-Based Modeling</title> |
| <para>The primary focus of the Agent Modeling Platform tools is "Agent-Based Modeling" (ABM). ABM is an innovative technique used to explore complex phenomenon in many domains, including economics, social sciences, biomedicine, ecology and business operations. ABMs share characteristics with object models, but are:</para> |
| <variablelist> |
| <varlistentry> |
| <term>Spatial</term> |
| <listitem> |
| <para>Models have explicit environment(s) in which agents interact. (An environment need not be a physical landscape; other examples of spatial relationships include social networks or positions within a logic system.)</para> |
| </listitem> |
| </varlistentry> |
| <varlistentry> |
| <term>Temporal</term> |
| <listitem> |
| <para>Models change over discrete units of time.</para> |
| </listitem> |
| </varlistentry> |
| <varlistentry> |
| <term>Autonomous</term> |
| <listitem> |
| <para>Agent behaviors are activated independently from other object requests.</para> |
| </listitem> |
| </varlistentry> |
| <varlistentry> |
| <term>Heterogeneous</term> |
| <listitem> |
| <para>Agents may share behavior definitions but have apparent and distinct states and behaviors.</para> |
| </listitem> |
| </varlistentry> |
| <varlistentry> |
| <term>Collective</term> |
| <listitem> |
| <para>Models contain large communities of agents which exhibit collaborative and competitive behaviors.</para> |
| </listitem> |
| </varlistentry> |
| <varlistentry> |
| <term>Emergent</term> |
| <listitem> |
| <para>Agents have collective macro-behaviors that are non-obvious from agent micro-specifications.</para> |
| </listitem> |
| </varlistentry> |
| </variablelist> |
| <para>Existing scientific models are very good at representing relatively simple systems, but generally speaking aren't very good at representing complex systems. The world is full of complex systems, and our misunderstanding of these systems has prevented us from addressing many of the key challenges facing the world, including the global financial crisis and climate change -- in fact once could argue that our misunderstanding of these systems has strongly contributed to these crises.</para> |
| <para>Agent-Based Models (ABMs) seek to represent important real-world dynamics by designing communities of software agents that mimic real entities. Rather than make simplifying assumptions about such systems and then representing them in equation form or as off the shelf algorithmic constructs, the ABM researcher aims to identify key agent state, interaction spaces, and behaviors. Agents are then "let loose" on our computers and we explore what happens next. The computational horsepower exists today to simulate large numbers (e.g. >>10) of interacting, adaptive and autonomous agents but often desktop computers are all we need to explore significant domains. ABMs have been designed to represent all kinds of important natural systems, at scales reaching from cellular mechanics to international trade and are being used to solve truly hard problems in government, business, and academia. ABMs are not a solution to every problem, but they can help us to appreciate and gain unique insight into many systems, and often they can help us to come up with better practical decisions than we might using classic approaches.</para> |
| </section> |
| <section id="Other_Domains"> |
| <title>Other Domains</title> |
| <para>Many kinds of objects share characteristics of ABM agents -- after all, software agents are used in many other contexts. The Agent Modeling Framework meta-modeling support is potentially suitable (or extendible) for a number of approaches outside of ABM; for example business rules, object interactions, systems dynamics models and traditional discrete event models. Similarly, AMP execution and graphic support can be used for modeling natural systems but could also be used to manage other software agents -- for example independent reasoning tasks or dynamic visualization support.</para> |
| </section> |
| <section id="The_Agent_Modeling_Platform_.28AMP.29"> |
| <title>The Agent Modeling Platform (AMP)</title> |
| <para>The Eclipse Agent Modeling Project (Incubation) or "AMP" provides the core support for both open source and commercial modeling tools. AMP in turn is built upon Elipse, the most powerful, well-supported and popular Integrated Development Platform (IDE) available anywhere.</para> |
| <para>AMP provides extensible frameworks and exemplary tools for representing, editing, generating, executing and visualizing ABMs and any other domain requiring spatial, behavioral and functional features. AMP has two main themes that complement but don't depend on one another, modeling of agent systems (AMF) and execution and exploration of those systems (AXF, AGF and Escape).</para> |
| <para>The overall AMP architecture and project dependencies are summarized in the architectural diagram below:</para> |
| <para> |
| <mediaobject> |
| <imageobject> |
| <imagedata fileref="images/AMPArchitectureDiagram.jpg" scale="50"/> |
| </imageobject> |
| </mediaobject> |
| </para> |
| <section id="Agent_Modeling_Framework_.28AMF.29"> |
| <title>Agent Modeling Framework (AMF)</title> |
| <para>AMF provides an ABM meta-model representation, editor, generator and development environment. The AMF Acore meta-model is similar to EMF Ecore and defined in Ecore, but provides high-level support for complex agents.AMF generates complete executable models for Escape, Ascape and Repast Simphony, as well as Java Skeletons and Interfaces, JUnit test cases and documentation and is easily extensible to support additional targets. For more on AMF, see the Modeler Guide.</para> |
| </section> |
| <section id="Agent_Execution_Framework_.28AXF.29"> |
| <title>Agent Execution Framework (AXF)</title> |
| <para>The execution framework provides services and UI for model management, execution, and views. Arbitrary toolkits can easily integrate with Eclipse and AXF by implementing pluggable providers like engines, agents and view parts. AXF is not just for ABM -- anyone who needs support for executing, managing and visualizing collections of objects may find it useful. AXF user tools are covered extensively in the User Guide, and the forthcoming Platform Developers Guide will provide information about integrating AXF in your own tools.</para> |
| </section> |
| <section id="Agent_Graphics_Framework_.28AGF.29"> |
| <title>Agent Graphics Framework (AGF)</title> |
| <para>The graphics framework extends GEF, GEF3D, Zest, and the BIRT charting engine to support real-time visualization of and interaction with agent models. AGF currently provides support for 2D, 2 1/2 D. and graph structures, and will be extended to 3-D, GIS and others. As with other AMP components, the AGF design focus is to provide an extensible infrastructure so that platform adopters can easily create their own view and editor parts. AGF user tools are covered extensively in the User Guide, and the forthcoming Platform Developers Guide will provide information about integrating and extending AGF in your own tools.</para> |
| </section> |
| <section id="Escape"> |
| <title>Escape</title> |
| <para>Escape is an exemplar ABM toolset. It's based on Ascape, which has been in use for more than 10 years. The core API is very stable, and that should give users a way to explore the features of AMP without concerns about keeping in synch with the rapidly evolving AXF /AGF API. It allows modelers to code in Java and/or generate models with AMF and then execute those models within the same development environment. Escape is the primary target for most of the models in this guide. Those users interested in writing code directly to the Escape API can refer to the Programmer Guide.</para> |
| </section> |
| </section> |
| <section id="Credits"> |
| <title>Credits</title> |
| <para>Miles Parker is a consultant and software developer with over ten years of experience in the agent-based modeling field and twenty years developing object-oriented tools and frameworks and is the architect and project lead for the Eclipse Agent Modeling Platform (Incubation).</para> |
| <para>Metascape, LLC is the primary contributor to AMP and provides Agent-Based Modeling tools, including sophisticated tools based on the AMF platform, and comprehensive consulting services. For more information on Metascape products and services visit |
| <ulink url="http://metascapeabm.com">http://metascapeabm.com</ulink>. |
| </para> |
| <para>The AMF meta-model started life as |
| <ulink url="/wiki/http://www.agent2005.anl.gov/2006procpdf/Parker_Agent_2006.pdf">"score"</ulink>, a component of the Repast Simphony environment. Argonne National Labs supported the initial development in 2007 and agreed to contribute the relevant IP to the Eclipse project in 2009. It wasn't fully utilized within Simphony, and migrated from there to the MetaABM project supported by Metascape. The MetaABM project defined a complete editor, code-generation and model execution suite that formed the initial AMP AMF contribution. Metascape has sponsored the development of AMF from 2007 through the present. |
| </para> |
| <para>The AMP logo was inspired by the |
| <ulink url="/wiki/http://swarm.org_Swarm_logo">http://swarm.org Swarm logo</ulink> with their kind permission. |
| </para> |
| </section> |
| </chapter> |
| <chapter id="Modeler_Guide"> |
| <title>Modeler Guide</title> |
| <section id="Overview"> |
| <title>Overview</title> |
| <para>In this section we present the design of the Agent Modeling Framework and explain how it can be used to create models that are transparent, composable and adaptable. Fundamentally, an agent-based model, or "ABM", is composed of five pieces: Agents and Context Agents, Attributes, Spaces, and Actions. The first three refer to structural components, whereas Actions define behavior. Agent models also have styles, which are a special kind of Action used to determine how to portray an agent in a visualization. Finally Actions make use of Functions. We'll describe of these components in a separate section.</para> |
| <section id="Agent_Modeling_Framework"> |
| <title>Agent Modeling Framework</title> |
| <para>The Eclipse Platform provides many unique features that make it ideal for an ABM platform. AMF provides easy to use and powerful tools and techniques for designing Agent-Based Models, including a common representation, editors, generators and development environment.</para> |
| <para>The Agent Modeling Framework (AMF) provides high level representations for common ABM constructs, and introduces novel ways of representing agents and their behaviors. As detailed in other documentation sections, the Agent Modeling Framework and related tools have been designed to allow researchers to explore complex models in an intuitive way. One of our major design goals has been to create tools that non-programmers can use to create sophisticated models. It has been our experience that using Model-Driven Software Development (MDSD) techniques increase productivity for all developers regardless of skill level. </para> |
| <para>The foundation of the Agent Modeling Framework is "Acore". The current version uses an interim version of Acore called "MetaABM". We refer to the AMF models as "meta-models" because they are used to define |
| <emphasis role="italic">how</emphasis> Agent-Based Models are themselves modeled. For those familiar with Eclipse Model-Driven Development tools, AMF is analogous to EMF but is targeted toward the design and execution of models composed of agents. Acore and MetaABM are defined in Ecore but provide a more direct and high-level ABM representation of agents, including spatial, behavioral and functional features sufficient to generate complete executable models for the target platforms. AMF is fully integrated with the Eclipse IDE platform, but Acore models themselves need have no dependencies on any particular technology beyond XML/XSD. |
| </para> |
| <para>Models designed in AMF are transparently converted to Java code for leading Agent-Based Modeling tools, such as the Escape tools which are included in AMP and allow direct execution of models within the AMP environment, and Repast Simphony, another popular Java based ABM tool. These tools create Java code that can then be compiled, executed and event modified in these environments just as with any other Java program. AMF's generative capability is designed to be pluggable and modular so that other developers can create AMF generators for their own tools. In fact, targets can be designed that have no inherent dependencies on Eclipse or even on a traditional platform.</para> |
| <para>The Acore / MetaABM meta-model is made up of three main packages. This is all based on MetaABM, and while names and important details will change for Acore, the core design should be quite similar.</para> |
| </section> |
| </section> |
| <section id="Structure"> |
| <title>Structure</title> |
| <section id="Overview_2"> |
| <title>Overview</title> |
| <para>The basic structure of an agent-based model can be quite simple. While there are many subtle complexities -- beyond the scope of this manual -- we can construct most models following some straightforward and elegant design principles. And in fact, one of the main goals of the Agent Modeling Framework is to provide a consistent framework that can support using those principles to support the creation of models that can be easily understood, shared, and that can be used interchangeably as components in other models.</para> |
| <para>Unlike the approach of a traditional Object Oriented environment, the dominant organizing principal for agents within AMF follows a compositional hierarchical model, not an inheritance model. (Inheritance-like behavior will be supported in forthcoming versions of Acore, but in a more sophisticated, flexible and dynamic way than is supported by traditional programming languages such as Java.) Contexts -- also referred to as "Swarms" or "Scapes", are simply Agents that are capable of containing other agents. With this basic construct -- known as a Composition in design pattern language -- agents are able to contain other agents.</para> |
| </section> |
| <section id="Details"> |
| <title>Details</title> |
| <section id="General"> |
| <title>General</title> |
| <para>Everything represented in an Acore model needs to be referred to in some way. Just as software classes have names, Acore provides a way to label and describe every entity, but in a richer and more maintainable way. All entities in Acore -- including Actions and Functions which we describe in the next two sections -- have a number of shared values.</para> |
| <section id="Named_Entities"> |
| <title>Named Entities</title> |
| <section id="Label"> |
| <title>Label</title> |
| <para>A reasonably short, human readable name for the agent. For example, "Timber Wolf", "Exchange Trader" or "Movement Probability". These should be defined so that they fit in well with auto-generated documentation. Note that Labels must be unique throughout the model. (This may change in future releases for Action names.) If you try to provide an object with a name that is already in use, "Copy" will be appended to the end of the name. </para> |
| </section> |
| <section id="ID"> |
| <title>ID</title> |
| <para>An ID is an identifier that can be used to represent the object in a software program. This means that it must follow certain rules such as no-spaces or non alpha-numeric characters. The editing tools will help make sure that this value is legal. Note that when you enter a label, a legal ID is automatically created for you! Usually you won't need to change this, but you might if for example you want the value to match up with some database or other external representation. So reasonable values here might be "timberWolf" or perhaps "MVMNT_PRB" if say you're trying to match up to some old statistics records you have. (Note that currently IDs by default use "camel case", i.e. "thisIsAnExampleOfCamelCase" to match with Java variable naming conventions, but this is likely to change.) Like labels, IDs need to be unique across the model, and the editing tools will assign a different id if you attempt to give two entities the same id.</para> |
| <para>And most entities also define:</para> |
| </section> |
| <section id="Description"> |
| <title>Description</title> |
| <para>A complete textual description of the object. Don't overlook this -- it is the most important part of your model. The description will show up in your auto-generated html documentation, software documentation and even in your running model. You should include enough information that model users will understand what the entity is for and what it does without referring elsewhere. This is also where any attributions and references should go. You can put html tags in here -- such as href's to external papers, but keep those to a minimum as they won't be rendered as html in all contexts.</para> |
| </section> |
| <section id="Plural_Label"> |
| <title>Plural Label</title> |
| <para>The plural representation of an entity. This can be a surprisingly useful thing to have in generated documentation and software code, so it's worth maintaining. The editor will automatically add an "s" at the end of the label you've entered above, but you change it to whatever is appropriate. For example "Person", or "Timber Wolves".</para> |
| </section> |
| </section> |
| </section> |
| <section id="Agents"> |
| <title>Agents</title> |
| <section id="Simple_Agents"> |
| <title>Simple Agents</title> |
| <para>An Agent is simply a software object that has autonomous behavior and (generally speaking) exists within some set of spaces. By autonomous, we mean that agents make the choice about when and how to execute a behavior, as opposed to have that controlled from "above", so to speak. Like any software objects, agents have attributes (fields) and actions (methods) associated with them.</para> |
| <section id="Attributes"> |
| <title>Attributes</title> |
| <para>As described in the attribute sections above.</para> |
| </section> |
| <section id="Actions"> |
| <title>Actions</title> |
| <para>Described in the "Actions" section.</para> |
| </section> |
| <section id="Styles"> |
| <title>Styles</title> |
| <para>Special actions that are used to define how to draw an agent graphically as also described in the "Actions" section and detailed in the "Functions" section.</para> |
| </section> |
| </section> |
| <section id="Context_Agents_.28Contexts.29"> |
| <title>Context Agents (Contexts)</title> |
| <para>As detailed above, agents also form the basic structural component of an agent-based model. To get an idea for how this works, have a look at the "EpidemicRegional.metaabm" model. Note that in future releases, we will probably refer to Contexts as "Scapes".</para> |
| <section id="Agents_2"> |
| <title>Agents</title> |
| <para>The agents that are contained within this context. For example, a context representing a city might contain an Individual Agent for defining all individuals in the model, and a Vehicle agent defining all vehicles. Note that when we refer to an agent in this context, we mean a general type or class of agent, not the agent itself.</para> |
| </section> |
| <section id="Spaces"> |
| <title>Spaces</title> |
| <para>The set of all spaces contained or subsumed by the agent. For example, a context representing a city might contain a geographical space and a transportation network space.</para> |
| </section> |
| </section> |
| </section> |
| <section id="Attributes_2"> |
| <title>Attributes</title> |
| <para>Agents need some way to represent their internal state. For example, an agent in an economic model might have a wealth attribute, and an agent in an ecology model might have a quantity of food and a particular vision range. These states are represented as attributes just as all software objects do. In an agent model, we keep richer information about these attributes and generally represent them at a higher level. For example, rather than specify that a real value is a "double", a "float" or a "big number", we represent them as "Reals" so that they can be implemented and tested in different environments. This might allow us for instance to ensure that a model's behavior is not dependent on a particular machine implementation of floating point arithmetic. Also, note that attributes only represent so-called "primitive" values -- that is, actual measurable features of a particular agent but not an agent's relationship to other agents or objects. See the discussion about networks for more on this key topic.</para> |
| <para>Here are the basic types of attributes available in Acore models:</para> |
| <section id="Basic_Attributes"> |
| <title>Basic Attributes</title> |
| <para>Attributes are single values that a given agent contains. For example, an agent might have an "Age" attribute. In this section we go over the values you can set for the attributes. For those with a tecnical bent, note that we are technically describing the meta-attributes for the meta-class "SAttribute". But it is far too confusing to refer to the attributes of attributes! So we'll just refer to the attributes that any of our model components as "values".</para> |
| <section id="Type"> |
| <title>Type</title> |
| <para>These can be anyone of the following: </para> |
| <variablelist> |
| <varlistentry> |
| <term> |
| <emphasis role="bold">Boolean</emphasis> |
| </term> |
| <listitem> |
| <para>A value that is simply true or false. Note that unless this value really is a simple binary value, you should consider using state instead. (See details below.) For example, rather than representing gender as a 'Female' boolean value, define a 'Gender' state with values 'Male' and "Female'. Generated artifacts and documentation will be much clearer, and you'll be able to easily modify the model later if for example you discover that there are more than two potential gender categories that are relevant to your model.</para> |
| </listitem> |
| </varlistentry> |
| <varlistentry> |
| <term> |
| <emphasis role="bold">Integer</emphasis> |
| </term> |
| <listitem> |
| <para>A discrete whole number value, such as "100", "-1", "10029920". It's generally a good idea to represent any value that can never have a decimal value as an integer.</para> |
| </listitem> |
| </varlistentry> |
| <varlistentry> |
| <term> |
| <emphasis role="bold">Real</emphasis> |
| </term> |
| <listitem> |
| <para>A continuous number value. While these are typically represented in software as floating point numbers, they can conceivably represent numbers at any arbitrary precision and in any scheme. Note that while technically speaking we should be representing irrational numbers, this is not currently supported for default values and users should simply use the closest decimal approximation.</para> |
| </listitem> |
| </varlistentry> |
| <varlistentry> |
| <term> |
| <emphasis role="bold">Symbol</emphasis> |
| </term> |
| <listitem> |
| <para>A string representing some state. More precisely, a computationally arbitrary value with contextual meaning. This could be any kind of identifier. For example, you might use it to store some kind of input coding from data that is then converted into an object state. Or it could simply be an agent's name. But theoretically (though this is not currently supported) one could imagine a symbol using an idiogram, an icon or even a sound that identifies or represents the agent in question.</para> |
| </listitem> |
| </varlistentry> |
| </variablelist> |
| <para>(Undefined and Numeric types should not be used within a well-defined model.)</para> |
| </section> |
| <section id="Default_Value"> |
| <title>Default Value</title> |
| <para>The value that should be assigned to the attribute at the beginning of any model run. The attribute may of course be assigned a different value in an Initialize rule, but its a good idea to specify one here. It's OK to leave it blank, in which case a sensible 'empty' value will be assigned, i.e. false for Boolean, 0 for Integers and Reals, and an empty string for Symbol.</para> |
| </section> |
| <section id="Gather_Data"> |
| <title>Gather Data</title> |
| <para>Here you can specify whether executing models should collect aggregate values for the data. For example, if you select this value as true for a 'Wealth' attribute, Escape will automatically keep track of minimum, maximum, average, sum and optionally standard deviation and variance across all agents for each model execution period. All of these statistics will then be selectable with a mouse click to appear in your model charts at runtime.</para> |
| </section> |
| <section id="Immutable"> |
| <title>Immutable</title> |
| <para>This value indicates whether you expect the model value to change. If you know that it won't or shouldn't, this value should be true.</para> |
| </section> |
| <section id="Derived"> |
| <title>Derived</title> |
| <para>A derived attribute is one whose value is detemrined solely based on other agent attributes. A derived value is always associated with a Derive root action which is created automatically by the editor. See the documentation on the Derive action for more details. An attribute cannot be both derived and immutable.</para> |
| </section> |
| <section id="Units"> |
| <title>Units</title> |
| <para>Specifies what the attribute is actually measuring. For example, if you're defining an attribute for "Wealth" in the context of a model of the world economy, you might specify "USD". If you're defining "Age", you might specify "Years", for "Mass" "Kg". Like description, this value is often overlooked, but can be critically important to allowing yourself and others to understand and correctly calibrate a model. Note that this will also allow you to simplify variable names -- instead of using "Age in Years", you can simply specify "Age" and the appropriate unit. It may be obvious to you that your model is concerned with age in years, but a user who needs to specify a different granularity will be grateful for more clarity.</para> |
| </section> |
| </section> |
| <section id="Arrays"> |
| <title>Arrays</title> |
| <para>Arrays are simply attributes with zero or more entries. For example, you might have an array of three Real numbers representing the Red Green and Blue color components for an object. Note that if you find yourself defining very complex sets of arrays, its likely that what you really want to define is a new agent with attributes for each array. In addition to what is defined above, arrays specify:</para> |
| <section id="Size"> |
| <title>Size</title> |
| <para>The number of values that the array attribute will contain.</para> |
| </section> |
| </section> |
| <section id="States"> |
| <title>States</title> |
| <para>States represent any agent quality that may take on one of a number of well defined values. For example, an "Ice Cream Consumer" Agent might contain a state of "Ice Cream Preference" with options of "Chocolate", "Vanilla" and "Ginger".</para> |
| <section id="State_Options"> |
| <title>State Options</title> |
| <para>Create new options for states by adding them to the state node. States are simple described items. Don't forget to provide a description! States also have</para> |
| </section> |
| <section id="Default_Option"> |
| <title>Default Option</title> |
| <para>unlike for regular attributes, this option is not optional! Simply pick a state option to be assigned that the agent will take if no other option has been assigned.</para> |
| </section> |
| </section> |
| </section> |
| <section id="Spaces_2"> |
| <title>Spaces</title> |
| <para>All contexts can contain spaces. Spaces provide an environment in which agents can have a physical or notional location and upon which they can interact with one another and their environment. Agents can exist in more than one space at a time, and a given agent need not exist in every space. (Note that this is different from the Repast Simphony notion of projections, though the two representational approaches are generally compatible.) Agents need not represent explicit, "real" spatial structures such as a landscape, though this is of course the most common use. They can also represent relational and state information, such as a belief space or a social network. There are four kinds of space represented:</para> |
| <section id="Space_.28Continuous.29"> |
| <title>Space (Continuous)</title> |
| <para>In the modeling tools, we simply refer to this as a "Space" as it is represents the general concept of a space. A space is simply something that contains objects with certain locations and extents and has a certain number of dimensions. The space is continuous, in the sense that objects can be placed anywhere with arbitrary position. Spaces hold attributes, which simply define their dimensions-- see below.</para> |
| <section id="Border_Rule"> |
| <title>Border Rule</title> |
| <para>A value representing what happens to an agent when that agent is asked to move beyond its extent.</para> |
| <variablelist> |
| <varlistentry> |
| <term> |
| <emphasis role="bold">Periodic</emphasis> |
| </term> |
| <listitem> |
| <para>When encountering an edge, the agent will treat the space as wrapping around to the other side of the space. For example, if the agent at location {1,2} (0-based) within a Moore space (see grid discussion below) of size {10,10} is asked to find some other agent within distance 3, the agent look in the square defined between {8,9} and {4,5}. An agent asked to move beyond the confines of the space will simply stop when it reaches the edge. You can imagine this as taking a piece of graph paper and connecting the opposite edges. You can't actually do that with paper, but if you could you would have a toroidal (donut) shape in three dimensions defining the shape in two.</para> |
| </listitem> |
| </varlistentry> |
| <varlistentry> |
| <term> |
| <emphasis role="bold">APeriodic</emphasis> |
| </term> |
| <listitem> |
| <para>When encountering an edge, the agent treats it as the edge of the space. For example, if the agent at location {1,2} is asked to find some other agent within distance 3, the agent look between {0,0} and {4,5}. An agent asked to move beyond the confines of the space will simply stop when it reaches the edge.</para> |
| </listitem> |
| </varlistentry> |
| </variablelist> |
| <para>The "Strict" and "Bouncy" values are obsolete and should not be used.</para> |
| </section> |
| <section id="Dimensionality"> |
| <title>Dimensionality</title> |
| <para>The number of dimensions that the space has. After selecting a dimensionality, attributes will be added to represent each dimension. For example, if you enter 3 here, you will have an attribute for X, Y, and Z. Be sure to enter default values here, as they will be used to specify the actual size of the space.</para> |
| </section> |
| </section> |
| <section id="Grid"> |
| <title>Grid</title> |
| <para>A grid is technically a regular lattice structure. Currently, only rectilinear structures are supported, i.e. a One-dimensional vector, a two-dimensional grid, a three-dimensional cube and so on. (Though none of the current target platforms support n-d spaces yet.) </para> |
| <para>Like continuous spaces, a grid has a border rule and dimensionality. A grid has a couple of other important values:</para> |
| <section id="Multi-Occupant"> |
| <title>Multi-Occupant</title> |
| <para>Does the grid allow more than one agent to occupy it at a time? This value may be replaced with another mechanism in future releases.</para> |
| </section> |
| <section id="Neighborhood"> |
| <title>Neighborhood</title> |
| <para>This value determines what constitutes a region within a particular distance from the agent. The value for this is often critical in obtaining particular behavior from a model, and shouldn't be overlooked. There are three possible values:</para> |
| <variablelist> |
| <varlistentry> |
| <term> |
| <emphasis role="bold">Euclidean</emphasis> |
| </term> |
| <listitem> |
| <para>The distance between any two cells is taken to be the "real" distance. For example, if an agent was within a chess board, and we wanted to find all agents within distance three of it, we could determine that by taking a string of length 3, tacking it to the center of the source square, and including all cells whose centers we can reach with the other string end. Note that although Euclidean space may seem the most reasonable neighborhood configuration to choose, this really isn't the case. Euclidean space is continuous whereas grid space is discrete, and mapping the two to each other can create unexpected issues. Still, this is a good choice for models representing notional real spaces.</para> |
| </listitem> |
| </varlistentry> |
| <varlistentry> |
| <term> |
| <emphasis role="bold">Moore</emphasis> |
| </term> |
| <listitem> |
| <para>Here, the distance between any two cells is defined by the number of edge |
| <emphasis role="italic">or</emphasis> corner adjacent cells crossed to get between them. To continue the chess board analogy, this is the set of moves that a king can make. Note that this does not map well to real space at all, as a cell at distance 1 in a moore space is at distance sqrt(2) in "real" space. |
| </para> |
| </listitem> |
| </varlistentry> |
| <varlistentry> |
| <term> |
| <emphasis role="bold">Von-Neumann</emphasis> |
| </term> |
| <listitem> |
| <para>Here, the distance between any two cells is defined by the number of edge adjacent cells crossed to get between them. This is the set of moves that a rook might make on a chess board -- if a rook could only move one square at a time. It is also often referred to as a Manhattan distance for the self-evident reason.</para> |
| </listitem> |
| </varlistentry> |
| </variablelist> |
| </section> |
| </section> |
| <section id="Network"> |
| <title>Network</title> |
| <para>A network represents a set of relationships between agents, in a graph structure. The concept is pretty simple, but note that a network is actually a critical part of many AMF models. This is because we use networks to represent any kind of references between agents. You may have noticed in the discussion about attributes that there is no generic "object" type for an attribute. In fact, attributes only contain primitive values. So we will use networks to do the kinds of things that we would often use object references for in a traditional Object-Oriented model. For example, if an agent is a member of a family, rather than have that agent have a member attribute of "family" with a reference to the "Family" object, the modeler would create a "Family Members" network and connect agent's to their families as appropriate. This implies that network members can contain members of many different types.</para> |
| <para>A network has only one value to specify:</para> |
| <section id="Directed"> |
| <title>Directed</title> |
| <para>This indicates whether connections between agents are one-way or two-way. If this value is false, then if a connection is made between an agent A and an agent B, and agent B searches within distance 1, agent B will find agent A. If this value is true, agent A can find agent B, but agent B can not find agent A. (Unless of course some other path leads B to A.)</para> |
| </section> |
| </section> |
| <section id="Geography"> |
| <title>Geography</title> |
| <para>A geography represents a physical landscape. Here we assume that that landscape is going to be defined by an external data source and representational scheme -- typically a Geographical Information System. We'll describe how to work with GIS in more detail when we discuss builder actions.</para> |
| </section> |
| </section> |
| </section> |
| <section id="Reference"> |
| <title>Reference</title> |
| <section id="Diagrams"> |
| <title>Diagrams</title> |
| <para>For readers familiar with UML and meta-modeling, the following diagrams give more detail on the structural design.</para> |
| <section id="Meta-Classes"> |
| <title>Meta-Classes</title> |
| <para>Our first diagram depicts the core structural design of the model. </para> |
| <para> |
| <mediaobject> |
| <imageobject> |
| <imagedata fileref="images/structure/StructureComplexDiagram.png" scale="50"/> |
| </imageobject> |
| </mediaobject> |
| </para> |
| <literallayout format="linespecific" class="normal">There seems to be a lot going on here, but the basic components are pretty straightforward as we can see in the next diagram. |
| </literallayout> |
| </section> |
| <section id="Key_Collaborations"> |
| <title>Key Collaborations</title> |
| <para> |
| <mediaobject> |
| <imageobject> |
| <imagedata fileref="images/structure/StructureSimpleDiagram.png" scale="50"/> |
| </imageobject> |
| </mediaobject> |
| </para> |
| <literallayout format="linespecific" class="normal">Core interactions are in Red. The meta-model structure is essentially a Composite pattern. |
| </literallayout> |
| </section> |
| <section id="Details_2"> |
| <title>Details</title> |
| <orderedlist inheritnum="ignore" continuation="restarts"> |
| <listitem> |
| <para>Every model has at its root a Context (Scape). Contexts are Agents that are capable of containing other Agents (including other contexts, naturally). </para> |
| </listitem> |
| <listitem> |
| <para>(Meta-level) Contexts contain (meta-level) Agents at the model (design-time) level. At runtime, (model-level) Context instances defined in a (meta-level) SContext will contain (model-level) agent instances of the defined (meta-level) SAgent. This sounds more complicated than it is, so let's look at a simple example. Suppose we create a new Context, and give it a label of "Wiki Example". Within that Context, we create an Agent and give it a label of "Individual" and another Agent with the label "Block". At runtime when we are actually executing the model we will have one WikiExample model instance which contains a number of Individuals.</para> |
| </listitem> |
| <listitem> |
| <para>Agents contain Attributes, such as Vision and Age. Context attributes often represent input parameters for contained agents. For example, our Wiki Agent Context might contain an Individual Count as well as a Minimum Age and Maximum Age.</para> |
| </listitem> |
| <listitem> |
| <para>Contexts can contain Projections (Spaces), which represent some kind of spatial or structural interaction space for the agents; either a grid, a continuous (euclidean) space, or a network (graph) or geographic space of some kind. For example, we might want to have a City that contains Blocks and that an Individual can move around within.</para> |
| </listitem> |
| <listitem> |
| <para>Agents are Actable and thus can contain any number of behaviors called "Actions", described in detail in the next section. Actions can describe individual behavior, and at the Context (Scape) level can define how member Agents and Projections are created.</para> |
| </listitem> |
| <listitem> |
| <para>Styles provide a mechanism for defining generic visualization behavior for Agents and so are also Actable. For example, an Agent might have an Action that says effectively "draw a red circle shaded red for the wealth of the agent".</para> |
| </listitem> |
| </orderedlist> |
| </section> |
| </section> |
| </section> |
| </section> |
| <section id="Actions_2"> |
| <title>Actions</title> |
| <para>Actions are the most important part of an agent model. While Agents, Attributes and Spaces define what we're modeling, it is Actions that give the models life.</para> |
| <section id="Overview_3"> |
| <title>Overview</title> |
| <para>Actions allow the definition of behavior for agents at a very high level. You can think of actions as being analogous to methods in a traditional object-oriented model but that analogy only goes so far. In the same way that methods are defined as part of objects, actions belong to particular agents. (Though even more expressive ways of defining actions are contemplated in future releases.) In the next section we go into detail about what Actions are and how they can be used to define all agent behavior. They are also conceptually more challenging as unlike with structure they have no direct analogies to past agent representations.</para> |
| <para>An action provides simple, well-defined details that a model can use to determine what steps to take in model execution. That definition seems general enough to be almost useless, but its important to understand that an action is not equivalent to an instruction, a method or a query. In fact, actions can have aspects of all of these. But an action is not in itself an instruction specifying exactly |
| <emphasis role="italic">how</emphasis> the modeling engine should do something -- instead an action represents |
| <emphasis role="italic">what</emphasis> the modeler intends for the agents to do. (Technically, we might say that Actions takes a "declarative" approach instead of an 'imperative' approach, but that's not quite true, because actions do allow us to define behavior in a richer way than most declarative approaches, and many action constructs map directly to imperative approaches.) |
| </para> |
| <para>Actions are connected together in a series of sources and targets. (Technically, an acyclic directed graph.) In an abstract sense that is similar to the way any programming language is defined although that structure isn't usually obvious because of the constraints of textual representations. But unlike a typical programming language, in Actions it is not the execution thread (the processor) that moves from one instruction to the next, but the result of the previous action. In this way, action results "flow" from the output of one action into the next action.</para> |
| <para>Why are these distinctions between traditional Object-Oriented and the Action approaches important? They give us the advantages of simplicity, clarity and flexibility that |
| <ulink url="/wiki/http://en.wikipedia.org/wiki/Dataflow_programming">data-flow approaches</ulink> like spreadsheets and some query languages have, but with less restrictions. At the same time, they can bring us much of the power and expressiveness of |
| <ulink url="/wiki/http://en.wikipedia.org/wiki/Functional_programming">functional languages</ulink> like Lisp or |
| <ulink url="/wiki/http://en.wikipedia.org/wiki/Logical_programming">logical languages</ulink> like Prolog, but without the level of complexity and obscurity that such languages can have. |
| </para> |
| <para>We can get a better idea for how Actions work by thinking about how a spreadsheet works. In a spreadsheet, we might define a cell A that adds up a row of data, say "Income". We might define another cell C ("Profit") that takes A and adds it to another cell B that adds up another row of data ("Expenses"). Now, if we change a value in any of the rows, all of the other rows are added up and we get the results in A and B updated automatically. We never had to write code that said something like "for each cell in row X, where...". In fact, we don't really care |
| <emphasis role="italic">how</emphasis> our Spreadsheet program adds up the numbers -- it could have added them all up at once but in backward order, or stored a running total somewhere and updated just the difference in value for the cell we changed -- what we care about is |
| <emphasis role="italic">what</emphasis> the result is, and whether it is correct. |
| </para> |
| <para>But Actions are much more powerful than a spreadsheet, because what is flowing from Action A to Action B is not just a number, but any model component such as a space or a set of agents that we need to use in target actions.</para> |
| </section> |
| <section id="Concepts"> |
| <title>Concepts</title> |
| <para>In this section, we'll describe how modelers can assemble actions into sets of behavior that accomplish complex tasks on interrelated agents and spaces over time.</para> |
| <section id="Kinds_of_Actions"> |
| <title>Kinds of Actions</title> |
| <informaltable frame="none"> |
| <tr> |
| <td rowspan="1" colspan="1">Before getting into the details of how each Actions work together, or the various kinds of Actions, it will be helpful to take a broad overview of how they all fit together. As discussed above, actions are strung together in a sequence or flow. They're always composed of two parts, though those parts can be assembled and intermixed in many different ways. First, we search for a collection of agents, and then we do something with that selection. We refer to these two parts as Selections and Commands. (For the technically minded, another useful way of looking at the Actions approach is as a Query Transformation language, as with SQL and Stored Procedures. Except again, the results of the queries along with the transformations flow through from one query to the next.) Selections find the agents we want to do something with, and the commands do it. We need some way to start the whole chain of actions off, and so we have a kind of Selection called a Root Selection, or simply a Root. Secondly, we need some way to actually make the agents exist in the model in the first place, so we have a Create Agents action. Finally, we have special commands called builders that allow us to create the spaces that the agents will occupy. The various actions are discussed in depth in the Details section. The diagram at the right depicts how actions relate to one another -- it does not include some actions that have been added more recently.</td> |
| <td rowspan="1" colspan="1"> |
| <mediaobject> |
| <imageobject> |
| <imagedata fileref="images/actions/ActionsBlocks.png" scale="50"/> |
| </imageobject> |
| </mediaobject> |
| </td> |
| </tr> |
| </informaltable> |
| </section> |
| <section id="Flow"> |
| <title>Flow</title> |
| <para>First, let's look at how actions define the basic path that agents take during a model run. As with any programming language, the path we take through the program specification is what determines our state when we get there. In a pure object oriented program, the path just defines the control flow -- what we are doing. The actual state of our model is defined within the object itself. If we call a method B from another method A, we'll be relying on method A to set the values that we need into the object state itself. In a purely functional program the path defines how we are going to deal with whatever has been explicitly passed in to a function that has been called, that is the function parameters. In fact, most languages such as Java combine aspects of both approaches.</para> |
| <para>In Actions, the path itself implicitly carries all of the context of prior execution with it. This means that we don't have to worry about storing context in the object -- as we would in an object-oriented language -- or passing the correct values from one method call to the next as we would in a functional language. Instead, Actions can use the implicit context of the path of flow to determine what the current state of execution is. |
| An important aspect of the Actions design is that loop structures are not allowed -- that is, flows are acyclic. An action can never have an ancestor target (that is targets, targets of targets, etc..) that has as one of its ancestors that same action. As you'll see, actions don't typically |
| <emphasis role="italic">need</emphasis> loop structures. By far the most common use of loops in conventional programming langauges is to loop through collections of objects. As selections (see below) refer to the entire collection of agents, any actions on a selection apply to all members of that collection. Recursive structures are needed for some particular usages and will be supported in future releases, but not through an explicit looping construct. |
| </para> |
| <informaltable frame="none"> |
| <tr> |
| <td rowspan="1" colspan="1">Again, behaviors in Actions are always defined by a set of |
| <emphasis role="italic">selections</emphasis> and |
| <emphasis role="italic">queries</emphasis>. In the diagram to the right, we can see the pattern. First, we define a Root Selection for a Rule, Schedule or other triggering event. Then, we might add a series of Query and Logic Actions to define the specific agents that we are interested in. These are all part of the Selection. Next, we might define a series of Commands to determine what to do with those agents. Or, we could use the result of that selection to immediately define another selection, for example if we are searching for an agent that is near another agent. |
| </td> |
| <td rowspan="1" colspan="1"> |
| <mediaobject> |
| <imageobject> |
| <imagedata fileref="images/actions/ActionsSequence.png" scale="50"/> |
| </imageobject> |
| </mediaobject> |
| </td> |
| </tr> |
| </informaltable> |
| <informaltable frame="none"> |
| <tr> |
| <td rowspan="1" colspan="1">The diagram to the right depicts a simple example. Here, we create a rule, and then check the results of two queries. For any agents that meet those criteria, we'll evaluate some function based on their state, and then set some value on them.</td> |
| <td rowspan="1" colspan="1"> |
| <mediaobject> |
| <imageobject> |
| <imagedata fileref="images/actions/ActionsSimpleSequence.png" scale="50"/> |
| </imageobject> |
| </mediaobject> |
| </td> |
| </tr> |
| </informaltable> |
| <informaltable frame="none"> |
| <tr> |
| <td rowspan="1" colspan="1">In this next example, we'll first create the rule, and then create a new selection with a set of criteria. Finally, we'll do a move based on those queries.</td> |
| <td rowspan="1" colspan="1"> |
| <mediaobject> |
| <imageobject> |
| <imagedata fileref="images/actions/ActionsSimpleSequence2.png" scale="50"/> |
| </imageobject> |
| </mediaobject> |
| </td> |
| </tr> |
| </informaltable> |
| <para>In the following example, we've defined a set of actions and their relationships. We have a selection, a few queries and a couple of logic operators leading to a Set Action. We'll describe in detail below how Logic Actions are used in conjunction with other actions to assemble any kind of query structure needed. But for now, we'll focus on the control flow itself.</para> |
| <para> |
| <mediaobject> |
| <imageobject> |
| <imagedata fileref="images/actions/ActionsFlowSimple.png" scale="50"/> |
| </imageobject> |
| </mediaobject> |
| </para> |
| <para>As you have probably already guessed, the agents that have the Set Action applied to them could take one of two paths through the Action flow. Readers with experience with programming or formal logic will note that this looks just like a parse tree, and while that's basically what it is, there are important differences. For example, if we looked at the following structure as a definition of control flow for a single agent we'd take them to be equivalent. Both would evaluate the statement (Query 1 AND Query 2) OR Query 3 for each agent.</para> |
| <para> |
| <mediaobject> |
| <imageobject> |
| <imagedata fileref="images/actions/ActionsFlowUnion.png" scale="50"/> |
| </imageobject> |
| </mediaobject> |
| </para> |
| <para>Within Actions in many cases these two approaches will also act equivalently. If we are simply setting a value, it doesn't matter how an agent gets to that Set Action, as long as it gets there. All sources that flow into a given target Action act like a logical union since any of the paths might reach that target. But note that we have two flows moving in parallel in the flow on the right. What happens when the conditions for |
| <emphasis role="italic">both</emphasis> branches are true? As the set of agents flow through each branch the Set Action on the left will be evaluated once, while the one on the right will be evaluated twice. Again, this often ends up with the same behavior, but not always. If for example, the evaluate Action uses the value of the attribute that we are setting as input, we can get different results. Of course, you can write code in any language that accomplishes the same thing, but the code will look quite different. For example, if we wrote the same basic logic in Java, in the first case we'd have something like: |
| </para> |
| <literallayout format="linespecific" class="normal">if ((query1.evaluate() && query2.evaluate()) || query3.evaluate()) { |
| doSomething(); |
| } |
| </literallayout> |
| <para>In the second we'd have:</para> |
| <literallayout format="linespecific" class="normal">if (query1.evaluate() && query2.evaluate()) { |
| doSomething(); |
| } |
| if (query3.evaluate()) { |
| doSomething(); |
| } |
| </literallayout> |
| <para>This is a simple example, but with multiple branches such code design issues can quickly grow complex. The flow approach allows us to express things in a way that is often more natural and expressive. The important thing to keep in mind when desiging action flows is to see the flow as representing a selection of agents moving through streams independently. In the Actions example we expressed both approaches in nearly the same way, except in the case on the left we used a Union Action to bring the two branches of flow back together.</para> |
| </section> |
| <section id="Selections"> |
| <title>Selections</title> |
| <para>Selections are a key concept in Actions. Put simply, selections define what we are searching for and where. They are defined by a combination of Select, Query and Logic Actions. Each time we create a new Select Action, we define a new selection. Queries can be used to further refine selections either immediately after or later in the Action flow, as described in the next section. Logic Actions are used to combine and organize the Action flow defined by Query Actions. In order to understand how these three pieces work together, we need to understand the idea of selection boundaries.</para> |
| <informaltable frame="none"> |
| <tr> |
| <td rowspan="1" colspan="1">A selection boundary determines the set of selection actions that are used to determine what agents to apply target actions to. For example, in the following diagram, we can see the extent of the boundary for a straightforward selection.</td> |
| <td rowspan="1" colspan="1"> |
| <mediaobject> |
| <imageobject> |
| <imagedata fileref="images/actions/ActionsSelBoundarySimple.png" scale="50"/> |
| </imageobject> |
| </mediaobject> |
| </td> |
| </tr> |
| </informaltable> |
| <informaltable frame="none"> |
| <tr> |
| <td rowspan="1" colspan="1">Each time we create a new selection, we define a new set of boundaries. In the diagram to the right, Selection 1 and Selection 2 eaach start with a new Select Action. </td> |
| <td rowspan="1" colspan="1"> |
| <mediaobject> |
| <imageobject> |
| <imagedata fileref="images/actions/ActionsSelBoundary2Parts.png" scale="50"/> |
| </imageobject> |
| </mediaobject> |
| </td> |
| </tr> |
| </informaltable> |
| <para>But boundaries can be defined for a group of actions by a Query Actions as well. This is because Query Actions can be directly part of a selection definition, but they can also refine selections. We'll see how that works below. So where does one selection boundary end and the next one begin? The simple rule is that the end of the boundary is defined for a given Action by the place where:</para> |
| <orderedlist inheritnum="ignore" continuation="restarts"> |
| <listitem> |
| <para>A Query Action is not followed by a Logic Action, or</para> |
| </listitem> |
| <listitem> |
| <para>A Logic Action is not followed by another Logic Action</para> |
| </listitem> |
| </orderedlist> |
| <informaltable frame="none"> |
| <tr> |
| <td rowspan="1" colspan="1">In other words, as soon as a Logic Action occurs in a path leading to an Action, any following Query will define a new boundary, as shown in the example to the right. </td> |
| <td rowspan="1" colspan="1"> |
| <mediaobject> |
| <imageobject> |
| <imagedata fileref="images/actions/ActionsSelBoundary11A.png" scale="50"/> |
| </imageobject> |
| </mediaobject> |
| </td> |
| </tr> |
| </informaltable> |
| <para>Note that we refer to "Selection 1" and Selection 1A". This is because Selection 1A is a refinement of Selection 1 along its particular path of flow. When a query appears for the same selection but past a particular boundary, you can think of it as a sort of filter on the selection contents. We don't have a "Selection 2" here because any Actions that refer to "Selection 1" along the current path of flow will be acting on the selection defined by Selection 1 and Selection 1A.</para> |
| <para>These rules allow actions to be defined in the simplest possible way, but it is important to understand their implication as they result in behavior that can be different from what someone used to and imperative programming environment such as Java might expect. In a simple case the distinction might not matter. For example, if we are using a Query 1 to test whether an agent's attribute a == x and attribute b == y, we would get the same outcome if we placed intersected the queries as if we simply put them in sequence. Internally we would actually be searching for agents with a == x, and |
| <emphasis role="italic">then</emphasis> taking those agents and choosing those agents with b==y, but the outcome would be the same. But consider a more sophisticated case, where we are searching for neighboring available cells. |
| </para> |
| <para> |
| <mediaobject> |
| <imageobject> |
| <imagedata fileref="images/actions/ActionsSelBoundaryComplex.png" scale="50"/> |
| </imageobject> |
| </mediaobject> |
| </para> |
| <para>In the first case, we execute a search for all agents that meet the two criteria. This means that if there are |
| <emphasis role="italic">any</emphasis> neighboring cells which are available, we're guaranteed to find one (random) cell. In the second case, we first search for all cells that are neighbors. This will match any agents that include both available and non available agents. Now, at this point since our search returns one agent (in the current AMF design -- richer behavior will be supported in the future) the randomly selected agent could be either available or not. So in the second case, we might end up with no cell to move to, and thus make no move at all. This then becomes an important aspect of model design. For example, if one were defining a model where neighbors played a game with each other, one might want to instruct agents to play the game only with neighbors that have a certain wealth threshold. In the real-world situation that we are modeling, we might simply search for neighbors who are over a given wealth threshold and then play the game with them. This would imply that information about other agent's wealth is open knowledge. Or, we might simply select a random neighbor, and ask that neighbor to play a game with us. Upon discovering that our neighbor does not meet our wealth criteria, we would then choose not to play with them. Here we are modeling a cost in time to obtain information about another agent's wealth, because we might miss an opportunity to play the game with another agent on that round. |
| </para> |
| </section> |
| <section id="Weaving"> |
| <title>Weaving</title> |
| <informaltable frame="none"> |
| <tr> |
| <td rowspan="1" colspan="1">Now, let's put the concepts of Actions sequences and boundaries together to see how we can easily define complex interactions between multiple selections. When we define a Select, the state of its selection flows through and with any subsequent selections. So for example, if we have a Root Action rule, and then do a selection based on it, we'll have access to the agent from the original context as well as all of the subsequent selections. We can refer to any previous selection for any subsequent action. For example, instead of setting the value for the rule agent, we might instead set a value for an agent we've found in a target selection.</td> |
| <td rowspan="1" colspan="1"> |
| <mediaobject> |
| <imageobject> |
| <imagedata fileref="images/actions/ActionsWeavingSetAnother.png" scale="50"/> |
| </imageobject> |
| </mediaobject> |
| </td> |
| </tr> |
| </informaltable> |
| <informaltable frame="none"> |
| <tr> |
| <td rowspan="1" colspan="1">Inputs to functions also use selections. (We'll discuss more details in the functions section.) In the following example, we're adding the wealth of the Selection 1 agent to the wealth of the Selection 2 agent and using that value to set some other value. (Here, perhaps we are modeling an agent in a winner takes all game, in which case we'd also add a Set Action on Selection 2 and set the second agent's wealth to 0.)</td> |
| <td rowspan="1" colspan="1"> |
| <mediaobject> |
| <imageobject> |
| <imagedata fileref="images/actions/ActionsWeavingEvaluate.png" scale="50"/> |
| </imageobject> |
| </mediaobject> |
| </td> |
| </tr> |
| </informaltable> |
| <informaltable frame="none"> |
| <tr> |
| <td rowspan="1" colspan="1">But we can also use selections in defining Query Actions themselves. So in the following example, we select a neighbor agent and then compare the age of our Rule agent with the age of the Selection 2 agent. If and only if those ages are the same will we execute the target Set Action. This example also demonstrates why we refer to the data flow as weaving. Query Actions can be used to refine selections at any point in the data flow. Selections and their uses are interwoven throughout an action sequence.</td> |
| <td rowspan="1" colspan="1"> |
| <mediaobject> |
| <imageobject> |
| <imagedata fileref="images/actions/ActionsWeaving1A.png" scale="50"/> |
| </imageobject> |
| </mediaobject> |
| </td> |
| </tr> |
| </informaltable> |
| <informaltable frame="none"> |
| <tr> |
| <td rowspan="1" colspan="1">Finally, we can put all of these concepts together by weaving selections together with flows. As we discussed in the flow section, if we use multiple paths in the Query, the agents that flow through from any prior Query can follow multiple paths at once. And as we discussed in the selection section, the selection and its boundaries determine what agents we will be working with at any given evaluation point in the flow. Consider the example to the right. As we'll see in the detailed explanation of each Action below, Transformation Actions such as Move or Connect take multiple selections. The first selection defines the set of agents that will be performing the action. In the case of a Move agent, this refers to the mover. The second selection, which for Move we call "destination", refers to the selection that will be receiving the action. In the case of movement this is the agent or location that the Rule agent will be moving to. If we follow the flows through, we can note two important outcomes of our model design -- a Rule agent might move twice if it meets the criteria for both the blue path and the red path and that it might move to a different location each time.</td> |
| <td rowspan="1" colspan="1"> |
| <mediaobject> |
| <imageobject> |
| <imagedata fileref="images/actions/ActionsWeaving2.png" scale="50"/> |
| </imageobject> |
| </mediaobject> |
| </td> |
| </tr> |
| </informaltable> |
| </section> |
| </section> |
| <section id="Details_3"> |
| <title>Details</title> |
| <informaltable frame="none"> |
| <tr> |
| <td rowspan="1" colspan="1">In this section, we'll dig into the specific role of each of the Actions. From the design discussion we hopefully have some sense of how these all fit together in general. Again, the block diagram to the right provides an overview of how the various actions are related, but it is missing some of the more recent actions such as Diffusion, Perform, Derive and Cause. You might want to take a look at the meta-class diagrams in the reference section as well.</td> |
| <td rowspan="1" colspan="1"> |
| <mediaobject> |
| <imageobject> |
| <imagedata fileref="images/actions/ActionsBlocks.png" scale="50"/> |
| </imageobject> |
| </mediaobject> |
| </td> |
| </tr> |
| </informaltable> |
| <section id="Selections_2"> |
| <title>Selections</title> |
| <para>A selection defines a particular set of agents that we want to do something with. Selections are made up of the Select action itself, along with Query and Logic actions. When we refer to a selection in any target command, we are referring to the selection in the context of where we have defined the behavior.</para> |
| <section id="Select"> |
| <title>Select</title> |
| <para>As we discussed above, when we refer to a Select, we're actually referring to the selection as a whole leading up to the current action. The Select Action itself is used to define what we are searching for (Agent), where we are searching for it (Space), and from whose perspective we are doing it (Selection). Create Actions are a special kind of Select Action that are used to create agents. See the description in the Builders section below for more information.</para> |
| <section id="Selection"> |
| <title>Selection</title> |
| <para>The selection that we are searching "from". This seems to be the concept that new users have the most difficulty with, but it is key to understanding how Actions works. Just as with any other Action -- a Move command for example -- a selection needs to know what set of agents that it is working with. For example, if we want to define a selection B that finds the cells neighboring a rule B's agent, we would set selection B's selection to A.</para> |
| </section> |
| <section id="Agent"> |
| <title>Agent</title> |
| <para>Here we define what agent we will be looking for. In order for this to make sense, the agent has to be related in some meaningful way to the agent whose behavior we are defining. For example, it might be a partner agent or a location that we might want to move to. An agent must be specified unless we are searching within a continuous space, in which case this value should be empty, and the result of the selection will represent some location in that space. In the current version of the framework, we treat destination cell locations as agents, and require that location to be specified as a target agent, but in a future version we'll allow searches without defining an agent within grid spaces as well.</para> |
| </section> |
| <section id="Space"> |
| <title>Space</title> |
| <para>The space that we want to search within. Of course, this must be specified if we use any spatial query terms (see below), but if we simply want to search across all agents it should not be specified.</para> |
| <para>Represent Queries (Controls) on agents and Transformations, or Commands, on the result of those queries. Queries, Transformations and other in which each child target carries the execution and data context for it's particular path.</para> |
| </section> |
| <section id="For"> |
| <title>For</title> |
| <para>This value is obsolete and will be replaced with a different mechanism in the next version of the modeling environment.</para> |
| </section> |
| </section> |
| <section id="Query"> |
| <title>Query</title> |
| <para>A Query represents a concrete criteria for our search. The name is a bit confusing because of potential for confusion with a generic query. Queries -- along with their cousin Evaluators -- define a function that is evaluated and that can take Agent attributes and the results of other Actions as input. Queries are combined with each other and with the logic actions to determine the results of a selection for their direct target actions. </para> |
| <section id="Selection_2"> |
| <title>Selection</title> |
| <para>As with all other actions, evaluations specify a selection, and just as with the other actions, this determines the set of agents that the evaluation occurs for, but the input selections determine what agent is used for the calculation itself.</para> |
| </section> |
| <section id="Function"> |
| <title>Function</title> |
| <para>A query function is evaluated to determine the results of a particular selection. Functions can represent very simple search criteria such as "My Age == Your Age", but they can also represent complex and inter-related concepts such as spatial relationships. They must return logical values. See the functions section for more information on specific functions.</para> |
| </section> |
| <section id="Inputs"> |
| <title>Inputs</title> |
| <para>The set of values that will be used to determine the result, in the order specified by the function prototype. Inputs can specify any source evaluation and any agent state or agent parent context state. They can also be literal values -- see the section on literals below. The selection determines which agent's will be used to determine the value, and different inputs can specify different selections.</para> |
| </section> |
| </section> |
| <section id="Logic"> |
| <title>Logic</title> |
| <para>These Actions provide us with the ability to combine queries with one another, and follow the basic rules of set logic. But as we've seen above, it is important to understand that there are important differences between Logic Actions and typical programming logic. Most importantly, they apply not to individual agents per se, but to the set of agents that move through them. Also, there is not neccesarily short circuit execution (it's not needed) and much richer criteria can be joined together because of the action flow design.</para> |
| </section> |
| <section id="Intersection"> |
| <title>Intersection</title> |
| <para>An intersection contains only those agents that match all of its source actions. This is essentially equivalent to a logical AND statement and has similarities to an && operator in a java "if" statement. An agent must be able to flow through all incoming actions in order to flow out of an Intersection Action.</para> |
| </section> |
| <section id="Union"> |
| <title>Union</title> |
| <para>A union contains all agents that match any of its source actions. This shares similiarities to a logical OR statement and the || operator in a java "if" statement. It does mroe than that however, as it acts to join multiple flows of action. That is, as set logic implies, an agent will never appear in the result of a union more than once.</para> |
| </section> |
| <section id="Difference"> |
| <title>Difference</title> |
| <para>A difference contains all agents that do not match any of its source actions. This essentially equivalent to a logical NOT statement, and has similarities to the Java else statement. Like the Union Action, difference implies that a given agent will only appear once in any subsequent targets. No agents that reach a Difference Action will flow through to the next action(s), and all agents (that meet the definition of the Select Action) that cannot reach that action will.</para> |
| </section> |
| </section> |
| <section id="Root_Actions"> |
| <title>Root Actions</title> |
| <para>Root actions are a special case of a selection. These represent behaviors that are defined for all members of agents; these are the highest granularity of an agent's behavior, such as "Find Partners" or "Eat" or "Reproduce". When you want to create a new set of Actions, you have the following choices.</para> |
| <section id="Build"> |
| <title>Build</title> |
| <para>The Build Action is a specialized action that allow the construction of member agents and spaces within a parent context. A Build Action executes once for each context before any initialization actions occur for any children agents of that context. Currently it is undefined whether a context's own Initialize Action is executed before the Build Action occurs, so implementors should not rely on any initialized values being available at build time.</para> |
| </section> |
| <section id="Initialize"> |
| <title>Initialize</title> |
| <para>An Initialize action is executed once and only once for every agent when the model is first started -- at time 0. Initialize Actions are guaranteed to execute before any other non-builder action occurs.</para> |
| </section> |
| <section id="Rule"> |
| <title>Rule</title> |
| <para>A Rule executes once for every agent for every iteration of the model. An important note is that the actual sequence of rules is technically undefined. An implementor should not rely on the fact that a rule occurs before another rule in the list of agent actions though typically the order in which the rules were actually created is respected.</para> |
| </section> |
| <section id="Schedule"> |
| <title>Schedule</title> |
| <para>A schedule is executed on a recurring basis, according to the values detailed below. Note that schedules are often overused. In most agent-based models it makes sense to have any behaviors occur at the same granularity using a Rule. Please note that Schedules are not currently supported in the Escap target, but that support should be available soon. In the following descriptions we refer to period as the current iteration of the model, that is where time == t.</para> |
| <section id="Start"> |
| <title>Start</title> |
| <para>The period that the schedule will first be invoked. For example, if this value is 100, and interval is 1, the schedue will be executed at times 100,101,102..</para> |
| </section> |
| <section id="Interval"> |
| <title>Interval</title> |
| <para>How often the schedule is invoked. For example, if this value is 3 and start is 1, the schedule will be executed at times 1,4,7..</para> |
| </section> |
| <section id="Priority"> |
| <title>Priority</title> |
| <para>Where the rule will be placed in the execution queue for a given time period. For example, if Schedule A's priority is set to 3 and Schedule B's is set to 2, Schedule B will be executed for all agents before Schedule B is executed for any agents.</para> |
| </section> |
| <section id="Pick"> |
| <title>Pick</title> |
| <para>Controls how many agents to execute the schedule against. While this value will have an effect on the Repast target, it is not recommended to be used for general models and is likely to be replaced by another approach.</para> |
| </section> |
| </section> |
| <section id="Watch"> |
| <title>Watch</title> |
| <para>A Watch is executed any time the watched value is set for any agent. Note that the Action will be triggerred even if the state is simply set back to the value that it already has. It is important to be careful about creating Watches that might set the values of other Watch actions which might in turn trigger this watch. To clarify, if a modeler creates a Watch A for attribute a, and creates a target Set for it for attribute b, and Watch B is watching attribute b, then if Watch B has a target Set for attribute A, a circular execution could occur. This would cause the model to get stuck in its current iteration. To help model developers avoid this case, a warning will be provided if such a set of circular watch dependencies is created.</para> |
| <section id="Attribute"> |
| <title>Attribute</title> |
| <para>The attribute that will be monitored for change.</para> |
| </section> |
| </section> |
| <section id="Derive"> |
| <title>Derive</title> |
| <para>A Derive action is a unique kind of root that is used to determine that value of a derived attribute. There can be one and only one Derive action for each such attribute. One of the benefits of a derived action is that unlike a standard attribute, it only needs to be calculated when the value is actually needed and its inputs have also been changes -- allowing signifcant performance optimizations to be made. Derived actions can also make model behavior much more clear. Derive actions are especially useful for calculating dependent measures for model agents. These in turn can be used directly in charting and data output tools -- leaving no need to configure your chart view calculations seperatly. Developers need not worry about overhead and should feel free to create as many derived attributes as might be neccessary. The "gather data" value of the derived attribute can always be set to false to prevent data collection overhead when they aren't needed.</para> |
| <para>The derived value will always simply be the value of the last evaluation in a particular flow. You can mix queries and even selections on seperate agents into a derived value. The only restriction is that the type of the last Evaluate actions(s) must match the type of the value. If there is no path leading to an Evalutate action for a particular agent state, the attributes default value will be used.</para> |
| <section id="Attribute_2"> |
| <title>Attribute</title> |
| <para>The attribute that will be derived.</para> |
| </section> |
| </section> |
| <section id="Diffuse"> |
| <title>Diffuse</title> |
| <para>The diffuse action provides high level support for the common behavior of diffusing some value across some lattice space. For example, heat may spread over time from one grid cell to the next. (There are actually significant issues involved in implementing this through lower level actions.) To specify that a value should diffuse through a space you simply need to provide the following values. This action does not need and shouldn't include target actions. The "Heatbugs" model in the org.eclipse.amp.amf.examples.escape project provides a good example for how diffusion can be easily implemented into any grid model.</para> |
| <section id="Diffused"> |
| <title>Diffused</title> |
| <para>The attribute whose value is to be diffused.</para> |
| </section> |
| <section id="Diiffusion_Rate.3D"> |
| <title>Diiffusion Rate=</title> |
| <para>The rate at which any given cell's attribute value is transferred to surrounding cells.</para> |
| </section> |
| <section id="Evaporation_Rate"> |
| <title>Evaporation Rate</title> |
| <para>An optional rate by which each cells value is reduced for each period. This is useful for a model where agents are creating energy within the environment.</para> |
| </section> |
| </section> |
| <section id="Perform"> |
| <title>Perform</title> |
| <para>A Perform root action simply defines a set of actions that have no independent trigger. The only way Perform actions can occur is if a Cause action specifes one as a result. Performs then are similar to sub-calls or helper methods within a traditonal procedural or OO language, and can be very helpful in organizing and simlplifying code. Note that whenever you use a Perform instead of directly specifying a set of targets you lose the context of the selection. You couldn't use a Perform to directly trigger a move as the selection source for the move would not be available.</para> |
| </section> |
| </section> |
| <section id="Builders"> |
| <title>Builders</title> |
| <para>Builders are a special category of actions that are used to create spaces. They should not be confused with the Build Action itself which is a root selection that defines the time at which builder actions should occur. Generally speaking, specific Builder Actions for spaces and Create Actions for agents are targets of Build Actions.</para> |
| <section id="Create_Agents"> |
| <title>Create Agents</title> |
| <para>Agents are crete using the Create Agent action. The Create Agent Action is actually a special kind of Select Action that is used to actually create agents rather than simply search for them. Other than this capability, a Create Agent action can be used just like any other action except that Query and Logic actions aren't needed or genrally appropriate as this action defines a set number of agents to perform an action against. Create Agent actions have the special feature of being usable from the containing context, so that contexts can create initial agent populations before any agents exist within the context to perform actions against. But they can also be used directly within agent rules, for example to create a child agent as the result of a reproducation rule. Note that Initialize Actions are |
| <emphasis role="italic">not</emphasis> performed on agents that have been created within a model during regular (non-initialization time) execution. If the model creates actions during the regular model run, any state initialization should be handled by the targets of this action directly. (Naturally, if the enclosing context is used to create agents at the beginning of a model run, then the Initialize action is used as part of the normal model life-cycle.) |
| </para> |
| <section id="Agent_2"> |
| <title>Agent</title> |
| <para>The kind of agent to create.</para> |
| </section> |
| <section id="Selection_3"> |
| <title>Selection</title> |
| <para>The selection to use as the basic for this selection. This is generally not important except to define control flow.</para> |
| </section> |
| <section id="Space_2"> |
| <title>Space</title> |
| <para>Not generally relevant for agent actions, as agents are not placed into a space unless explicitly moved to that space. Potential associations between agents and spaces are defined by the space building actions.</para> |
| </section> |
| <section id="Agent_Count"> |
| <title>Agent Count</title> |
| <para>The number of agents to create. If used as part of an enclosing context's Initialize Action(s) an Attribute parameter will automatically be created. If not, then an evaluation or agent attribute should be used to define this number.</para> |
| </section> |
| <section id="For_2"> |
| <title>For</title> |
| <para>Deprected. Should not be used.</para> |
| </section> |
| </section> |
| <section id="Create_Shaped_Agent"> |
| <title>Create Shaped Agent</title> |
| <para>Creates an agent that has a particular shape extent within some continuous (i.e. vector as opposed to raster) space. This action performs just like a Create Action except for the following attribute:</para> |
| <section id="Shape"> |
| <title>Shape</title> |
| <para>Determines how each agent's spatial extent will be defined. The actual form of that shape is implementation specific. For example, in a GIS space (the immediate rationale for this Action) a polygon represents a region on a map and the extent of that shape might be determined by a .shape file. The available shape types are:</para> |
| <variablelist> |
| <varlistentry> |
| <term>Point</term> |
| <listitem> |
| <para>A simple point in space, fully equivalent to a standard continuous space location.</para> |
| </listitem> |
| </varlistentry> |
| <varlistentry> |
| <term>Line</term> |
| <listitem> |
| <para>A single line within a continuous space. Technically this represents a line segment as it is expected to have a beginning and ending point. In the future, this might refer more generically to planes in three dimensional space and hypersurfaces in n-dimensional spaces, but this is currently not supported by any AMF target implementations.</para> |
| </listitem> |
| </varlistentry> |
| <varlistentry> |
| <term>Polygon</term> |
| <listitem> |
| <para>A region within a space defined by an arbitrarily large set of line segments. Potentially this could be used to refer to polyhedrons in three-dimeensional space, or even more genrally as polytopes, but this is currently not supported by any AMF target implementations.</para> |
| </listitem> |
| </varlistentry> |
| </variablelist> |
| </section> |
| </section> |
| <section id="Load_Agents"> |
| <title>Load Agents</title> |
| <para>Imports and creates a set of agents from some input file. The actual form and manner of the import is implementation specific but should be inferrable from any source file based on the URL provided, assuming that the target platform or the AMF platform supports the appropriate imput type. For example, a Tab-CR delimited file might be used to populate a set of agents with various attributes. Additional meta-data could be provided by the URL, but we will likely add additional extensible meta-data to this action to better support the definition of expected input types and routines from within an AMF model itself. This action is equivalent to the Create Agents action except for:</para> |
| <section id="Source_URL"> |
| <title>Source URL</title> |
| <para>The location of the input file or set of meta-data used to determine the location and type of the input file.</para> |
| </section> |
| </section> |
| <section id="Load_Shaped_Agents"> |
| <title>Load Shaped Agents</title> |
| <para>Combines the properties of the Create Shaped Agent and Load Agent Actions. The source url should of course specify an input format that supports the shape type specified. See the descriptions of the related actions for more details.</para> |
| </section> |
| <section id="Build_Network"> |
| <title>Build Network</title> |
| <para>Creates a network, i.e. a graph structure, supporting the establishment of edges between arbitrary nodes.</para> |
| <section id="Agents_3"> |
| <title>Agents</title> |
| <para>Specifies the set of agents that can exist within this network. Agents must be included here in order for them to make connections within the network but agents included here are not required to have connections within the network, nor are such connections created for them. (See important note regarding network types below.)</para> |
| </section> |
| <section id="Attributes_3"> |
| <title>Attributes</title> |
| <para>Not currently used for networks.</para> |
| </section> |
| <section id="Network_Type"> |
| <title>Network Type</title> |
| <para>Deprecated. This feature is only currently supported for Repast targets and is likely to be removed from future versions of the AMF meta-model. Future AMF implementations are likely will provide a different mechanism for instantiating and importing network structures either within the network defintion or through other Action definitions. Instead of using this feature, modelers should create specific networks by building them up with Connect Actions for indivdual agents. For example to create a small world netowrk, a modeler might create random links between agents and then replace or augment those connections.</para> |
| </section> |
| <section id="Selection_4"> |
| <title>Selection</title> |
| <para>Not relevant for network builders except as part of normal control flow.</para> |
| </section> |
| </section> |
| <section id="Build_Grid"> |
| <title>Build Grid</title> |
| <para>Creates a grid space.</para> |
| <section id="Agents_4"> |
| <title>Agents</title> |
| <para>The set of agents that might exist as occupants of this grid; that is, members of individual cells within a given grid. Agents must be included here in order for instances to exist within the space, but agents included here do not actually have to exist within the space. (In the Repast implementation, all agents technically are memebers of the spatial projection, but are not required to have valid coordinates within that space.) For example, in an agriculture model these might represent agents moving about and harvesting plots of land.</para> |
| </section> |
| <section id="Fill_Agent"> |
| <title>Fill Agent</title> |
| <para>The agent that will be used to populate the grid itself. A gird is guranteed to contain one and only one fill agent within each grid locaiton. The grid will be populated with instances of the specified agent and these agents cannot move, leave or die within this space. This value need not be specified -- if left blank a default cell without any state will be used. For example, in an agriculture model, this agent might represent a single plot of land.</para> |
| </section> |
| <section id="Space_Type"> |
| <title>Space Type</title> |
| <para>Deprecated. Should not be used.</para> |
| </section> |
| <section id="Selection_5"> |
| <title>Selection</title> |
| <para>Not relevant for builders except as part of normal control flow.</para> |
| </section> |
| <section id="Attributes_4"> |
| <title>Attributes</title> |
| <para>Not currently used for spaces.</para> |
| </section> |
| </section> |
| <section id="Build_Space"> |
| <title>Build Space</title> |
| <para>Creates a continous space. The actual dimensionality and other qualities of the space are currently defined in the space itself though this might change in future versions. All other values are used in the same way as for the gird and other builder actions.</para> |
| <section id="Agents_5"> |
| <title>Agents</title> |
| <para>The set of agents that might be a part of this space. Agents must be included here in order for instances to exist within the space, but agents included here do not actually have to exist within the space. (In the Repast implementation, all agents technically are memebers of the spatial projection, but are not required to have valid coordinates within that space.)</para> |
| </section> |
| </section> |
| <section id="Build_Geography"> |
| <title>Build Geography</title> |
| <para>Constructs a geographical space. All details of this space are specfied by the implementation, i.e. a specific geographical imported space. Generally these would be defined by a Create Agents action; that is a set of imported agents representing US states would also represent the overall space of interest.</para> |
| </section> |
| </section> |
| <section id="Commands"> |
| <title>Commands</title> |
| <section id="Evaluate"> |
| <title>Evaluate</title> |
| <para>Evaluate Actions define some calculation on a function based on the model state and a set of input(s). The inputs that an Evaluate Action can take is determined by its functions and can be either agent attributes, prior evaluations or literals. The result is then determined based on those inputs. In some cases Evaluate functions can be used to determine some action indirectly, such as with a graphics fill, but they can never be used to directly change model state.</para> |
| <section id="Selection_6"> |
| <title>Selection</title> |
| <para>As with all other actions, evaluations specify a selection, and just as with the other actions, this determines the set of agents that the evaluation occurs for, but the input selections determine what agent is used for the calculation itself.</para> |
| </section> |
| <section id="Function_2"> |
| <title>Function</title> |
| <para>A with queries, a function is evaluated against its input set. Functions can represent simple operators as well as complex functions. See the functions section for more information on specific functions.</para> |
| </section> |
| <section id="Inputs_2"> |
| <title>Inputs</title> |
| <para>The set of values that will be used to determine the result, in the order of the function prototype. Inputs can specify any source evaluation and any agent state or agent parent context state. They can also be literal values -- see the discussion in the Tools section. The selection determines which agent's will be used to determine the value, and different inputs can specify different selections.</para> |
| </section> |
| </section> |
| <section id="Set"> |
| <title>Set</title> |
| <para>The Set Action assigns some value to another value.</para> |
| <section id="Selection_7"> |
| <title>Selection</title> |
| <para>Here the selection refers to the agent that we want to change. This does not have to be the immediatly preceeding selection but can be any accessible selection.</para> |
| </section> |
| <section id="Attribute_3"> |
| <title>Attribute</title> |
| <para>The attribute to modify. It must be a member of this action's agent or of that agent's parent context.</para> |
| </section> |
| <section id="Parameter"> |
| <title>Parameter</title> |
| <para>The value to assign to the attribute. Here, we can use either another agent attribute, or the results of a source evaluation. </para> |
| </section> |
| </section> |
| <section id="Cause"> |
| <title>Cause</title> |
| <para>A Cause Action "causes" some Root Action to occur upon the specified selection. This action can be extremely useful for organizing model behavior and preventing the need for creating duplicate action definitions.</para> |
| <para>Cause actions also support recursive functionality and "WHILE" behavior. These can be used to mimic loop strucutres. For example, you might want an agent to execute some behavior as long as that agent has energy remaining. To accomplish this, you could create a query for "energy > 0" and then create a Cause target with the root action as its results.</para> |
| <para>Note that you should be cautious and thoughtful when using the Cause action. Remember that selections represent sets of agents and thus get rid of the need for collection loop strucutures -- such as Java "for each" -- common in traditional programming languages. You should be able to do almost anything that might require a loop strucutre using the selection mechanism itself. Also, just as with a traditional language, you should be careful about defining cause actions that trigger their own root actions or that cause other actions to in turn trigger the orginal root action. You can easily end up defining infinite loops in this way. (In the current implementation this will eventually trigger a stack overflow error as cause invocations are recursive, but future implementations will be able to infer target language loop strcutures to prevent stack depth issues.)</para> |
| <section id="Result"> |
| <title>Result</title> |
| <para>The root aciton that should be trigerred for every memeber of the current selection. This is typically a Perform action but it can be any kind of root action except for "Derived". (Which doesn't make any sense to do.)</para> |
| </section> |
| </section> |
| <section id="Move"> |
| <title>Move</title> |
| <para>The Move Action causes an agent to change its location in some space or network. The agent will leave whatever location it was in before within the selection space, and move to its new destination.</para> |
| <section id="Selection_8"> |
| <title>Selection</title> |
| <para>As in any other action, the selection determines what agent is affected -- in this case the agent that is being moved.</para> |
| </section> |
| <section id="Destination"> |
| <title>Destination</title> |
| <para>Specifies the target agent or location for the movement.</para> |
| </section> |
| </section> |
| <section id="Leave"> |
| <title>Leave</title> |
| <para>Causes the agent to leave a particular space.</para> |
| <section id="Selection_9"> |
| <title>Selection</title> |
| <para>The selection determines what agent will be leaving and what space the agent will be leaving. If the agent doesn't exist in that space nothing will happen.</para> |
| </section> |
| <section id="Destination_2"> |
| <title>Destination</title> |
| <para>The destination is irrelevant for a leave action and should not be specified.</para> |
| </section> |
| </section> |
| <section id="Die"> |
| <title>Die</title> |
| <para>Causes the agent to cease to exist within the model as a whole.</para> |
| <section id="Selection_10"> |
| <title>Selection</title> |
| <para>The selection determines what space the agent to remove.</para> |
| </section> |
| <section id="Destination_3"> |
| <title>Destination</title> |
| <para>The destination is irrelevant in this case and will probably be removed.</para> |
| </section> |
| </section> |
| <section id="Connect"> |
| <title>Connect</title> |
| <para>Connects two agents within a network space. This Action is not applicable for any other kinds of spaces. Note that unlike with other transformational commands, we do not use the destination space to determine the space that will be impacted by the Action. This provides a more efficient representation without any loss in generality, because it allows us to search for a source and target agent within other spaces and then create a connection without creating a separate selection. As the important structural feature of networks are the relationships themselves, not the nodes this provides a more direct way to specify these relationships.</para> |
| <section id="Selection_11"> |
| <title>Selection</title> |
| <para>The selection determines the agent that will be connected to another agent. In the case of a directed graph, this is the source node.</para> |
| </section> |
| <section id=".3DDestination"> |
| <title>=Destination</title> |
| <para>The destination determines the agent that the selection agent will be connected to. In the case of a directed graph, this is the target node.</para> |
| </section> |
| <section id="Within"> |
| <title>Within</title> |
| <para>Specifies the network that the connection will be created within.</para> |
| </section> |
| </section> |
| <section id="Directed_2"> |
| <title>Directed</title> |
| <para>Determines whether the connection made is directed or not. If true, selections from source agents will include the target, but target agent selections will not include the source agents (unless they are connected through some other path).</para> |
| </section> |
| <section id="Disconnect"> |
| <title>Disconnect</title> |
| <para>Removes the connection between agents within a network space. See the description of the Connect Action for important details.</para> |
| <section id="Selection_12"> |
| <title>Selection</title> |
| <para>The selection determines one side of the agent relationship that will be disconnected.</para> |
| </section> |
| <section id="Destination_4"> |
| <title>Destination</title> |
| <para>The selection determines one other side of the agent relationship that will be disconnected.</para> |
| </section> |
| <section id="Within_2"> |
| <title>Within</title> |
| <para>Specifies the network that the connection will be created within.</para> |
| </section> |
| </section> |
| <section id="Replace"> |
| <title>Replace</title> |
| <para>Functions in the same way as a Connect Action excepth that all other connections to other agents will first be removed.</para> |
| <section id="Selection_13"> |
| <title>Selection</title> |
| <para>The selection determines the agent that will be connected to another agent. In the case of a directed graph, this is the source node.</para> |
| </section> |
| <section id="Destination_5"> |
| <title>Destination</title> |
| <para>The destination determines the agent that the selection agent will be connected to. In the case of a directed graph, this is the target node.</para> |
| </section> |
| <section id="Within_3"> |
| <title>Within</title> |
| <para>Specifies the network that the connection will be created within.</para> |
| </section> |
| </section> |
| <section id="Directed_3"> |
| <title>Directed</title> |
| <para>Determines whether the connection made is directed or not. See the Connect description for more details.</para> |
| </section> |
| </section> |
| <section id="Other"> |
| <title>Other</title> |
| <section id="Method"> |
| <title>Method</title> |
| <para>The Method action supports inclusion of arbitrary code within a generated method. Generally, this will be Java code as all of the current target platforms are Java-based but there is no technical requirement that it must be. For example, if a target has been developed to produce code for Swarm running on an iPad (and no, there are no current plans to support such a thing, though it would certainly be cool!) then the modeler could define Objective C code for the method.</para> |
| <para>Please note that the Method Action should be avoided whenever possible. You should consider using it only in the case where there doesn't appear to be a way to construct equivalent functionality using the native Actions framework, such as when interfacing with third party APIs. The aim of Actions is to provide the most general support for Agent Modeling possible without compromising the core design. Any use of native Java code strongly limits the set of platforms that your model will be able to generate code for and prevents you from using the AMF edit tools to explore the model behavior. In the case where you wish to construct a model feature and believe that it isn't possible or practical to do it with Actions, please contact us (see support section) so that we can suggest how you can accomplish what you want within Actions. If that is not possible, we'll consider developing new features that will support what you want to do.</para> |
| <para>On the other hand, you may simply wish to use the Agent Modeling Framework to build a scaffolding for your model -- perhaps using your own custom Java framework for example -- and Method would be a good way to accomplish that. Also, note there are a number of other approaches to mixing hand-crafted Java together with AMF generated code. Please see the Programmer's Guide section "Integrating Java and AMF Models" for more on that.</para> |
| <para>If you do decide to use the Method Action, keep in mind the following design practice recommendations:</para> |
| <orderedlist inheritnum="ignore" continuation="restarts"> |
| <listitem> |
| <para>Keep your usage of external API references to a minimum. If you can use only code provied by the core Java classes as well as the Apache Collections library, your code should work on every current Java target. On the other hand, if you make use of a specific ABM platform APIs your code will obviously only compile and run against that target.</para> |
| </listitem> |
| <listitem> |
| <para>Code should be in the form of a method body, excluding the signature. A single Java method is created using this code body. There is no support for input parameters -- if you need access to evaluated values from source actions, create agent attributes for them, set their values for the selected agents, and use them as sources for your Method Action.</para> |
| </listitem> |
| <listitem> |
| <para>All Java class references should be fully qualified. For example, if you wish to use the eclipse Draw2D Graphics class, you should refer to "org.eclipse.draw2d.Graphics", not simply "Graphics". If classes are not fully qualified, you will recieve compile errors. You can usually easily fix these by selecting your source code directory and choosing |
| <emphasis role="bold">Source > Organize Imports..</emphasis> but it prevents automatic code generation. |
| </para> |
| </listitem> |
| <listitem> |
| <para>The method interface has no support for code completion, syntax checking or other common Java development environment features. You can avoid code maintenance and even support targetting multiple APIs by using the following technique. From your method body, call a helper method in a seperate class. The referred class could use a static method call, or you could instantiate the class and call a method against it, passing in the agent class so that the helper class can reference the agent's state. For example, if you wanted to use some custom java code to import agents from a specialized input file, you could put the following code in the Method Action body for the root Context:</para> |
| </listitem> |
| </orderedlist> |
| <literallayout format="linespecific" class="normal">(new org.me.SpecialFileLoader()).load(this); |
| </literallayout> |
| <para>Then create a new source directory in your project called "src" ( |
| <emphasis role="bold">New > Source Folder...</emphasis>) and create the class for the specialized file loader including the following method: |
| </para> |
| <literallayout format="linespecific" class="normal">public void load(MyRootModel model) {...} |
| </literallayout> |
| <para>This approach allows you to a) maintain the working code using the Java Development Environment, b) avoid changes to the Method Action within the model, and most importantly, c) allow other implementations of the code using multiple APIs. For example, if you need to create a specialized graphics routine, you could create seperate implementations for your Escape (Eclipse Draw 2D), Ascape (Java Swing), and Repast (Simphony API) and place them in the appropriate projects. As long as the different Java source files have the same names and signatures, they will all compile correctly and execute the appropriate behavior.</para> |
| <section id="Selection_14"> |
| <title>Selection</title> |
| <para>The selection determines what Agent class the code will be created within and the set of agents the method will be called upon.</para> |
| </section> |
| <section id="Body"> |
| <title>Body</title> |
| <para>The actual code to insert in the method body. See the detailed recommendations for code use above.</para> |
| </section> |
| <section id="Generate"> |
| <title>Generate</title> |
| <para>Determines wether the code is actually inserted. If this is false, a bare method body will be constructed instead. This can be useful if you wish to turn off method generation in certain model implementaitons without removing the actual code.</para> |
| </section> |
| </section> |
| </section> |
| <section id="Query_and_Evaluation_Inputs"> |
| <title>Query and Evaluation Inputs</title> |
| <para>Query and Evaluation Actions are both "Sinks" which means that they are capable of containing inputs. When you select a function, the appropriate number of inputs will be created. After selecting a function, you can view and select the inputs. The choices for the inputs will be constrained by the type of the function and the other operands you've selected.</para> |
| <section id="Input_Literals"> |
| <section> |
| <title>Input Literals</title> |
| <para>Inputs can take literal values; that is values that you specify simply by entering them directly into the query. In general it is useful to think of literals as similar to local variables in a conventional programming language, whereas attributes are analogous to member variables. (And this is how they are represented in the generated Java code.) As with local variables in model code, literals are not recommended for any values that can change model behavior. The value cannot be easily accessed or changed by other model users. For greater transparency, you should instead create an Attribute with an appropriate default value, setting the "immutable" value to true. Still, literals can be useful for values that are special cases related to the evaluation or query, such as an input code, and for quickly prototyping functionality.</para> |
| </section> |
| </section> |
| </section> |
| </section> |
| <section id="Reference_2"> |
| <title>Reference</title> |
| <section id="Diagrams_2"> |
| <title>Diagrams</title> |
| <para>The following diagram may be helpful to readers familiar with UML and Meta-modeling:</para> |
| <section id="Meta-Classes_2"> |
| <title>Meta-Classes</title> |
| <para> |
| <mediaobject> |
| <imageobject> |
| <imagedata fileref="images/actions/ActionsDiagram.png" scale="50"/> |
| </imageobject> |
| </mediaobject> |
| </para> |
| </section> |
| <section id="Details_4"> |
| <title>Details</title> |
| <para>In the diagram above, all meta-objects except for Input, Literal, and the enumerators (lists of options) are Actions. Blue meta-classes are concrete (you can create and use them directly). Red meta-classes are key collaborations.</para> |
| <orderedlist inheritnum="ignore" continuation="restarts"> |
| <listitem> |
| <para>An Act is anything that might happen during the execution of an Agent-Based Model.</para> |
| </listitem> |
| <listitem> |
| <para>All Actions have as their root-most source action a Root. These are added first to any agent behavior and act as triggers for all target behavior. For example, a Watch will execute any time the watched attribute is modified. (As the diagrams do not refer to elements outside of the current package, we cannot see here that Accessor includes a reference to some Attribute, but it does. To see these kinds of relationships you will want to refer to the metaabm.ecore file itself.)#Actions are targets and sources of one another, but an Act can never have itself as a source. (That is, Actions are acyclic, but branches can re-converge. When we refer to an Act source or target, we typically mean to include all ancestors or descendants, not just the immediately connected Act.)</para> |
| </listitem> |
| <listitem> |
| <para>All Actions (except for root Actions) reference a Select, referred to as the "selected" relation. An ASelect represents the model aspects that the Act is working within; that is, the spatial, temporal and type (agent) "world" that is currently being selected.</para> |
| </listitem> |
| <listitem> |
| <para>Commands trigger some model state change (Set) or spatial transformation (Transform).</para> |
| </listitem> |
| <listitem> |
| <para>Controls determine whether target Actions are executed and against what agents. They are in some sense query terms and include Query actions and Logic Actions.</para> |
| </listitem> |
| <listitem> |
| <para>Transforms also specify a "destination" Select. This represents aspects that the selected agent(s) will transform to. For example, a Move may use a Rule to select all SugarAgents (type) in the SugarGrid (space) every period (time) and move them to a destination of a neighboring SugarCell (type) in the SugarGrid (space, with time implicit).</para> |
| </listitem> |
| <listitem> |
| <para>Sinks are Actions which use some Function (see next section) to interpret state in the form of Inputs. Inputs can come from selected agent attributes, other Actions, or literal values.</para> |
| </listitem> |
| </orderedlist> |
| </section> |
| </section> |
| </section> |
| <section id="Example"> |
| <title>Example</title> |
| <para>In this section, we'll look at an example that should make clear how the basic Actions approach works in a model. Say we want to define a behavior like:</para> |
| <literallayout format="linespecific" class="normal">"Search for a random agent within my vision that is the same age as I am. Find a location next to that agent that is not already occupied and move to it." |
| </literallayout> |
| <para>Here, we create a sequence of actions like so:</para> |
| <orderedlist inheritnum="ignore" continuation="restarts"> |
| <listitem> |
| <para>Select every agent for every period of the model. ("Find Partner" Rule)</para> |
| </listitem> |
| <listitem> |
| <para>For every member of that selection, search for other agents of the same age within vision distance. ("Partner" selection.)</para> |
| </listitem> |
| <listitem> |
| <para>From "Partners" find a random member and search for a neighboring locations. ("Partner Neighbor" selection.)</para> |
| </listitem> |
| <listitem> |
| <para>Finally, move the agent in "Find Partner" to the "Partner Neighbor" location.</para> |
| </listitem> |
| </orderedlist> |
| <para>Now, notice that although it's convenient to speak as if there is only one "Find Partner" and one "Partner Neighbor" in step 4 above, in fact selections are flowing through for each of the results of each of the previous action sequences, and we can refer to each of the directly. We could represent these behaviors in many different ways. For example, we might want to specify the model in a (hand-drawn) graphical language or in a (made-up) textual language:</para> |
| <para> |
| <mediaobject> |
| <imageobject> |
| <imagedata fileref="images/actions/ActionsExample.png" scale="50"/> |
| </imageobject> |
| </mediaobject> |
| </para> |
| <para>This is how it looks in an actual model:</para> |
| <para> |
| <mediaobject> |
| <imageobject> |
| <imagedata fileref="images/actions/ActionsExampleNew.png" scale="50"/> |
| </imageobject> |
| </mediaobject> |
| </para> |
| <para>And here is how this works in detail:</para> |
| <orderedlist inheritnum="ignore" continuation="restarts"> |
| <listitem> |
| <para>Create a Rule that will trigger the behavior. In this case, we want this rule to apply to all "Individual" agents within the model. (Space isn't relevant in this case.</para> |
| </listitem> |
| <listitem> |
| <para>Create a child Select Action that will find our partner. Two important things to note here:</para> |
| <orderedlist inheritnum="ignore" continuation="restarts"> |
| <listitem> |
| <para>The selection occurs based on the "Find Partner" selection. This means that for each Individual in the model, we'll be searching from the point of view of that agent to some other selection of agents.</para> |
| </listitem> |
| <listitem> |
| <para>We also need to define what type of agent we want and in this case the space does matter. We want to find an agent that is nearby within the City space. If instead we wanted to find a partner in a social network, we'd specify that instead.</para> |
| </listitem> |
| </orderedlist> |
| </listitem> |
| <listitem> |
| <para>Create two child Query Actions:</para> |
| <orderedlist inheritnum="ignore" continuation="restarts"> |
| <listitem> |
| <para>We want to search for someone who is the same age as us. This highlights the importance of the idea of the Selection in the Actions design. We're qualifying Age by the rule agent's partner for the first input and by the rule agent for the second. The selection carries throughout the flow of execution and this context is an explicit part of the entire structure. Note that this is very different from the way control flow works in a traditional imperative language such as Java.</para> |
| </listitem> |
| <listitem> |
| <para>We also want to search using a function for nearness, "within", which takes a parameter of vision. Note that the spatial functions are all polymorphic -- if we decided later on that we would rather search within say "Kevin Bacon space", that is a graph structure representation of space, we would only need to change the space we've defined in Select Partner.</para> |
| </listitem> |
| </orderedlist> |
| </listitem> |
| <listitem> |
| <para>Intersect the results of these two query components. This delineates the end of the selection definition for any target Actions.</para> |
| </listitem> |
| <listitem> |
| <para>Select a neighbor. Again, we can see the importance of Selections. Here, we are selecting from the point of view of the partner, not the initial agent that the current Rule is being executed for. Note that this time our target agent is a "Block", that is, a location within the city.</para> |
| </listitem> |
| <listitem> |
| <para>As above, define some queries. This time we want only those agents that are:</para> |
| <orderedlist inheritnum="ignore" continuation="restarts"> |
| <listitem> |
| <para>available, and</para> |
| </listitem> |
| <listitem> |
| <para>neighbors of our partner.</para> |
| </listitem> |
| </orderedlist> |
| </listitem> |
| <listitem> |
| <para>And another intersection..</para> |
| </listitem> |
| <listitem> |
| <para>Finally, we move to the location we've found. All that's required at this point is to specify:</para> |
| <orderedlist inheritnum="ignore" continuation="restarts"> |
| <listitem> |
| <para>The movement selection, or those agents that are moving, which in this case is the original agent we're executing the rule for, and</para> |
| </listitem> |
| <listitem> |
| <para>The destination, which is the cell that we've found. Note that the framework infers from the space definition that the Block agent is capable of hosting the Individual.</para> |
| </listitem> |
| </orderedlist> |
| </listitem> |
| </orderedlist> |
| </section> |
| </section> |
| <section id="Functions"> |
| <title>Functions</title> |
| <section id="Overview_4"> |
| <title>Overview</title> |
| <para>Functions are relatively simple in terms of model design, but we need to understand how particular functions work in order to develop models. Functions are divided in two ways. By type:</para> |
| <orderedlist inheritnum="ignore" continuation="restarts"> |
| <listitem> |
| <para>Operators are simple calculations sharing the same type.</para> |
| </listitem> |
| <listitem> |
| <para>Functions that can represent any general function that takes some well-defined input(s) and returns some well-defined output(s).</para> |
| </listitem> |
| </orderedlist> |
| <para>And by usage:</para> |
| <orderedlist inheritnum="ignore" continuation="restarts"> |
| <listitem> |
| <para>Generics can return any value and are used in Evaluate actions.</para> |
| </listitem> |
| <listitem> |
| <para>Logicals return some boolean result and are used by Query actions to decide whether target Actions apply to a particular selection, and by Evaluate actions just as with any other functions. Input types should be defined as generally as possible.</para> |
| </listitem> |
| </orderedlist> |
| <para>These overlap, so we have operators, logical operators, functions and logical functions. Functions are also divided into categories. We'll go through each of these in depth below.</para> |
| <para>The most important thing to point out about functions is that - as we've seen with other Acore concepts -- they provide richer sets of functionality than traditional approaches. Many functions are designed to collaborate with one another as we'll see when looking at Spatial and Graphical functions. Functions can also trigger the creation of related model artifacts as we'll see with the Distribution functions.</para> |
| <para>A technical note: conceptually, functions can return multi-values, but that is not currently implemented in the reference targets because of limitations of the target language Java.</para> |
| </section> |
| <section id="Details_5"> |
| <title>Details</title> |
| <section id="General_Functions"> |
| <title>General Functions</title> |
| <para>Naturally, the Modeling tools provide general functions for performing calculations, comparisons and more complex mathematical expressions. The function library can be easily extended, and we'll be adding additional capabilities over time. As always, we welcome feedback and we'd like to hear what functions you need that aren't covered here.</para> |
| </section> |
| <section id="Logical_Operators"> |
| <title>Logical Operators</title> |
| <para>Logical operators allow comparison between values. They are typically used in Query terms but may be used in Evaluate actions as well.</para> |
| <section id="Not"> |
| <title>Not</title> |
| <para>The result of the expression !X.</para> |
| </section> |
| <section id="Equal"> |
| <title>Equal</title> |
| <para>The result of the expression X==Y.</para> |
| </section> |
| <section id="Identical"> |
| <title>Identical</title> |
| <para>The result of the expression X==Y.</para> |
| </section> |
| <section id="Greater"> |
| <title>Greater</title> |
| <para>The result of the expression X>Y.</para> |
| </section> |
| <section id="Lesser"> |
| <title>Lesser</title> |
| <para>The result of the expression X<Y.</para> |
| </section> |
| <section id="Greater_or_Equal"> |
| <title>Greater or Equal</title> |
| <para>The result of the expression X>=Y.</para> |
| </section> |
| <section id="Lesser_or_Equal"> |
| <title>Lesser or Equal</title> |
| <para>The result of the expression X<=Y.</para> |
| </section> |
| <section id="True"> |
| <title>True</title> |
| <para>The result of the expression true.</para> |
| </section> |
| <section id="False"> |
| <title>False</title> |
| <para>The result of the expression false.</para> |
| </section> |
| <section id="Identity"> |
| <title>Identity</title> |
| <para>The result of the expression X.</para> |
| </section> |
| <section id="Different"> |
| <title>Different</title> |
| <para>The result of the expression X!=Y.</para> |
| </section> |
| </section> |
| <section id="Numeric_Operators"> |
| <title>Numeric Operators</title> |
| <para>Numeric operators support all of the basic operators used in evaluations.</para> |
| <section id="Negative_Value"> |
| <title>Negative Value</title> |
| <para>The result of the expression -X.</para> |
| </section> |
| <section id="Add"> |
| <title>Add</title> |
| <para>The result of the expression X+Y.</para> |
| </section> |
| <section id="Subtract"> |
| <title>Subtract</title> |
| <para>The result of the expression X-Y.</para> |
| </section> |
| <section id="Multiply"> |
| <title>Multiply</title> |
| <para>The result of the expression X*Y.</para> |
| </section> |
| <section id="Divide"> |
| <title>Divide</title> |
| <para>The result of the expression X/Y.</para> |
| </section> |
| <section id="Power"> |
| <title>Power</title> |
| <para>The result of the expression X^Y.</para> |
| </section> |
| <section id="Modulo"> |
| <title>Modulo</title> |
| <para>The result of the expression X%Y.</para> |
| </section> |
| <section id="Increment"> |
| <title>Increment</title> |
| <para>The result of the expression ++X.</para> |
| </section> |
| <section id="Decrement"> |
| <title>Decrement</title> |
| <para>The result of the expression --X.</para> |
| </section> |
| <section id="Unit_Value"> |
| <title>Unit Value</title> |
| <para>The result of the expression 1.</para> |
| </section> |
| <section id="Zero_Value"> |
| <title>Zero Value</title> |
| <para>The result of the expression 0.</para> |
| </section> |
| <section id="Original_Value"> |
| <title>Original Value</title> |
| <para>The result of the expression o.</para> |
| </section> |
| </section> |
| <section id="Spatial"> |
| <title>Spatial</title> |
| <para>Spatial functions provide the core functionality for Agent Models. Spatial functions are polymorphic, which basically means that they don't care what space they are operating on as long as that space is suitable for them. Spatial functions are designed to collaborate with one another. For example, by intersecting the "Neighbor", "Available" and "Toward" functions, we can design a rule that causes the agent to move to the next neighboring cell that get's it closer to some target agent. See the function details for more information.</para> |
| <section id="Nearest"> |
| <title>Nearest</title> |
| <para>Represents the nearest agents (including gird cells) or locations to this agent. If more than one agent or location is the same distance away they will all be considered. Note that while this function is defined for the selection of an agent, the result of this function is defined by the context within which it is used. If the selection specifies another agent within a space, this function will represent the nearest agent in that space. If the selection specifies a Cell within a grid space, this function will represent that cell.</para> |
| </section> |
| <section id="Toward"> |
| <title>Toward</title> |
| <para>Represents a location that is on the shortest path to a particular agent or location from the source agent (that is, the selection's selection's agent). This function collaborates with the within and neighbor functions to allow the agent to move in a particular direction towards some objective.</para> |
| </section> |
| <section id="Within_4"> |
| <title>Within</title> |
| <para>Represents a limit to the distance of a spatial search. When used in combination with other spatial functions such as "nearest" requires that all agents or locations must be within the distance specified by the input value.</para> |
| <literallayout format="linespecific" class="normal">Inputs: |
| [Numeral] |
| </literallayout> |
| </section> |
| <section id="Neighbor"> |
| <title>Neighbor</title> |
| <para>Represents any agents that are nearest neighbors to the agent, that is nominally of distance 1. This function is only relevant in discrete spaces -- grids and networks -- where there are immediate neighboring cells as defined by the geometry of the selection's space.</para> |
| </section> |
| <section id="Include_Self"> |
| <title>Include Self</title> |
| <para>Specifies whether the agent that we are searching from -- that is, the agent of the selection for this Query Action's selection -- is included in the results of the search.</para> |
| </section> |
| <section id="Within_2D_Boundary"> |
| <title>Within 2D Boundary</title> |
| <para>Represents agents or locations that exist within the boundary specified by the inputs.</para> |
| <literallayout format="linespecific" class="normal">Inputs: |
| [Numeral] |
| </literallayout> |
| </section> |
| <section id="Here"> |
| <title>Here</title> |
| <para>Represents the location of the searching agent. For example, if a selection is defined for an agent cell, and that selection's selection's agent is an occupant of a cell, the cell that the agent is occupying will be used. </para> |
| </section> |
| <section id="Available"> |
| <title>Available</title> |
| <para>Represents cells which are not currently occupied. This function is only relevant for grids which are not multi-occupant.</para> |
| </section> |
| <section id="Distance"> |
| <title>Distance</title> |
| <para>The distance between the source agent and an agent represented by this selection. If more than one agent is represented by the other functions in the selection, this function will the distance to an arbitrary (randomly selected) agent as defined by those other functions.</para> |
| <literallayout format="linespecific" class="normal">Outputs: |
| [Real] |
| </literallayout> |
| </section> |
| <section id="Away"> |
| <title>Away</title> |
| <para>Represents a location that is on the path that will take the source agent (that is, the selection's selection's agent) the farthest distance from the agent(s) represented by the search. This function collaborates with the within and neighbor functions to allow the agent to move in a particular direction away from some location or agent.</para> |
| </section> |
| <section id="Minimize"> |
| <title>Minimize</title> |
| <para>Finds the agent with the lowest value for the specified input. For example, if we created a Select for HeatCell, created a Minimize Query Term with Heat as the input Query Term, created Neighbor and Available Query Terms and set an Intersect as the target for all of those Queries, the result would be the the neighboring available cell with the lowest heat level.</para> |
| <literallayout format="linespecific" class="normal">Inputs: |
| [Real] The value we will minimize for. |
| </literallayout> |
| </section> |
| <section id="Maximize"> |
| <title>Maximize</title> |
| <para>Finds the agent with the highest value for the specified input. For example, if we created a Select for HeatCell, created a Maximize Query Term with Heat as the input Query Term, created Neighbor and Available Query Terms and set an Intersect as the target for all of those Queries, the result would be the the neighboring available cell with the highest heat level.</para> |
| <literallayout format="linespecific" class="normal">Inputs: |
| [Real] The value we will maximize for. |
| </literallayout> |
| </section> |
| <section id="Location_2D"> |
| <title>Location 2D</title> |
| <para>Represents the location of the current agent for use in subsequent selections.</para> |
| <literallayout format="linespecific" class="normal">Inputs: |
| [Real] |
| [Real] |
| </literallayout> |
| </section> |
| <section id="Boundary_2D"> |
| <title>Boundary 2D</title> |
| <para>Represents a two-dimensional boundary within a space. (Not currently relevant for any general usages.)</para> |
| <literallayout format="linespecific" class="normal">Outputs: |
| [Real] |
| [Real] |
| </literallayout> |
| </section> |
| <section id="All"> |
| <title>All</title> |
| <para>Causes all agents that meet the other query terms to be included in a selection. Without this query term, a single random agent is picked out of all agents matching the query terms.</para> |
| </section> |
| </section> |
| <section id="Random"> |
| <title>Random</title> |
| <para>Random functions are especially significant for agent models. Of particular interest are the weighted membership and random state and boolean value functions. You should be familiar with these functions so that you don't have to create more complex Action flows to accomplish the same thing.</para> |
| <para>Note that we only have support for uniform distributions as of this release. We're working on a collaborative design for evaluations that allow easy mixing and matching of random functions and distributions.</para> |
| <section id="Random_In_Range"> |
| <title>Random In Range</title> |
| <para>A pseudo-random value within that numeric range specified as drawn from a uniform distribution. The minimum values are inclusive. The maximum values are inclusive for integer inputs and exclusive for Real inputs.</para> |
| <literallayout format="linespecific" class="normal">Inputs: |
| [Numeral] The minimum value (inclusive). |
| [Numeral] The maximum value (inclusive). |
| Outputs: |
| [Numeral] The random number. |
| </literallayout> |
| </section> |
| <section id="Random_To_Limit"> |
| <title>Random To Limit</title> |
| <para>A pseudo-random value between zero and the value specified by the (non-zero) input and drawn from a uniform range. That value is inclusive for Integers and exclusive for Reals. (Note that as with the random in range function in the context of real numbers the distinction between an exclusive and inclusive limit is essentially meaningless.)</para> |
| <literallayout format="linespecific" class="normal">Inputs: |
| [Numeral] The maximum value (inclusive). |
| Outputs: |
| [Numeral] The result. |
| </literallayout> |
| </section> |
| <section id="Random_Unit"> |
| <title>Random Unit</title> |
| <para>A pseudo-random Real value between 0 and 1 drawn from a uniform distribution. (The distinction between inclusive and exclusive range is essentially meaningless in this context and we can assume that the result will never be greater or equal to 1.)</para> |
| <literallayout format="linespecific" class="normal">Outputs: |
| [Real] |
| </literallayout> |
| </section> |
| <section id="Random_Boolean"> |
| <title>Random Boolean</title> |
| <para>A value that is randomly true or false, i.e. a fair coin toss.</para> |
| </section> |
| <section id="Random_Weighted"> |
| <title>Random Weighted</title> |
| <para>An indexed value weighted against a probability distribution. The total probability must sum to 1.0. For example, an input of {.1,.2,.7} under a uniform distribution would would have 10% probability of producing "0" , 20% for "1" and 70% for "2". This function can then be used with Item to return a biased result from another list.</para> |
| <literallayout format="linespecific" class="normal">Inputs: |
| [Real] A list of values that will determine the resulting weighted index. |
| Outputs: |
| [Integer] A resulting indexed value bounded by 0 and the length of the input list - 1. |
| </literallayout> |
| </section> |
| <section id="Random_Member"> |
| <title>Random Member</title> |
| <para>Represents a random value drawn from the set of Real values specified.</para> |
| <literallayout format="linespecific" class="normal">Inputs: |
| [Real] Returns a random member of the supplied list of numbers. |
| Outputs: |
| [Generic] The value of the item at a random index. |
| </literallayout> |
| </section> |
| <section id="Random_State"> |
| <title>Random State</title> |
| <para>A random specified value (option) from the specified state.</para> |
| <literallayout format="linespecific" class="normal">Inputs: |
| [Generic] The state to select items from. All items are included. |
| Outputs: |
| [Integer] The resulting option. |
| </literallayout> |
| </section> |
| </section> |
| <section id="Graphic"> |
| <title>Graphic</title> |
| <para>Graphic functions are combined within Style Evaluate Actions to determine how to draw an agent within a visualization. One nice aspect of this approach is that the same style definition can be used in multiple places without changing any code. For example, the same style could be used to draw an agent on a two-dimensional grid within Escape, a three-dimensional shape within Escape, a Java Swing based visualization in Ascape, and an XML configured visualizaiton in Repast Simphony.</para> |
| <para>To define a graphic style for an agent, design a flow in which you create Evaluate Actions for color and shape, and then create an Evaluate Action with the graphic fill or outline function as a target of these.</para> |
| <section id="Shape_Oval"> |
| <title>Shape Oval</title> |
| <para>Draw a generic oval.</para> |
| </section> |
| <section id="Shape_Rectangle"> |
| <title>Shape Rectangle</title> |
| <para>Draws a rectangular shape.</para> |
| </section> |
| <section id="Shape_Inset"> |
| <title>Shape Inset</title> |
| <para>Shrinks the current shape by the input amount. (The overall scale is currently unspecified, but in most implementations should be 20.)</para> |
| <literallayout format="linespecific" class="normal">Inputs: |
| [Integer] Number of nominal pixels to inset. |
| </literallayout> |
| </section> |
| <section id="Shape_Marker"> |
| <title>Shape Marker</title> |
| <para>Draw a marker, that is a graphical indicator that can be used to add an additional que about the object state. For example, in a two-dimensional graphics representation this might be a small shape drawn inset at the corner of the larger shape. </para> |
| </section> |
| <section id="Shape_Marker_2"> |
| <title>Shape Marker 2</title> |
| <para>Represents a marker placed in a different location from the other shape markers.</para> |
| </section> |
| <section id="Shape_Marker_3"> |
| <title>Shape Marker 3</title> |
| <para>Represents a marker placed in a different location from the other shape markers.</para> |
| </section> |
| <section id="Color_RGB"> |
| <title>Color RGB</title> |
| <para>A color specified by the three inputs for Red, Green and Blue color components. Those inputs are expected to be in the range 0..1.</para> |
| <literallayout format="linespecific" class="normal">Inputs: |
| [Real] A value from 0.0 to 1.0. |
| [Real] A value from 0.0 to 1.0. |
| [Real] A value from 0.0 to 1.0. |
| </literallayout> |
| </section> |
| <section id="Color_Red"> |
| <title>Color Red</title> |
| <para>The color red.</para> |
| </section> |
| <section id="Color_Yellow"> |
| <title>Color Yellow</title> |
| <para>The color yellow.</para> |
| </section> |
| <section id="Color_Blue"> |
| <title>Color Blue</title> |
| <para>The color blue.</para> |
| </section> |
| <section id="Color_Orange"> |
| <title>Color Orange</title> |
| <para>The color orange.</para> |
| </section> |
| <section id="Color_Green"> |
| <title>Color Green</title> |
| <para>The color green.</para> |
| </section> |
| <section id="Color_Purple"> |
| <title>Color Purple</title> |
| <para>The color purple.</para> |
| </section> |
| <section id="Color_Black"> |
| <title>Color Black</title> |
| <para>The color black.</para> |
| </section> |
| <section id="Color_White"> |
| <title>Color White</title> |
| <para>The color white.</para> |
| </section> |
| <section id="Color_Gray"> |
| <title>Color Gray</title> |
| <para>The color gray.</para> |
| </section> |
| <section id="Graphic_Outline"> |
| <title>Graphic Outline</title> |
| <para>Draws an outline of the last evaluated shape, using the last specified color or the default color (usually black) if none has been specified.</para> |
| </section> |
| <section id="Graphic_Fill"> |
| <title>Graphic Fill</title> |
| <para>Fills the last evaluated shape with the last specified color or the default color (usually black) if none has been specified.</para> |
| </section> |
| </section> |
| <section id="Time"> |
| <title>Time</title> |
| <para>Time functions return values related to model execution time. </para> |
| <section id="Now"> |
| <title>Now</title> |
| <para>The current simulation period, that is the number of iterations that the model has gone through, or in the case of models with callibrarted time, the number of iterations added to the model's nominal start time.</para> |
| <literallayout format="linespecific" class="normal">Outputs: |
| [Integer] The current period. |
| </literallayout> |
| </section> |
| </section> |
| <section id="Math"> |
| <title>Math</title> |
| <para>The math functions use the extremely well specified and tested routines form the Java Math library. (Because of copyright restrictions, we aren't able to include the exact definitions here. Click on the links to get more details on each function.)</para> |
| <section id="Sine"> |
| <title>Sine</title> |
| <para>See JavaDoc: |
| <ulink url="http://java.sun.com/javase/6/docs/api/java/lang/Math.html#sin(double)">http://java.sun.com/javase/6/docs/api/java/lang/Math.html#sin(double)</ulink> |
| </para> |
| </section> |
| <section id="Cosine"> |
| <title>Cosine</title> |
| <para>See JavaDoc: |
| <ulink url="http://java.sun.com/javase/6/docs/api/java/lang/Math.html#cos(double)">http://java.sun.com/javase/6/docs/api/java/lang/Math.html#cos(double)</ulink> |
| </para> |
| </section> |
| <section id="Tangent"> |
| <title>Tangent</title> |
| <para>See JavaDoc: |
| <ulink url="http://java.sun.com/javase/6/docs/api/java/lang/Math.html#tan(double)">http://java.sun.com/javase/6/docs/api/java/lang/Math.html#tan(double)</ulink> |
| </para> |
| </section> |
| <section id="Arc_Sine"> |
| <title>Arc Sine</title> |
| <para>See JavaDoc: |
| <ulink url="http://java.sun.com/javase/6/docs/api/java/lang/Math.html#asin(double)">http://java.sun.com/javase/6/docs/api/java/lang/Math.html#asin(double)</ulink> |
| </para> |
| </section> |
| <section id="Arc_Cosine"> |
| <title>Arc Cosine</title> |
| <para>See JavaDoc: |
| <ulink url="http://java.sun.com/javase/6/docs/api/java/lang/Math.html#acos(double)">http://java.sun.com/javase/6/docs/api/java/lang/Math.html#acos(double)</ulink> |
| </para> |
| </section> |
| <section id="Arc_Tangent"> |
| <title>Arc Tangent</title> |
| <para>See JavaDoc: |
| <ulink url="http://java.sun.com/javase/6/docs/api/java/lang/Math.html#atan(double)">http://java.sun.com/javase/6/docs/api/java/lang/Math.html#atan(double)</ulink> |
| </para> |
| </section> |
| <section id="Convert_Degree_to_Radians"> |
| <title>Convert Degree to Radians</title> |
| <para>See JavaDoc: |
| <ulink url="http://java.sun.com/javase/6/docs/api/java/lang/Math.html#toRadians(double)">http://java.sun.com/javase/6/docs/api/java/lang/Math.html#toRadians(double)</ulink> |
| </para> |
| </section> |
| <section id="Convert_Radians_to_Degrees"> |
| <title>Convert Radians to Degrees</title> |
| <para>See JavaDoc: |
| <ulink url="http://java.sun.com/javase/6/docs/api/java/lang/Math.html#toDegrees(double)">http://java.sun.com/javase/6/docs/api/java/lang/Math.html#toDegrees(double)</ulink> |
| </para> |
| </section> |
| <section id="Exp"> |
| <title>Exp</title> |
| <para>See JavaDoc: |
| <ulink url="http://java.sun.com/javase/6/docs/api/java/lang/Math.html#exp(double)">http://java.sun.com/javase/6/docs/api/java/lang/Math.html#exp(double)</ulink> |
| </para> |
| </section> |
| <section id="Log"> |
| <title>Log</title> |
| <para>See JavaDoc: |
| <ulink url="http://java.sun.com/javase/6/docs/api/java/lang/Math.html#log(double)">http://java.sun.com/javase/6/docs/api/java/lang/Math.html#log(double)</ulink> |
| </para> |
| </section> |
| <section id="Log_b10"> |
| <title>Log b10</title> |
| <para>See JavaDoc: |
| <ulink url="http://java.sun.com/javase/6/docs/api/java/lang/Math.html#log10(double)">http://java.sun.com/javase/6/docs/api/java/lang/Math.html#log10(double)</ulink> |
| </para> |
| </section> |
| <section id="Square_Root"> |
| <title>Square Root</title> |
| <para>See JavaDoc: |
| <ulink url="http://java.sun.com/javase/6/docs/api/java/lang/Math.html#squareRoot(double)">http://java.sun.com/javase/6/docs/api/java/lang/Math.html#squareRoot(double)</ulink> |
| </para> |
| </section> |
| <section id="Cube_Root"> |
| <title>Cube Root</title> |
| <para>See JavaDoc: |
| <ulink url="http://java.sun.com/javase/6/docs/api/java/lang/Math.html#cbrt(double)">http://java.sun.com/javase/6/docs/api/java/lang/Math.html#cbrt(double)</ulink> |
| </para> |
| </section> |
| <section id="Remainder"> |
| <title>Remainder</title> |
| <para>See JavaDoc: |
| <ulink url="http://java.sun.com/javase/6/docs/api/java/lang/Math.html#iEEEremainder(double,%20double)">http://java.sun.com/javase/6/docs/api/java/lang/Math.html#iEEEremainder(double,%20double)</ulink> |
| </para> |
| </section> |
| <section id="Ceiling"> |
| <title>Ceiling</title> |
| <para>See JavaDoc: |
| <ulink url="http://java.sun.com/javase/6/docs/api/java/lang/Math.html#ceil(double)">http://java.sun.com/javase/6/docs/api/java/lang/Math.html#ceil(double)</ulink> |
| </para> |
| </section> |
| <section id="Floor"> |
| <title>Floor</title> |
| <para>See JavaDoc: |
| <ulink url="http://java.sun.com/javase/6/docs/api/java/lang/Math.html#floor(double)">http://java.sun.com/javase/6/docs/api/java/lang/Math.html#floor(double)</ulink> |
| </para> |
| </section> |
| <section id="Rount"> |
| <title>Rount</title> |
| <para>See JavaDoc: |
| <ulink url="http://java.sun.com/javase/6/docs/api/java/lang/Math.html#rint(double)">http://java.sun.com/javase/6/docs/api/java/lang/Math.html#rint(double)</ulink> |
| </para> |
| </section> |
| <section id="Arc_Tangent_Rectangular"> |
| <title>Arc Tangent Rectangular</title> |
| <para>See JavaDoc: |
| <ulink url="http://java.sun.com/javase/6/docs/api/java/lang/Math.html#atan2(double,%20double)">http://java.sun.com/javase/6/docs/api/java/lang/Math.html#atan2(double,%20double)</ulink> |
| </para> |
| </section> |
| <section id="Power_2"> |
| <title>Power</title> |
| <para>See JavaDoc: |
| <ulink url="http://java.sun.com/javase/6/docs/api/java/lang/Math.html#pow(double,%20double)">http://java.sun.com/javase/6/docs/api/java/lang/Math.html#pow(double,%20double)</ulink> |
| </para> |
| </section> |
| <section id="Absolute_Value"> |
| <title>Absolute Value</title> |
| <para>See JavaDoc: |
| <ulink url="http://java.sun.com/javase/6/docs/api/java/lang/Math.html#abs(double)">http://java.sun.com/javase/6/docs/api/java/lang/Math.html#abs(double)</ulink> |
| </para> |
| </section> |
| <section id="Maximum"> |
| <title>Maximum</title> |
| <para>See JavaDoc: |
| <ulink url="http://java.sun.com/javase/6/docs/api/java/lang/Math.html#max(double,%20double)">http://java.sun.com/javase/6/docs/api/java/lang/Math.html#max(double,%20double)</ulink> |
| </para> |
| </section> |
| <section id="Minimum"> |
| <title>Minimum</title> |
| <para>See JavaDoc: |
| <ulink url="http://java.sun.com/javase/6/docs/api/java/lang/Math.html#min(double,%20double)">http://java.sun.com/javase/6/docs/api/java/lang/Math.html#min(double,%20double)</ulink> |
| </para> |
| </section> |
| <section id="ULP"> |
| <title>ULP</title> |
| <para>See JavaDoc: |
| <ulink url="http://java.sun.com/javase/6/docs/api/java/lang/Math.html#ulp(double)">http://java.sun.com/javase/6/docs/api/java/lang/Math.html#ulp(double)</ulink> |
| </para> |
| </section> |
| <section id="Sign"> |
| <title>Sign</title> |
| <para>See JavaDoc: |
| <ulink url="http://java.sun.com/javase/6/docs/api/java/lang/Math.html#signum(double)">http://java.sun.com/javase/6/docs/api/java/lang/Math.html#signum(double)</ulink> |
| </para> |
| </section> |
| <section id="Hyperbolic_Sine"> |
| <title>Hyperbolic Sine</title> |
| <para>See JavaDoc: |
| <ulink url="http://java.sun.com/javase/6/docs/api/java/lang/Math.html#sinh(double)">http://java.sun.com/javase/6/docs/api/java/lang/Math.html#sinh(double)</ulink> |
| </para> |
| </section> |
| <section id="Hyperbolic_Cosine"> |
| <title>Hyperbolic Cosine</title> |
| <para>See JavaDoc: |
| <ulink url="http://java.sun.com/javase/6/docs/api/java/lang/Math.html#cosh(double)">http://java.sun.com/javase/6/docs/api/java/lang/Math.html#cosh(double)</ulink> |
| </para> |
| </section> |
| <section id="Hyperbolic_Tan"> |
| <title>Hyperbolic Tan</title> |
| <para>See JavaDoc: |
| <ulink url="http://java.sun.com/javase/6/docs/api/java/lang/Math.html#tanh(double)">http://java.sun.com/javase/6/docs/api/java/lang/Math.html#tanh(double)</ulink> |
| </para> |
| </section> |
| <section id="Hypotuneuse"> |
| <title>Hypotuneuse</title> |
| <para>See JavaDoc: |
| <ulink url="http://java.sun.com/javase/6/docs/api/java/lang/Math.html#hypotuneuse(double,%20double)">http://java.sun.com/javase/6/docs/api/java/lang/Math.html#hypotuneuse(double,%20double)</ulink> |
| </para> |
| </section> |
| <section id="Expm1"> |
| <title>Expm1</title> |
| <para>See JavaDoc: |
| <ulink url="http://java.sun.com/javase/6/docs/api/java/lang/Math.html#expm1(double)">http://java.sun.com/javase/6/docs/api/java/lang/Math.html#expm1(double)</ulink> |
| </para> |
| </section> |
| <section id="Log1p"> |
| <title>Log1p</title> |
| <para>See JavaDoc: |
| <ulink url="http://java.sun.com/javase/6/docs/api/java/lang/Math.html#log1p(double)">http://java.sun.com/javase/6/docs/api/java/lang/Math.html#log1p(double)</ulink> |
| </para> |
| </section> |
| </section> |
| <section id="List"> |
| <title>List</title> |
| <para>List functions are used for working with arrays and other functions that have lists as output.</para> |
| <section id="Item"> |
| <title>Item</title> |
| <para>Returns the item at the specified index from the list of items provided. Those items will typically be input primitives such as Integer or Real values.</para> |
| <literallayout format="linespecific" class="normal">Inputs: |
| [Generic] |
| [Integer] |
| Outputs: |
| [Generic] |
| </literallayout> |
| </section> |
| <section id="Length"> |
| <title>Length</title> |
| <para>The number of items in the provided list of items.</para> |
| <literallayout format="linespecific" class="normal">Inputs: |
| [Generic] |
| Outputs: |
| [Integer] |
| </literallayout> |
| </section> |
| </section> |
| <section id="Distribution"> |
| <title>Distribution</title> |
| <para>One of the most common tasks in the Agent Modeling process is the creation of agents with particular states drawn from a distribution. For example, you might want to create a number of agents with wealth randomly distributed between some minimum and maximum values. The distribution functions greatly ease the process of setting up those initializations and their associated parameters.</para> |
| <section id="Uniform_Cross_Distribution"> |
| <title>Uniform Cross Distribution</title> |
| <para>A random number taken from a distribution of values as defined by a cross of all values. (See Cross Distribution.) This funciton then returns a value drawn from the minimum and maximum values as determined by the current agent state. In the cross distribution, each of the values is treated independently so that an input attribute is created for every potential combination of states.</para> |
| <literallayout format="linespecific" class="normal">Inputs: |
| [Generic] The list of states to factor into the distribution. This is a multi-argument, which means that you can specify any number of attributes as arguments. |
| [Real] The set of attributes that will determine the minimum value of the function result based on the current state of the agent. Note that this list is automatically created and maintained. These values don't need to be and should not be manually edited. |
| [Real] The set of attributes that will determine the maximum value of the function result based on the current state of the agent. Note that this list is automatically created and maintained. These values don't need to be and should not be manually edited. |
| Outputs: |
| [Real] The resulting random number based on the current agent state and the input parameters. |
| </literallayout> |
| </section> |
| <section id="Uniform_Additive_Distribution"> |
| <title>Uniform Additive Distribution</title> |
| <para>A random number taken from a distribution of values in which each of the minimum and maximum values are added to determine a total minimum and maximum value. (See Additive Distribution.) In the additive distribution, each of the values is treated as dependent on the others so that an input attribute is only created for each seperate state.</para> |
| <literallayout format="linespecific" class="normal">Inputs: |
| [Generic] The list of states to factor into the distribution. This is a multi-argument, which means that you can specify any number of attributes as arguments. |
| [Real] The set of attributes that will determine the minimum value of the function result based on the current state of the agent. Note that this list is automatically created and maintained. These values don't need to be and should not be manually edited. |
| [Real] The set of attributes that will determine the maximum value of the function result based on the current state of the agent. Note that this list is automatically created and maintained. These values don't need to be and should not be manually edited. |
| Outputs: |
| [Real] The resulting random number based on the current agent state and the input parameters. |
| </literallayout> |
| </section> |
| <section id="Cross_Distribution"> |
| <title>Cross Distribution</title> |
| <para>A value taken from a set of (auto-generated) attributes based on the value of each state included. For example, if the multi-values included a state X with values A and B and a state Y with values I and II, this distribution would create separate input attributes for AI, AII, BI and BII. Then for an agent with States A and II this function would return the value specified by the AII input attribute.</para> |
| <literallayout format="linespecific" class="normal">Inputs: |
| [Generic] The list of states to factor into the distribution. This is a multi-argument, which means that you can specify any number of attributes as arguments. |
| [Real] The set of attributes that when multiplied against each other will determine the value of the function result based on the current state of the agent. Note that this list is automatically created and maintained. These values don't need to be and should not be manually edited. |
| Outputs: |
| [Real] The resulting value based on the current agent state and the input parameters. |
| </literallayout> |
| </section> |
| <section id="Additive_Distribution"> |
| <title>Additive Distribution</title> |
| <para>A value taken from a set of (auto-generated) attributes based on the combined values of the states provided. For example, if the multi-values included a state X with values A and B and a state Y with values I and II, this distribution would create input attributes for A, B, I and II. Those values would then be added together, so that for an Agent with state A and II this function would return A + II.</para> |
| <literallayout format="linespecific" class="normal">Inputs: |
| [Generic] The states to include in the distribution. This is a multi-argument, which means that you can specify any number of attributes as arguments. |
| [Real] The set of attributes that when combined with each other determine the value of the function result based on the current state of the agent. Note that this list is automatically created and maintained. These values don't need to be and should not be manually edited. |
| Outputs: |
| [Real] The resulting value based on the current agent state and the input parameters. |
| </literallayout> |
| </section> |
| </section> |
| </section> |
| <section id="Examples"> |
| <title>Examples</title> |
| <section id="Spatial_2"> |
| <title>Spatial</title> |
| <para>For examples of how spatial functions can be used within action flows to provide agents with complex movement behaviors, see the Modelers Guide actions examples. In the following example from that section, we define an action that causes a partner agent to move to an available neighboring space.</para> |
| <para> |
| <mediaobject> |
| <imageobject> |
| <imagedata fileref="images/actions/ActionsExampleNew.png" scale="50"/> |
| </imageobject> |
| </mediaobject> |
| </para> |
| </section> |
| <section id="Graphic_2"> |
| <title>Graphic</title> |
| <para>In the following action flow for the epidemic style, we've create Query Actions to determine each agent's current state, picked a color based on that, and then used a shared target to select a shape for the agent style and fill it:</para> |
| <para> |
| <mediaobject> |
| <imageobject> |
| <imagedata fileref="images/functions/GraphicsFunctionExampleDesign.png" scale="50"/> |
| </imageobject> |
| </mediaobject> |
| </para> |
| <para>After saving the model we can execute the two and three dimensional visualizations. Note something really nice -- even the charts have used the colors we've defined!</para> |
| <para> |
| <mediaobject> |
| <imageobject> |
| <imagedata fileref="images/functions/GraphicsFunctionExampleRun.png" scale="50"/> |
| </imageobject> |
| </mediaobject> |
| </para> |
| </section> |
| <section id="Distribution_2"> |
| <title>Distribution</title> |
| <para>In the following example, we walk through the process of using a distribution functions, demonstrating how we can easily modify the Epidemic model so that instead of simply setting an initial exposed population, we can define factors that take together will determine an individuals initial exposure state. We simply:</para> |
| <orderedlist inheritnum="ignore" continuation="restarts"> |
| <listitem> |
| <para>Create an Evaluate Action called "Initial Status". </para> |
| </listitem> |
| <listitem> |
| <para>Set the function to "Cross Distribution"</para> |
| </listitem> |
| <listitem> |
| <para>Opened the "Multiple Value" node in the editor, and clicked the "Multiple Values" item within it.</para> |
| </listitem> |
| <listitem> |
| <para>Selected the "Status" attribute.</para> |
| </listitem> |
| </orderedlist> |
| <para> |
| <mediaobject> |
| <imageobject> |
| <imagedata fileref="images/functions/DistributionDesignChoice.png" scale="50"/> |
| </imageobject> |
| </mediaobject> |
| </para> |
| <para>The appropriate attributes are automatically added to the model, as you can see below.</para> |
| <para> |
| <mediaobject> |
| <imageobject> |
| <imagedata fileref="images/functions/DistributionDesign.png" scale="50"/> |
| </imageobject> |
| </mediaobject> |
| </para> |
| <para>In order to assign these values to the agent, we'd simply need to assign the results of this Evaluate Action to the agent.</para> |
| </section> |
| </section> |
| <section id="Reference_3"> |
| <title>Reference</title> |
| <section id="Diagrams_3"> |
| <title>Diagrams</title> |
| <para>The following diagram may be helpful to readers familiar with UML and Meta-modeling:</para> |
| <section id="Meta-Classes_3"> |
| <title>Meta-Classes</title> |
| <para> |
| <mediaobject> |
| <imageobject> |
| <imagedata fileref="images/functions/FunctionsDiagram.png" scale="50"/> |
| </imageobject> |
| </mediaobject> |
| </para> |
| </section> |
| </section> |
| </section> |
| </section> |
| </chapter> |
| <chapter id="User_Guide"> |
| <title>User Guide</title> |
| <para>In this section of the guide, we'll discuss specific aspects of the Agent Modeling tools and show you how to use them in your day to day agent development activities. We discuss only tools specific to Agent Modeling itself. For more general information about the tools, such as how to customize editors, views, and perspectives, see the |
| <emphasis role="bold">Workbench User Guide</emphasis>. |
| </para> |
| <section id="Overview_5"> |
| <title>Overview</title> |
| <para>The Agent Modeling Platform provides two general modes or "perspectives" for working with Agent Models.</para> |
| <para> |
| <mediaobject> |
| <imageobject> |
| <imagedata fileref="images/tools/Perspectives.png" scale="50"/> |
| </imageobject> |
| </mediaobject> |
| </para> |
| <para> |
| <emphasis role="bold">Agent Modeling</emphasis> supports all aspects of working with models, including editing models and automatically generating all the of your code and documentation. |
| <emphasis role="bold">Agent Execution</emphasis> supports running and exploring those models. A key feature of the Agent Modeling Platform is the ability to execute models within the same environment that they are developed within -- you don't need to launch a separate environment in order to run a model. Agent Execution automatically activates when you launch a model. We'll discuss the agent modeling tools first, and then turn to agent execution. |
| </para> |
| </section> |
| <section id="Modeling"> |
| <title>Modeling</title> |
| <section id="Perspective"> |
| <title>Perspective</title> |
| <para>The Provides a custom layout menus and tools specific to working with agent models. Because the agent modeling process also often involves Java and Eclipse Plugin development we include easy access to many of those tools here as well.</para> |
| </section> |
| <section id="Creating_Projects_and_Models"> |
| <title>Creating Projects and Models</title> |
| <para>You can create projects and project components using the Popup menu. Just click in a blank space within the Package Explorer. Any installed project targets are displayed in this menu. For example, if you've installed the Simphony target, you'd see that displayed in this menu as well.</para> |
| <para> |
| <mediaobject> |
| <imageobject> |
| <imagedata fileref="images/edit_tutorial/SimpleTutorial3CreateModel.png" scale="50"/> |
| </imageobject> |
| </mediaobject> |
| </para> |
| </section> |
| <section id="Menus.2C_Popups_and_Toolbar"> |
| <title>Menus, Popups and Toolbar</title> |
| <para>The popup menus and application menus provide access to various model features and are context sensitive. Throughout these screenshots, we've customized the toolbar in order to only show the agent Modeling specific features.</para> |
| </section> |
| <section id="Views"> |
| <title>Views</title> |
| <para>By default the workbench includes a number of views. See the Workbench documentation for more details on how they can be customized accessed and used.</para> |
| <para> |
| <mediaobject> |
| <imageobject> |
| <imagedata fileref="images/tools/Workbench.png" scale="50"/> |
| </imageobject> |
| </mediaobject> |
| </para> |
| <section id="Editor"> |
| <title>Editor</title> |
| <para>This is not technically a view in itself. It is the major focus of the workbench and contains any edit models or other files such as Java source or parameters.</para> |
| </section> |
| <section id="Default_Views"> |
| <title>Default Views</title> |
| <para>The default modeling views are visible by default.</para> |
| <section id="Package_Explorer"> |
| <title>Package Explorer</title> |
| <para>Supports navigation within projects.</para> |
| </section> |
| <section id="Properties"> |
| <title>Properties</title> |
| <para>The properties allows you to view and edit specific details for the currently selected object. For example, if you select a model context, you'll be able to edit its attributes here.</para> |
| </section> |
| <section id="Outline"> |
| <title>Outline</title> |
| <para>The outline view supports easy navigation within the edited files. See the model editing sections for more on how the outline can be used to assist exploration of Agent Models.</para> |
| </section> |
| </section> |
| <section id="Diagnostic_Views"> |
| <title>Diagnostic Views</title> |
| <para>There are a number of views that can be used to explore issues that might come up during the modeling process. You can see them on the lower left-hand corner of the screenshot above. Click on one of the icons to view their contents.</para> |
| <section id="Problems"> |
| <title>Problems</title> |
| <para>This view is one that you'll become very familiar with. It is used to display specific about problems with any of the artifacts (files) in your modeling project. If you see a red or yellow marker on a file, opening the view will present a list of the issues that are currently being reported. For a usage example, please see the Tutorial.</para> |
| </section> |
| <section id="Console"> |
| <title>Console</title> |
| <para>This view displays text (console) output for appropriate processes. For example, if you launch an Ascape project, this will display any output that would go to the Java console.</para> |
| </section> |
| <section id="Errors"> |
| <title>Errors</title> |
| <para>This is another view that you will find valuable in your day to day modeling activities. The error log lists everything important that happens during model execution. It's the first place to look if something mysterious goes wrong, and when you report problems it's always helpful to include anything that could be relevant in the log. Despite its name, the Errors view is not just for reporting errors -- it is also used to report progress on normal operations. For example, when models are automatically generated that is reported to the log, as we can see in the following example:</para> |
| </section> |
| </section> |
| </section> |
| <section id="Modeling_Tree_Editor"> |
| <title>Modeling Tree Editor</title> |
| <para>The Eclipse Agent Modeling Framework includes a full-featured model editor based on the Eclipse Modeling Framework's Edit tools. All aspects of an AMF model can be managed from within this tool. Note that the tree editor is only one of many ways of editing a model. Other editors of AMF models include textual languages and custom editors that are part of commercial offerings.</para> |
| <section id="Opening_the_Editor"> |
| <title>Opening the Editor</title> |
| <para>To open a model in the editor, simply double-click on it. If the model doesn't open in the model editor (if for example it had been previously opened using another editor), you can always access the editor using |
| <emphasis role="bold">Open With > Other...</emphasis> and selecting "MetaABM Editor". The editor has two pages, an Editor page that we'll focus on first and a "description" page that we'll discuss at the end of this section. |
| </para> |
| </section> |
| <section id="Structure_2"> |
| <title>Structure</title> |
| <para>The model is composed of nodes representing specific model entities such as agents, actions and spaces. For details about any of these entities, see the Concepts section.</para> |
| <section id="Opening_Components"> |
| <title>Opening Components</title> |
| <para>After opening a model, you can see the contents by clicking the Triangle symbol to the left of an item. For example, opening the root context node, we see:</para> |
| <para> |
| <mediaobject> |
| <imageobject> |
| <imagedata fileref="images/tools/Editor.png" scale="50"/> |
| </imageobject> |
| </mediaobject> |
| </para> |
| </section> |
| <section id="Creating_Components"> |
| <title>Creating Components</title> |
| <para>You add nodes by right-clicking on a node, like so:</para> |
| <para> |
| <mediaobject> |
| <imageobject> |
| <imagedata fileref="images/tools/EditorAdd.png" scale="50"/> |
| </imageobject> |
| </mediaobject> |
| </para> |
| </section> |
| <section id="Editing_Components"> |
| <title>Editing Components</title> |
| <para>To edit components, select the node you want to modify. The |
| <emphasis role="bold">Properties View</emphasis> will be updated with the agent details. Use the properties view to modify the values. In the screenshot below, we're editing the values for the City space. |
| </para> |
| <para> |
| <mediaobject> |
| <imageobject> |
| <imagedata fileref="images/tools/EditorEditing.png" scale="50"/> |
| </imageobject> |
| </mediaobject> |
| </para> |
| </section> |
| <section id="Moving_Components"> |
| <title>Moving Components</title> |
| <para>You can often rearrange model components by dragging them from one place to another. In the following example, we're creating a model of a regional epidemic by creating a City sub-context and moving the agent into it: </para> |
| <para> |
| <mediaobject> |
| <imageobject> |
| <imagedata fileref="images/tools/EditorMoving.png" scale="50"/> |
| </imageobject> |
| </mediaobject> |
| </para> |
| </section> |
| <section id="Removing_Components"> |
| <title>Removing Components</title> |
| <para>You can remove actions by deleting or cutting them using the popup menu. When you delete an entity, all of its children are deleted as well, except in some special cases (such as with actions) where other paths to that entity still exist.</para> |
| </section> |
| <section id="Copying_Components"> |
| <title>Copying Components</title> |
| <para>To make a copy of an entity and place it in a new location, option-drag the entity to the destination. You can make a copy in the existing location by dragging it into the same parent. The name will automatically be updated with "copy" appended to it.</para> |
| </section> |
| <section id="Editing_Attributes"> |
| <title>Editing Attributes</title> |
| <para>The attributes node -- along with the actions and styles nodes -- represents a group of components rather than an entity itself. It contains all of the attributes for the parent agent or context. In the examples below, we can see the attributes for the Epidemic route model. Note that the top level attributes in a root context act as the parameters for the model itself.</para> |
| <para> |
| <mediaobject> |
| <imageobject> |
| <imagedata fileref="images/tools/EditorAttributes.png" scale="50"/> |
| </imageobject> |
| </mediaobject> |
| </para> |
| </section> |
| <section id="Editing_Styles"> |
| <title>Editing Styles</title> |
| <para>The Styles node is another group node, in this case representing a set of styles that can be used to visualize the agents. When creating a style, you will need to create a Rule for each style as well, like so:</para> |
| <para> |
| <mediaobject> |
| <imageobject> |
| <imagedata fileref="images/tools/EditorStyles.png" scale="50"/> |
| </imageobject> |
| </mediaobject> |
| </para> |
| </section> |
| </section> |
| <section id="Actions_3"> |
| <title>Actions</title> |
| <para>Actions are a key and relatively complex aspect of the model editor. Because actions are actually related in a graph structure, a tree-based editor will not be able to represent a the underlying structure of action relationships directly. (This is actually no different from most development environments -- for example, Java code is edited in a text based editor, but the call structure represents a complex graph. Advance tools developed by AMP contributors do support more sophisticated methods for action browsing and we'll have simple versions of them available in future releases of the AMF edit tools.) Therefore, it's helpful to take time to understand how action relationships appear in the editor.</para> |
| <para>Like attributes and styles, every agent has a single Actions nodes which contains its Root Action(s).</para> |
| <section id="Creating_Actions"> |
| <title>Creating Actions</title> |
| <para>You create actions as with any other component, by right-clicking on the source action and choosing the new action. The menu is organized by usage.</para> |
| <para> |
| <mediaobject> |
| <imageobject> |
| <imagedata fileref="images/tools/EditorActionMenu.png" scale="50"/> |
| </imageobject> |
| </mediaobject> |
| </para> |
| </section> |
| <section id="Editing_Actions"> |
| <title>Editing Actions</title> |
| <para>Actions and their inputs are edited just like any other model component. Click on the action or input you want to edit and then make changes to it in the properties editor.</para> |
| </section> |
| <section id="Order"> |
| <title>Order</title> |
| <para>Generally, action sources will appear above their targets. In the case where there is only one source for a given target, and that target has no other sources, they will appear directly above one another. Its important to note however that |
| <emphasis role="italic">the order of the nodes does not indicate a specific source and target relationship</emphasis>. For example, in the case where there are multiple targets for a source, they will typically follow that source immediately. To make the relationships clear, every action lists its source actions as part of the action label. Agent selections also appear as part of the label. |
| </para> |
| <para> |
| <mediaobject> |
| <imageobject> |
| <imagedata fileref="images/tools/ActionsExample.png" scale="50"/> |
| </imageobject> |
| </mediaobject> |
| </para> |
| <para>In the above example, the Initialize Location "Initialize Action" is straightforward. We simply define a Select Action, a Query Action target for that selection, and then a Move Action target for the query. The "Transmission" Rule is more complicated. Note for example that the "Infectious" Union Action is the target of both the "Asymptomatic Infectious" and "Symptomatic Infectious" Query Actions. The "Vulnerable Neighbor" action has the label "Vulnerable Neighbor [Potential Exposure] <- [Potential Exposure]" indicating that the "Potential Exposure" action serves as its selection as well as its source.</para> |
| </section> |
| <section id="Initial_Order"> |
| <title>Initial Order</title> |
| <para>A new action's initial target will be the action that you clicked on when creating it. For an action that should always act within a given root action (i.e. Rule, Schedule, etc..), add it to the root action. A root action can have more than one target.</para> |
| </section> |
| <section id="Changing_Sources_and_Targets_.28Reordering.29"> |
| <title>Changing Sources and Targets (Reordering)</title> |
| <para>An action's target can be changed by dragging it over the new target action. Note that this is a different behavior from that of standard entity movement. You cannot make an action a target of an action that is itself a source of the modified action! (See the concepts section for why.) Using the default tree editor you cannot change an action's targets directly; instead select the action's target and move that. </para> |
| </section> |
| <section id="Adding_Sources_and_Targets"> |
| <title>Adding Sources and Targets</title> |
| <para>As discussed earlier, actions often have multiple sources and targets. To make an action the target of an additional action, click on target action, hold down the control key, and drag the action to its new destination. See the tutorial for a complete example.</para> |
| </section> |
| <section id="Removing_Sources_and_Targets"> |
| <title>Removing Sources and Targets</title> |
| <para>You cannot remove single sources from targets directly using the tree editor. Instead, first drag the agent to a source nodes that will be part of its changed set of sources. That will remove all existing actions sources but for the one you have just dragged it to. Then add back any of the other source and target nodes you wish to retain.</para> |
| </section> |
| <section id="Removing_Actions"> |
| <title>Removing Actions</title> |
| <para>You can remove actions in the same way as with structural model components. Note that just as when you delete an agent, all of that agent's attributes, actions and styles are also deleted form the model, when you delete an Action, any of its targets will also be removed, unless there is some other source action path that connects it to the root action. And of course, any targets of such targets will be affected in the same way and so on. If you remove a node from high in the action tree a lot of nodes could disappear at once! If you have actions that you want to retain as part of the flow, you should first make them targets of a new action before deleting their parent action.</para> |
| </section> |
| <section id="Copying_Actions"> |
| <title>Copying Actions</title> |
| <para>Copying actions works just as with other entities, and copies will become targets of their option-drag destination. </para> |
| </section> |
| <section id="Query_and_Evaluation_Inputs_2"> |
| <title>Query and Evaluation Inputs</title> |
| <para>The number of inputs is determined by the selected functions. (In rare cases where a function can take an arbitrary number of arguments you may need to create additional values or delete existing ones.) In the following example, we're picking the Symptom Infectious status for a query that will affect the potentially exposed agents. Note that is instead you wanted to compare another kind of value -- for example an Integer value -- you would need to change the first input listed before changing the second input so that you will be able to get the appropriate options for the second.</para> |
| <para> |
| <mediaobject> |
| <imageobject> |
| <imagedata fileref="images/tools/Inputs.png" scale="50"/> |
| </imageobject> |
| </mediaobject> |
| </para> |
| </section> |
| <section id="Input_Literals_2"> |
| <title>Input Literals</title> |
| <para>To create an input value, right click on the input and select |
| <emphasis role="bold">Create Member > Literal</emphasis>. Then specify the actual value in the Value property in the |
| <emphasis role="bold">Properties View</emphasis>. |
| </para> |
| </section> |
| </section> |
| </section> |
| </section> |
| <section id="Building"> |
| <title>Building</title> |
| <section id="Building_Models"> |
| <title>Building Models</title> |
| <para>If you've used other development environments, you're probably used to a separate build step. For example, if you edit a set of Java files, you might invoke a compile command. Eclipse and the Agent Modeling Platform support automatic building. This means that in order to build your code, you simply save the model and the environment takes care of the rest. What gets built is defined by the project. For example, if you save a model that is contained within an Agent Modeling Escape Project, the following steps occur automatically:</para> |
| <orderedlist inheritnum="ignore" continuation="restarts"> |
| <listitem> |
| <para>The Escape builder generates Java code for the Escape API, including support for specialized graphics and (if enabled) 3D visualization.</para> |
| </listitem> |
| <listitem> |
| <para>The Documentation builder generates custom html documentation for the model.</para> |
| </listitem> |
| <listitem> |
| <para>The Java builder takes the Java code generated above and compiles it.</para> |
| </listitem> |
| <listitem> |
| <para>The Manifest and Schema builders package the project for use as part of the Eclipse plugin environment.</para> |
| </listitem> |
| </orderedlist> |
| <para>So what do you do if you want to generate code for a different target, such as Repast? Here, you simply create another project and drag the model into it. You can also edit the builders for a given project (see the Workbench Documentation) but you'll only want to do that if you're making permanent changes to the project itself.</para> |
| </section> |
| <section id="Generating_Specialized_Model_Artifacts"> |
| <title>Generating Specialized Model Artifacts</title> |
| <para>You can also manually generate code for models. This is useful if you want to create code for a model in a non target project and don't want the automatic build capabilities. There are also specialized targets that can be generated manually that are bundled with the tools -- AMP plugin developers can easily add custom generation targets for this menu. To generate custom artifacts, right-click on a model and select |
| <emphasis role="bold">Generate</emphasis>. |
| </para> |
| <para> |
| <mediaobject> |
| <imageobject> |
| <imagedata fileref="images/tools/GenerateMenu.png" scale="50"/> |
| </imageobject> |
| </mediaobject> |
| </para> |
| <para>Targets include:</para> |
| <section id="Platform_Targets"> |
| <title>Platform Targets</title> |
| <para>Creates code for one of the installed targets, such as Ascape, Escape, and Simphony. (Again, these generators are unnecessary for projects that already have target specific builders configured.)</para> |
| </section> |
| <section id="Interfaces"> |
| <title>Interfaces</title> |
| <para>Creates a complete set of interfaces for the model classes. These can be very useful for development and integration in enterprise environments. Generated classes are placed in the src directory with "I" added to the name. For example, if you generate interfaces for a model with an "Individual" agent, this target will create an "IIndividual" interface that includes getters, setters and methods for all of the agent's attributes and actions.</para> |
| </section> |
| <section id="Skeleton"> |
| <title>Skeleton</title> |
| <para>Creates a base class for the model. This is essentially a complete implementation, but without the action implementations. Again, these classes can be useful when generating code for use in enterprise and other specialized environments.</para> |
| </section> |
| <section id="Test_Cases"> |
| <title>Test Cases</title> |
| <para>Generates base support (needing customization) test cases for use in JUnit tests.</para> |
| </section> |
| <section id="Text_Documents"> |
| <title>Text Documents</title> |
| <para>Creates simple text documentation for use in other documents.</para> |
| </section> |
| <section id="Generate_Key_Graphics"> |
| <title>Generate Key Graphics</title> |
| <para>This specialized target supports the creation of graphic keys for the model. To use this target:</para> |
| <orderedlist inheritnum="ignore" continuation="restarts"> |
| <listitem> |
| <para>Generate the code.</para> |
| </listitem> |
| <listitem> |
| <para>Add a dependency to the Manifest for "org.eclipse.amp.amf.gen.extras".</para> |
| </listitem> |
| <listitem> |
| <para>In the srcutil directory find the Java source code for the calss {RootContext}GraphicsWriter. For example, for the Epidemic model, this would be srcutil/name.milesparker.epi/EpidemicGraphicsWriter.java.</para> |
| </listitem> |
| <listitem> |
| <para>Right-click, and select |
| <emphasis role="bold">Run As > Java Application</emphasis>. |
| </para> |
| </listitem> |
| <listitem> |
| <para>Refresh the project by right-clicking on it and selecting |
| <emphasis role="bold">Refresh</emphasis>. |
| </para> |
| </listitem> |
| <listitem> |
| <para>The Doc directory will now contain a number of new files, including</para> |
| <orderedlist inheritnum="ignore" continuation="restarts"> |
| <listitem> |
| <para>{RootContext}Key.png</para> |
| </listitem> |
| <listitem> |
| <para>{RootContext}GraphicsKey.html</para> |
| </listitem> |
| </orderedlist> |
| </listitem> |
| </orderedlist> |
| <para>Both files contain graphic representations of the model using the definitions defined by the model styles, very useful artifacts for inclusion in papers and web pages describing your model. For example, here is the EpidemicKey.png:</para> |
| <para> |
| <mediaobject> |
| <imageobject> |
| <imagedata fileref="images/tools/EpidemicKey.png" scale="50"/> |
| </imageobject> |
| </mediaobject> |
| </para> |
| </section> |
| <section id="Function_Docs"> |
| <title>Function Docs</title> |
| <para>Generates WikiText documentation for function libraries. We use it to create the function documentation in this guide!</para> |
| </section> |
| </section> |
| </section> |
| <section id="Executing"> |
| <title>Executing</title> |
| <section id="Launching_a_Model_.28AMF.29"> |
| <title>Launching a Model (AMF)</title> |
| <informaltable frame="none"> |
| <tr> |
| <td rowspan="1" colspan="1">Launching AMF and Escape models is easy. When an AMF file is selected -- in any of the perspectives -- the toolbar and Application menus are updated to reflect the file you've selected and provide convenient access to other functions. For example, when we click on a metaabm file in the package explorer, model execution buttons appear in the toolbar.</td> |
| <td rowspan="1" colspan="1"> |
| <mediaobject> |
| <imageobject> |
| <imagedata fileref="images/tools/EditorToolbar.png" scale="50"/> |
| </imageobject> |
| </mediaobject> |
| </td> |
| </tr> |
| <tr> |
| <td rowspan="1" colspan="1">If you right-click on a file a pop-up menu appears like the one to the far right -- in this case we're selecting the "Execute Headless" option. To launch a model, just select one of the options. (Note that the execution framework doesn't know whether your code exists in an Escape project or another target project. If you attempt to execute a .metaabm model in an Ascape project for example, you will get an error.)</td> |
| <td rowspan="1" colspan="1"> |
| <mediaobject> |
| <imageobject> |
| <imagedata fileref="images/tools/EditorMenu.png" scale="50"/> |
| </imageobject> |
| </mediaobject> |
| </td> |
| </tr> |
| </informaltable> |
| <para>One a model has been launched, the Agent Execution Perspective automatically becomes active. The Provides a custom layout menus and tools specific to executing agent models.</para> |
| <para> |
| <mediaobject> |
| <imageobject> |
| <imagedata fileref="images/execution/EpidemicExecNew.png" scale="50"/> |
| </imageobject> |
| </mediaobject> |
| </para> |
| <para>The execution options are:</para> |
| <section id="Execute"> |
| <title>Execute</title> |
| <para>Launches the model using default graphics, opening the Agent Execution perspective.</para> |
| </section> |
| <section id="Execute_Headless"> |
| <title>Execute Headless</title> |
| <para>Launches the model without graphics, opening the Agent Execution perspective.</para> |
| </section> |
| <section id="Execute_Headless_.28Data.29"> |
| <title>Execute Headless (Data)</title> |
| <para>Launches the model with an observer that collects data into the AMF adata model representation.</para> |
| </section> |
| </section> |
| <section id="Executing_a_Model_.28Java_.2F_3D.29"> |
| <title>Executing a Model (Java / 3D)</title> |
| <para>You can execute any Escape model directly from its Java file by right-clicking on it. This is used for models that have been written directly in Java, or that you have created or that have been automatically generated, such as the 3D versions of AMF models. In order for the model to launch correctly, it must have as a superclass the Escape "Scape" class. In the following screenshot, we've launched a 3D version of the Epidemic model. The 3D models are automatically generated for all .metaabm models. You can also launch a model into 3D by clicking on the model file and clicking the second (Execute Model with 3D) execute button.</para> |
| <para> |
| <mediaobject> |
| <imageobject> |
| <imagedata fileref="images/execution/Epidemic3D.png" scale="50"/> |
| </imageobject> |
| </mediaobject> |
| </para> |
| </section> |
| <section id="Controlling_Models"> |
| <title>Controlling Models</title> |
| <para>Once a model has been launched, the toolbar buttons allow you to control model execution.</para> |
| <para> |
| <mediaobject> |
| <imageobject> |
| <imagedata fileref="images/execution/ExecControl.png" scale="50"/> |
| </imageobject> |
| </mediaobject> |
| </para> |
| <section id="Model_Execution_Controls"> |
| <section> |
| <title>Model Execution Controls</title> |
| <para>From right to left, you can start, restart, pause, step, stop and close a model. You can even run multiple models and control them independently. You can also move views around, close them and so on as with any other Eclipse views. Here we're running two separate models for comparison.</para> |
| <para> |
| <mediaobject> |
| <imageobject> |
| <imagedata fileref="images/execution/EpidemicModelComparison.png" scale="50"/> |
| </imageobject> |
| </mediaobject> |
| </para> |
| </section> |
| <section id="Speed_Slider"> |
| <title>Speed Slider</title> |
| <para>A special feature of the modeling tools is the "Speed Slider". This allows you to dynamically "speed up" and "slow down" the model execution. You can see where you've set the current speed in the status bar in the lower left hand corner of the environment.</para> |
| <para>Actually, you're not controlling the speed of model |
| <emphasis role="italic">execution</emphasis> at all. Agent models are almost always constrained not by the time of model execution -- a typical model can execute many thousands of iterations a second -- but by the time it takes to draw visualizations. By updating the views less frequently we allow the model to run at full speed until the next visualization period. This gives the illusion that we're speeding up the model. When we slow the model down, we're inserting a wait period between each model iteration. |
| </para> |
| <para>To increase model execution speed, move the slider to the right. Here we're only updating the model every 56 iterations.</para> |
| <para> |
| <mediaobject> |
| <imageobject> |
| <imagedata fileref="images/execution/SliderRight.png" scale="50"/> |
| </imageobject> |
| </mediaobject> |
| </para> |
| <para>To decrease speed, move the slider to the left. Here, we're pausing between each iteration for 1.65 seconds.</para> |
| <para> |
| <mediaobject> |
| <imageobject> |
| <imagedata fileref="images/execution/SliderLeft.png" scale="50"/> |
| </imageobject> |
| </mediaobject> |
| </para> |
| </section> |
| </section> |
| <section id="The_Active_Model"> |
| <title>The Active Model</title> |
| <para>An important concept in the execution workbench is the "active model". The active model is the model that is controlled by the toolbar buttons. As discussed, the Escape environment supports more than one running model at any given time. The active model is the current "focused" or front-most model, there can be only one active model at any given time and whenever any models are running one of them will be active. To make a model become the active model, you simply select a view of that model or select the model in the model manager (see below). When a model is closed, another model is automatically activated.</para> |
| </section> |
| </section> |
| <section id="Views_2"> |
| <title>Views</title> |
| <para>There are many views specific to the Agent Execution environment that will enable you to explore and control running models.</para> |
| <section id="Properties_2"> |
| <title>Properties</title> |
| <para>If you want to find out more about an agent, show the properties view, and click on agent in the 2D view or any other views that support agent selection such as the tree view.</para> |
| <para> |
| <mediaobject> |
| <imageobject> |
| <imagedata fileref="images/execution/EpidemicModelAgentProperties.png" scale="50"/> |
| </imageobject> |
| </mediaobject> |
| </para> |
| <para>You can experiment with different parameters (settings) for models by then clicking on the model in the Model Manager or by selecting a general mode area such as the gray area enclosing the 2D view.</para> |
| <para> |
| <mediaobject> |
| <imageobject> |
| <imagedata fileref="images/execution/EpidemicModelProperties.png" scale="50"/> |
| </imageobject> |
| </mediaobject> |
| </para> |
| </section> |
| <section id="Agent_Navigator"> |
| <title>Agent Navigator</title> |
| <para>The |
| <emphasis role="bold">Agent Navigator</emphasis> allows you to select agents from a tree view. The agent selection is coordinated across views so that for example when you select an agent in the navigator it is also selected in the 2D view. In the following screenshot you can see an agent selected in both views as well as the properties editor. |
| </para> |
| <para> |
| <mediaobject> |
| <imageobject> |
| <imagedata |