19

Prezentace aplikace PowerPointkris.uniza.sk/janota/dokumenty/TST05-Janota-full.pdf · 7 NetLogo features ... things worth of user’s interest, unusual features of the model etc

  • Upload
    others

  • View
    2

  • Download
    0

Embed Size (px)

Citation preview

Page 1: Prezentace aplikace PowerPointkris.uniza.sk/janota/dokumenty/TST05-Janota-full.pdf · 7 NetLogo features ... things worth of user’s interest, unusual features of the model etc
Page 2: Prezentace aplikace PowerPointkris.uniza.sk/janota/dokumenty/TST05-Janota-full.pdf · 7 NetLogo features ... things worth of user’s interest, unusual features of the model etc

TST’053-5 Nov 2005

MMULTIULTI--AGENTAGENT APPROACHAPPROACHTOTO TTRAFFICRAFFIC SIMULATIONSIMULATION ININNETLOGO ENVIRONMENT NETLOGO ENVIRONMENT ––LEVEL CROSSING MODELLEVEL CROSSING MODEL

University of Žilina (Slovak Republic)Faculty of Electrical Engineering

Department of Control & Information Systems

Aleš Janota – Karol Rástočný – Jiří Zahradník{ ales.janota | karol.rastocny | jiri.zahradnik }@fel.utc.sk

2

Page 3: Prezentace aplikace PowerPointkris.uniza.sk/janota/dokumenty/TST05-Janota-full.pdf · 7 NetLogo features ... things worth of user’s interest, unusual features of the model etc

Structure of the presentation

1. Introduction2. Brief introduction to the NetLogo

environment(what is it?, availability, main screens, menus and control/indication elements, ....)

3. Description of „Level Crossing“ Model(modelled functions, used simplifications, ....)

4. Practical demonstration of the model running

5. Conclusions

TST ’ 05 – Poland / 3-5 November 2005 3

Page 4: Prezentace aplikace PowerPointkris.uniza.sk/janota/dokumenty/TST05-Janota-full.pdf · 7 NetLogo features ... things worth of user’s interest, unusual features of the model etc

What is NetLogo?

• A programmable multi-agent modelling environment for simulating natural and social phenomena

Net Logo a dialect of the „Logo“ language

(LISP family)

decentralized, interconnected

nature of phenomena

• Written entirely in Java (version 1.4.1)

• Current version (October 2005): 3.0

• Runs on all major platforms (MacOS, Windows, Linux, et al), as a standalone application; individual models can be run as Java applets inside a web browser.

TST ’ 05 – Poland / 3-5 November 2005 4

Page 5: Prezentace aplikace PowerPointkris.uniza.sk/janota/dokumenty/TST05-Janota-full.pdf · 7 NetLogo features ... things worth of user’s interest, unusual features of the model etc

Availability

• NetLogo has been under development since 1999

• Created by Northwestern University's Center for Connected Learning and Computer-Based Modeling

• Freeware: http://ccl.northwestern.edu/netlogo/

• Comes packaged with extensive documentation and tutorials and a large collection of sample models (a library with over 150 sample models) for easy access

TST ’ 05 – Poland / 3-5 November 2005 5

Page 6: Prezentace aplikace PowerPointkris.uniza.sk/janota/dokumenty/TST05-Janota-full.pdf · 7 NetLogo features ... things worth of user’s interest, unusual features of the model etc

Main window: Menu + 3 Tabs

TST ’ 05 – Poland / 3-5 November 2005 6

Page 7: Prezentace aplikace PowerPointkris.uniza.sk/janota/dokumenty/TST05-Janota-full.pdf · 7 NetLogo features ... things worth of user’s interest, unusual features of the model etc

Agents: Turtles, Patches, ObserverNetLogo’s World: 2D (3D)

TST ’ 05 – Poland / 3-5 November 2005 7

Screen Edge Y

Screen Edge Y

Example of a turtle (car)

(0,0)

(-3,-2) (3,-2)

(-3,2) (3,2)

(pxcor, pycor)

(xcor, ycor)

A grid of patches

Coordinates

Page 8: Prezentace aplikace PowerPointkris.uniza.sk/janota/dokumenty/TST05-Janota-full.pdf · 7 NetLogo features ... things worth of user’s interest, unusual features of the model etc

„Interface“ Tab - Structure

By default:screen-edge-x = screen-edge-y = 17,i.e. 35 x 35 = 1225 patches total

Setting sizeSimulation speed

Turtles shapeFreezing display

Interface toolbar

For giving immediate commands

TST ’ 05 – Poland / 3-5 November 2005 8

Page 9: Prezentace aplikace PowerPointkris.uniza.sk/janota/dokumenty/TST05-Janota-full.pdf · 7 NetLogo features ... things worth of user’s interest, unusual features of the model etc

„Interface“ Tab – Toolbar

Control items Indication items

TST ’ 05 – Poland / 3-5 November 2005 9

Page 10: Prezentace aplikace PowerPointkris.uniza.sk/janota/dokumenty/TST05-Janota-full.pdf · 7 NetLogo features ... things worth of user’s interest, unusual features of the model etc

„Information“ Tab

1 What is it? ... what the model is trying to show or explain 2 How it works? ... what rules the agents use to create the overall behaviour of the model 3 How to use it ... how to use the model, including a description of items in the interface tab 4 Things to notice ... some ideas for the user to notice while running the model 5 Things to try ... what could the user try to do (move sliders, switches etc.) with the model 6 Extending the model ... some ideas to add or change in the procedures tab to change the model 7 NetLogo features ... things worth of user’s interest, unusual features of the model etc. 8 Related models ... the names of models which are of related interest 9 Credits and references ... e.g. reference to the model‘s URL on the web

1 What is it? ... what the model is trying to show or explain 2 How it works? ... what rules the agents use to create the overall behaviour of the model 3 How to use it ... how to use the model, including a description of items in the interface tab 4 Things to notice ... some ideas for the user to notice while running the model 5 Things to try ... what could the user try to do (move sliders, switches etc.) with the model 6 Extending the model ... some ideas to add or change in the procedures tab to change the model 7 NetLogo features ... things worth of user’s interest, unusual features of the model etc. 8 Related models ... the names of models which are of related interest 9 Credits and references ... e.g. reference to the model‘s URL on the web

Recommended convention

TST ’ 05 – Poland / 3-5 November 2005 10

Page 11: Prezentace aplikace PowerPointkris.uniza.sk/janota/dokumenty/TST05-Janota-full.pdf · 7 NetLogo features ... things worth of user’s interest, unusual features of the model etc

„Procedures“ Tab

A working area where source code of the model is placed

Commands Reporterssaying what agents should do

performing operations and informing commands or another reporters about

results

Basic built-in functions

Primitives User defined functionsProcedures

TST ’ 05 – Poland / 3-5 November 2005 11

Page 12: Prezentace aplikace PowerPointkris.uniza.sk/janota/dokumenty/TST05-Janota-full.pdf · 7 NetLogo features ... things worth of user’s interest, unusual features of the model etc

Known traffic simulation models

TST ’ 05 – Poland / 3-5 November 2005 12

[4] WILENSKY U., NetLogo Traffic Basic model. http://ccl.northwestern.edu/netlogo/models/TrafficBasic. Center for Connected Learning and Computer-Based Modeling, Northwestern University, Evanston, IL, 1997.

[5] http://www.cs.northwestern.edu/~ade285/Traffic%20Basicnew2.nlogo [6] WILENSKY U., NetLogo Traffic2 Lanes model.

http://ccl.northwestern.edu/netlogo/models/Traffic2Lanes. Center for Connected Learning and Computer-Based Modeling, Northwestern University, Evanston, IL, 1998.

[7] http://sps.nus.edu.sg/~marimuth/Lab2/traffic.nlogo [8] http://web.cz3.nus.edu.sg/~chenk/gem2503_3/project/Group7/trafficMode.nlogo [9] WILENSKY U., NetLogo Gridlock model.

http://ccl.northwestern.edu/netlogo/models/Gridlock. Center for Connected Learning andComputer-Based Modeling, Northwestern University, Evanston, IL, 2002.

[10] WILENSKY U., STROUP, W. NetLogo HubNet Gridlock model. http://ccl.northwestern.edu/netlogo/models/HubNetGridlock. Center for Connected Learning and Computer-Based Modeling, Northwestern University, Evanston, IL, 2002.

[11] DRESNER K., STONE, P. Multiagent Traffic Management: A Reservation-Based Intersection Control Mechanism. In Proceedings of the Third International Joint Conference on Autonomous Agents and MultiAgent Systems, p. 530--537, ACM. 2004

[11] [8] [7]

[6]

[5]

Page 13: Prezentace aplikace PowerPointkris.uniza.sk/janota/dokumenty/TST05-Janota-full.pdf · 7 NetLogo features ... things worth of user’s interest, unusual features of the model etc

Model of Level Crossing Operation

Page 14: Prezentace aplikace PowerPointkris.uniza.sk/janota/dokumenty/TST05-Janota-full.pdf · 7 NetLogo features ... things worth of user’s interest, unusual features of the model etc

TST ’ 05 – Poland / 3-5 November 2005 14

Modelled features

• Setting a time for generating new vehicles• Setting max. velocity of road vehicles • Setting velocity of the train• Setting a number of train units (up to 3)• Installing a traffic sign for speed limitation (20 km/h), for

each direction separately• Setting a variable time period to closing barriers (the value

depends on the current speed of the train approaching the level crossing - simplified to two stages <=/> 40 km/h)

Controlled features:

Monitored features:• Total cars passed (for each direction and totally)• Car throughput (for each direction and totally)• Current number of cars on the screen• Plot „Throughput vs time“; elapsed time

Page 15: Prezentace aplikace PowerPointkris.uniza.sk/janota/dokumenty/TST05-Janota-full.pdf · 7 NetLogo features ... things worth of user’s interest, unusual features of the model etc

Train running through the level crossing1 2 3 4

Approaching section

Detection section

Annulationsection

TST ’ 05 – Poland / 3-5 November 2005 15

Page 16: Prezentace aplikace PowerPointkris.uniza.sk/janota/dokumenty/TST05-Janota-full.pdf · 7 NetLogo features ... things worth of user’s interest, unusual features of the model etc

TST ’ 05 – Poland / 3-5 November 2005 16

Turtle shapes

Page 17: Prezentace aplikace PowerPointkris.uniza.sk/janota/dokumenty/TST05-Janota-full.pdf · 7 NetLogo features ... things worth of user’s interest, unusual features of the model etc

Practical presentation

NetLogo 3.0.lnk

TST ’ 05 – Poland / 3-5 November 2005 17

Page 18: Prezentace aplikace PowerPointkris.uniza.sk/janota/dokumenty/TST05-Janota-full.pdf · 7 NetLogo features ... things worth of user’s interest, unusual features of the model etc

Conclusions

• Motivation for writing and presenting this paper• Existing traffic models mapped and surveyed• The level crossing model created without

pretension to model exactly and strictly all functions of the level crossing installation (i.e. with many simplifications!!! warning lights displayed in a non-standard way, train is running only in one direction, the barriers will not open if train is not coming for a longer time, there is no emergency control of barriers here etc. etc)

• Many other NetLogo features being worthy of mention (HubNet simulations based on a client-server architecture, System Dynamics modeller, 3D modelling, ...)

TST ’ 05 – Poland / 3-5 November 2005 18

Page 19: Prezentace aplikace PowerPointkris.uniza.sk/janota/dokumenty/TST05-Janota-full.pdf · 7 NetLogo features ... things worth of user’s interest, unusual features of the model etc

Thank you for your attention .....

This work has been partially supported by the Grant Agency of the Slovak Republic VEGA, grant No. 1/1044/04 “Theoretical Foundations for Implementing e-Safety Principles into Intelligent Transportation Systems” and partially by the institutional research project No. 07/604/2005 “Transport telematics and tools to improve its quality” solved at the Faculty of Electrical Engineering, University of Žilina.