User Tools

Site Tools


public:e-217-prog-2010-1:thorisson-simulation-2

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
public:e-217-prog-2010-1:thorisson-simulation-2 [2010/03/24 19:26] thorissonpublic:e-217-prog-2010-1:thorisson-simulation-2 [2024/04/29 13:33] (current) – external edit 127.0.0.1
Line 1: Line 1:
 ===== E-217-PROG-2010-1: Simulation 2 Thorisson Lecture Notes===== ===== E-217-PROG-2010-1: Simulation 2 Thorisson Lecture Notes=====
 +[[http://cadia.ru.is/wiki/public:e-217-prog-2010-1:thorisson-simulation-1|Thórisson Lecture 1]]
 +
 +\\
 +\\
 +\\
  
 === More Concepts === === More Concepts ===
Line 36: Line 41:
 === Creating a Model=== === Creating a Model===
 | Determine the scope  | What set of questions would we want to be able to answer with our simulation? What are the most extreme conditions that the system should be able to take? What is a typical set of questions we will study?  | | Determine the scope  | What set of questions would we want to be able to answer with our simulation? What are the most extreme conditions that the system should be able to take? What is a typical set of questions we will study?  |
-| Simplification  | All simulations select certain parts to be included and some parts to be excludedno complete simulation exists of any natural phenomenon -- +| Simplification  | All simulations select certain parts to be included and some parts to be excluded (no complete simulation exists of any natural phenomenon -- it couldn't, because everything in the world can (potentially) affect anything else). \\ "...simplifications, or abstractions, are a necessary part of the modeling of nature. Without them, the models would mimic reality instead of explaining it." \\ — Przemyslaw Prusinkiewicz  |
 | Define parameters  | Decide which variables should be independent and dependent; deciding on how to represent these in variables in the selected programming language.  | | Define parameters  | Decide which variables should be independent and dependent; deciding on how to represent these in variables in the selected programming language.  |
 | Define processes  | What are the operations we want to manipulate the parameters? What are their inputs and outputs?  | | Define processes  | What are the operations we want to manipulate the parameters? What are their inputs and outputs?  |
Line 52: Line 57:
  
 === Implementing the Model as a Simulation === === Implementing the Model as a Simulation ===
-| Selecting a programming language     +| Selecting a programming language   Main choice is between a compiled language vs. interpreted. 
-| Programming   +| Complied (ísl. þýdd) language  | A compiler is used to compile into machine code first, once. The machine code then runs on the CPU. \\ Pros: Runs fast. Cons: Less flexible than interpreted code, harder to develop incrementally. 
-| Incremental development   |+| Interpreted (ísl. túlkað) language  | An interpreter converts each program instruction as the program is being run. \\ Pros: More flexible runtime execution. Easier to develop incrementally.  Cons: Runs 10x slower than compiled code.  
 +| Programming Now you know what this is!  
 +| Incremental development By incremental development a simulation is built piece by piece, module by module. There are many ways to do this -- an interpreted programming language allows developers to do this flexibly; some systems exist to help with the process.  | 
 + 
 +\\ 
 +\\ 
 +\\ 
 +\\ 
 +\\ 
 +\\ 
 +\\ 
 +\\ 
 +\\ 
 + 
 +=== Simulation Creation Process === 
 + 
 +{{:public:e-217-prog-2010-1:simulationprocess.png?500|Simluation Process}} \\ 
 +(source: Nigel Gilbert (2005). Simluation for the Social Scientist, p. 13. New York: Open University Press.) 
  
 \\ \\
Line 66: Line 89:
  
 === Types of Simulation === === Types of Simulation ===
-{{:public:e-217-prog-2010-1:typesofsimulation.png|Types of Simluation}}+{{:public:e-217-prog-2010-1:typesofsimulation.png?600|Types of Simluation}}\\ 
 +(source: Nigel Gilbert (2005). Simluation for the Social Scientist, p. 13. New York: Open University Press.) 
 + 
 +\\ 
 +\\ 
 +\\
  
-| Cellular Automata  | A.k.a. CA \\ Grid-based computing system where each cell can have two or more states and looks at its neighbors to determine its next state. [[public:e-217-prog-2010-1:thorisson-simulation-2:CA page?350|CA]]  |+| Cellular Automata  | A.k.a. CA \\ Grid-based computing system where each cell can have two or more states and looks at its neighbors to determine its next state. [[public:e-217-prog-2010-1:thorisson-simulation-2:CA page|CA]]  |
 | Agent-oriented  | A.k.a. Multi-agent simluations. \\ Use the concept of semi-autonomous programs that interact with each other. Compared to e.g. the cells in CAs each agent is typically very complex (think of it as a full computer program executable).  | | Agent-oriented  | A.k.a. Multi-agent simluations. \\ Use the concept of semi-autonomous programs that interact with each other. Compared to e.g. the cells in CAs each agent is typically very complex (think of it as a full computer program executable).  |
  
Line 80: Line 108:
 \\ \\
 \\ \\
 +
 +=== Features of Agent-Based Simulation ===
 +| Main component | The "agent" - a semi-autonomous piece of code.  |
 +| Autonomy  | Agents are considered stand-alone entities.  |
 +| Interaction  | A.k.a. "social ability" - agents can interact.  |
 +| Reactivity   | Agents react to incoming data.  |
 +| Proactivity  | Agents "plot" on their own.  |
 +| Abstraction  | An agent in an agent-based simulation can stand for any acting entity - it is assumed to map to some real (or imagined) phenomenon with one or more of the above features. \\ Example: An agent can stand for a whole consumer market or it can stand for a single human consumer.  |
 +
 +\\
 +\\
 +\\
 +\\
 +\\
 +\\
 +\\
 +\\
 +
 +=== Examples of NetLogo Simulation Code ===
 +
 +{{:public:e-217-prog-2010-1:netlogo-toact.png?500|NetLogo-ToAct}} \\
 +(source: Nigel Gilbert (2005). Simluation for the Social Scientist, p. 189. New York: Open University Press.)
 +
 +\\
 +\\
 +\\
 +\\
 +
 +{{:public:e-217-prog-2010-1:netlogo-toshop.png?500|NetLogo-ToShop}} \\
 +(source: Nigel Gilbert (2005). Simluation for the Social Scientist, p. 186. New York: Open University Press.)
 +
 +\\
 +\\
 +\\
 +\\
 +\\
 +\\
 +\\
 +
  
 EOF EOF
/var/www/cadia.ru.is/wiki/data/attic/public/e-217-prog-2010-1/thorisson-simulation-2.1269458786.txt.gz · Last modified: 2024/04/29 13:32 (external edit)

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki