Collaboration-atomic-1

No preview image

1 collaborator

Default-person Boris Yarmakhov (Author)

Tags

(This model has yet to be categorized with any tags)
Child of model Collaboration-Wiki
Visible to everyone | Changeable by everyone
Model was written in NetLogo 5.0 • Viewed 569 times • Downloaded 55 times • Run 0 times
Download the 'Collaboration-atomic-1' modelDownload this modelEmbed this model

Do you have questions or comments about this model? Ask them here! (You'll first need to log in.)


WHAT IS IT?

(a general understanding of what the model is trying to show or explain)

HOW IT WORKS

(what rules the agents use to create the overall behavior of the model)

HOW TO USE IT

(how to use the model, including a description of each of the items in the Interface tab)

THINGS TO NOTICE

(suggested things for the user to notice while running the model)

THINGS TO TRY

(suggested things for the user to try to do (move sliders, switches, etc.) with the model)

EXTENDING THE MODEL

(suggested things to add or change in the Code tab to make the model more complicated, detailed, accurate, etc.)

NETLOGO FEATURES

(interesting or unusual features of NetLogo that the model uses, particularly in the Code tab; or where workarounds were needed for missing features)

RELATED MODELS

(models in the NetLogo Models Library and elsewhere which are of related interest)

CREDITS AND REFERENCES

(a reference to the model's URL on the web if it has one, as well as any other necessary credits, citations, and links)

Comments and Questions

Please start the discussion about this model! (You'll first need to log in.)

Click to Run Model

breed [users user] ;
breed [pages page] ;
undirected-link-breed [page-links page-link]

to setup-users
  
    ca ;
    set-default-shape users "person" 
    create-users N-Users
        [
    set size 1.5
    fd 1 + random max-pycor set heading random 360
             ]
    layout-circle users (world-width / 4 )   
end 

to write-pages
  
    create-pages N-pages
    [
    set shape "circle"      
    set size 1.5 
    fd 1 + random max-pycor set heading random 360 
  ]

 ask users [
    ;; create--with is used to make undirected links
    create-page-link-with one-of pages [
      set color blue
 ]
 ]
end 

There is only one version of this model, created over 13 years ago by Boris Yarmakhov.

Attached files

No files

Parent: Collaboration-Wiki

This model does not have any descendants.

Graph of models related to 'Collaboration-atomic-1'