geopro:pedro:swarm
Diferenças
Aqui você vê as diferenças entre duas revisões dessa página.
| Ambos lados da revisão anteriorRevisão anteriorPróxima revisão | Revisão anterior | ||
| geopro:pedro:swarm [2007/07/07 04:25] – pedro | geopro:pedro:swarm [2007/07/17 19:50] (atual) – pedro | ||
|---|---|---|---|
| Linha 4: | Linha 4: | ||
| modeling approaches [and] provides object oriented libraries of reusable components for building models and analyzing, | modeling approaches [and] provides object oriented libraries of reusable components for building models and analyzing, | ||
| displaying, and controlling experiments on those models.// | displaying, and controlling experiments on those models.// | ||
| + | |||
| + | \\ | ||
| {{ http:// | {{ http:// | ||
| - | |||
| - | \\ | ||
| ^**Homepage** | ^**Homepage** | ||
| ^**Origin** | ^**Origin** | ||
| - | ^**Year** | + | ^**Year** |
| ^**Version** | ^**Version** | ||
| ^**License** | ^**License** | ||
| Linha 18: | Linha 18: | ||
| \\ | \\ | ||
| - | There is a GIS extension of swarm called [[http:// | + | There is a GIS extension of swarm called [[http:// |
| + | details and no source code. Basically it can load data exported from GIS to files in some format. | ||
| + | From the floatspace example: //A datafile object [...] reads in GIS data and assigns a certain data | ||
| + | value of a geographical coordinate to a cell object residing at the corresponding coordinate. A cell, therefore, has | ||
| + | variables of these geographical data and whether any agents are staying at its coordinate or not.//) | ||
| How to compile swarm in ubuntu [[http:// | How to compile swarm in ubuntu [[http:// | ||
| - | =====Swarm User Guide===== | + | [[http:// |
| - | Available | + | |
| - | //Most swarm applications have a structure that roughly goes like this. First, a top level - often called the " | + | \\ |
| + | ==== The Swarm Simulation System: A Toolkit for Building Multi-agent Simulations==== | ||
| + | |N. Minar, R. Burkhart, C. Langton, M. Askenazi, | [[http:// | ||
| + | \\ | ||
| - | //Current priorities | + | **Abstract: |
| + | systems. In the Swarm system the basic unit of simulation is the swarm, a collection of agents executing a schedule of actions. | ||
| + | Swarm supports hierarchical modeling approaches whereby agents can be composed | ||
| + | structures. Swarm provides object oriented libraries of reusable components | ||
| + | controlling experiments on those models. | ||
| - | One agent always inherits the class SwarmObject, | + | \\ |
| - | @interface Heatbug: SwarmObject | + | [...] collection of independent agents interacting via discrete events. [...] There are no domain |
| - | { | + | specific requirements such as particular |
| - | double unhappiness; | + | Swarm simulations have been written |
| - | int x, y; // my spatial | + | |
| - | HeatValue idealTemperature; | + | |
| - | HeatValue outputHeat; | + | |
| - | float randomMoveProbability; | + | |
| - | + | ||
| - | id < | + | |
| - | int worldXSize, worldYSize; | + | |
| - | | + | |
| - | Color bugColor; | + | |
| - | } | + | |
| + | The basic unit of a Swarm simulation is the agent. An agent is any actor in a system, | ||
| + | any entity that can generate events that affect itself and other agents. Simulations consist | ||
| + | of groups of many interacting agents. [...] Simulation of discrete interactions between | ||
| + | agents stands in contrast to continuous system simulations, | ||
| + | phenomena are quantities in a system of coupled equations. | ||
| - | setX: (int)inX Y: (int)inY | + | In addition to being containers for agents, swarms can themselves be agents. [...] |
| - | { | + | an agent can also itself be a swarm: a collection of objects and a schedule of actions. |
| - | x = inX; | + | In this case, the agent' |
| - | y = inY; | + | its swarm. Hierarchical models can be built by nesting multiple swarms. |
| - | [world putObject: self atX: x Y: y]; // yikes! | + | |
| - | | + | |
| - | } | + | |
| - | @interface HeatCell: SwarmObject | + | Swarm has the following components: |
| - | | + | * **SwarmObject**: All agent classes inherit behavior from it. SwarmObject defines the basic interface for memory management as well as the support for probes. |
| - | int x; | + | |
| - | int y; | + | * **Activity**: |
| - | | + | |
| + | Ambiguity can occur in partial orders and time-based schedules as a result of two or | ||
| + | more actions scheduled at the same time or in the same relative order. Swarm resolves | ||
| + | such ambiguity by defining a " | ||
| + | execute a group of actions that are defined at the same time. Options include running the | ||
| + | group in an arbitrary, fixed order running the group in a random order every time or | ||
| + | actually running each action concurrently, | ||
| + | The explicit notation of a concurrent group type helps to expose and remove any hidden | ||
| + | assumptions in the time structure of a model. | ||
| + | __TerraME: | ||
| + | |||
| + | |||
| + | =====Swarm User Guide===== | ||
| + | Available [[http:// | ||
| + | |||
| + | //Most swarm applications have a structure that roughly goes like this. First, a top level - often called the " | ||
| + | created. That layer creates screen displays and it also creates the level below it, which is called the "model swarm" | ||
| + | swarm in turn creates the individual agents, schedules their activities, collects information about them and relays that information | ||
| + | when the observer swarm needs it. This terminology is not required by Swarm, but its use does facilitate it.// | ||
| + | |||
| + | //Current priorities for the Swarm team [...] include the further generalization of Swarm to be useful on a broader array of platforms | ||
| + | and in conjunction with additional computer languages. Prototype XML and Scheme layers for Swarm have been tested, for example.// | ||
| + | |||
| + | One agent always inherits the class SwarmObject, | ||
| + | |||
| + | @interface Person: SwarmObject { | ||
| + | int x, y; | ||
| + | int xsize, | ||
| + | int myColor; | ||
| + | int unhappy; | ||
| + | int nhoodType; | ||
| + | int radius; | ||
| + | int idnumber; | ||
| + | double myTolerance, | ||
| + | | ||
| + | BOOL edgeWrap; | ||
| + | BOOL moved; | ||
| + | SchellingWorld * myWorld; | ||
| + | } | ||
| When those objects are no longer needed, the program can send that object the drop message, which removes it from memory. | When those objects are no longer needed, the program can send that object the drop message, which removes it from memory. | ||
| Linha 67: | Linha 107: | ||
| We define the scheduler of agents inside of them, and each agent has a buildActions method. | We define the scheduler of agents inside of them, and each agent has a buildActions method. | ||
| - | [...] //when the observer swarm needs a list of all the agents in a simulation in order to create a graph, the model swarm should have a method, such as getAgentList, | + | //[...] when the observer swarm needs a list of all the agents in a simulation in order to create a graph, the model swarm |
| + | should have a method, such as getAgentList, | ||
| + | The ModelSwarm controls the application, | ||
| - | buildActions | + | |
| + | // [...] | ||
| + | id < | ||
| + | id world; | ||
| + | } | ||
| + | |||
| + | // functions of the class | ||
| + | // [...] | ||
| + | stepThroughList; | ||
| + | getAgentList; | ||
| + | |||
| + | The ModelSwarm defines a scheduler of actions it will execute, and it sends " | ||
| + | |||
| + | | ||
| { | { | ||
| - | modelSchedule=[Schedule createBegin: | + | |
| - | [modelSchedule setRepeatInterval: 1]; | + | id modelActions = [ActionGroup create: self]; |
| - | | + | [modelActions createActionTo: |
| | | ||
| - | | + | |
| + | if (synchronous) | ||
| + | [modelActions | ||
| | | ||
| - | | + | modelSchedule = [Schedule createBegin: |
| + | [modelSchedule setRepeatInterval: | ||
| + | modelSchedule = [modelSchedule createEnd]; | ||
| + | |||
| + | [modelSchedule at: 0 createAction: | ||
| + | | ||
| } | } | ||
| - | [modelSchedule at: 0 createActionForEach: | ||
| - | ===== Examples available at swarm wiki===== | + | ===== space.h===== |
| - | + | ||
| - | [[http:// | + | |
| There is a class [[http:// | There is a class [[http:// | ||
| Linha 95: | Linha 154: | ||
| continuous coordinates, | continuous coordinates, | ||
| - | Everything related to the space is up to the programmer. | + | From the paper below: //The current |
| - | For example, in the implementation | + | a suggestion of the kinds of environments a model could use: in the future, we plan to have |
| - | of going through the neighborhood (/ | + | spaces with continuous values and dynamics defined by differential equations. Spaces with |
| + | other topologies are also crucial: three dimensions, non-discrete coordinates, | ||
| + | graph structures are all needed by applications.// | ||
| + | The library space provides 9 classes: | ||
| + | * GridData: basic class. getObjectAt (an agent), getValueAt (an integer value) | ||
| + | * Discrete2d: | ||
| + | * DblBuffer2d: | ||
| + | * Ca2d: abstract protocol for cellular automata | ||
| + | * Value2dDisplay: | ||
| + | * ConwayLife2d: | ||
| + | * Diffuse2d: 2d difussion with evaporation | ||
| + | * Grid2d: A 2d container class for agents. It gets most of its behaviour from Discrete2d, [and] check that you don't overwrite things by accident. Only one object can be stored at a site, no boundary conditions are implied, etc. | ||
| + | * Object2dDisplay: | ||
| + | * Int2dFiler: (deprecated) save the state of any Discrete2d: object (or a subclass thereof) to a specified file. | ||
| + | |||
| + | |||
| + | |||
| + | ===== Examples available at swarm wiki===== | ||
| + | |||
| + | [[http:// | ||
| + | |||
| + | Despite the representation of the space (always a grid) and its limited functionality, | ||
| + | the programmer. For example, in the implementation of Schelling' | ||
| + | of going through the neighborhood (/ | ||
| for(i = -radius; i< radius + 1; i++) | for(i = -radius; i< radius + 1; i++) | ||
| Linha 126: | Linha 208: | ||
| } | } | ||
| + | //In this edition, there is also some trivial clarification/ | ||
| + | agents and the SchellingWorld. | ||
| + | " | ||
| + | Nhood2dCounters, | ||
| + | just tells SchellingWorld to remove it, or add itself. In Person.m, for example:// | ||
| - | and the movement is codified by | + | [myWorld findEmptyLocationX: |
| [myWorld removeObject: | [myWorld removeObject: | ||
| [myWorld addObject: self atX: newX Y: newY]; | [myWorld addObject: self atX: newX Y: newY]; | ||
| - | | ||
| - | x = newX; | ||
| - | y = newY; | ||
| - | From this we can see that Swarm works with a geometrical (and not topological) space (//is that useful?//). | + | //The SchellingWorld does the bookwork of putting agents in and out of objectGrid and also updating the |
| - | Note that this // | + | Nhood2dCounter objects.// But the functions of SchellingWorld are implemented by the programmer. |
| + | |||
| + | Note that this // | ||
| + | When an agent registers itself in some spatial location, it can be referred by any other agent that wants to | ||
| + | interact with someone in that cell. | ||
| + | |||
| + | The next example shows how an agent moves in the space. It is from the example heatbugs: | ||
| rand_move: p | rand_move: p | ||
| Linha 150: | Linha 239: | ||
| } | } | ||
| + | __TerraME: | ||
| + | instead of searching the whole cellular space. We would need functions such as " | ||
| + | some support to randomness. | ||
| - | =====Papers===== | + | The creation of a group of agents, by a Model Swarm. Note that the model creates and puts it in the world. |
| - | ==== The Swarm Simulation System: A Toolkit | + | |
| - | |N. Minar, R. Burkhart, C. Langton, M. Askenazi, | [[http:// | + | { |
| + | StupidBug* stupidBug | ||
| + | |||
| + | stupidBug | ||
| + | | ||
| + | [stupidBug setRandPosition]; | ||
| + | |||
| + | | ||
| + | } | ||
| - | //Swarm is a multi-agent software platform for the simulation | + | __TerraME__: |
| - | systems. In the Swarm system | + | this moment, each agent chooses his position/ |
| - | Swarm supports hierarchical modeling approaches whereby agents can be composed of swarms of other agents | + | |
| - | structures. Swarm provides object oriented libraries of reusable components for building models and **analyzing, | + | |
| - | controlling experiments on those models**.// | + | |
| - | //[...] collection of independent agents interacting via discrete events. [...] There are no domain | ||
| - | specific requirements such as particular spatial environments, | ||
| - | Swarm simulations have been written for such diverse areas [...]// | ||
| - | //The basic unit of a Swarm simulation is the agent. An agent is any actor in a system, | + | =====TODO===== |
| - | any entity that can generate events that affect itself and other agents. Simulations consist | + | |
| - | of groups of many interacting agents. [...] Simulation of discrete interactions between | + | Some applications using swarm: |
| - | agents stands in contrast to continuous system simulations, | + | |
| - | phenomena are quantities in a system of coupled equations.// | + | |
| - | //In addition to being containers for agents, swarms can themselves be agents. [...] | + | * Schelhorn, T., O' |
| - | an agent can also itself be a swarm: a collection of objects | + | * Haklay, M., O' |
| - | In this case, the agent's behavior is defined by the emergent phenomena of the agents inside | + | * Batty, M., Desyllas, J. and Duxbury, E. (2003), 'Safety in Numbers? Modelling Crowds and Designing Control for the Notting Hill Carnival', |
| - | its swarm. Hierarchical models can be built by nesting multiple swarms,// as shown in the | + | |
| - | figure below. | + | Swarm learning curve: |
| + | |||
| + | * Najlis, R., Janssen, M.A. and Parker, D.C. (2001), ' | ||
geopro/pedro/swarm.1183782315.txt.gz · Última modificação: 2007/07/07 04:25 por pedro
