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 341 times • Downloaded 29 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.)


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 about 12 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'