NR_CH_mitosis

NR_CH_mitosis preview image

1 collaborator

Default-person Cindy Huang (Author)

Tags

(This model has yet to be categorized with any tags)
Visible to everyone | Changeable by everyone
Model was written in NetLogo 6.2.1 • Viewed 43 times • Downloaded 8 times • Run 0 times
Download the 'NR_CH_mitosis' 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

to setup
  clear-all
  create-turtles 8
   [
     set size 4
     ask turtle 0 [
        set color red
        set shape "x"
        setxy -4 0
        facexy -4 16
  ]
     ask turtle 1 [
        set color red
        set shape "x"
        setxy 4 0
        facexy 4 -16
  ]
     ask turtle 2 [
        set color red
        set shape "x"
        setxy -4 0
        facexy -4 -16
  ]
     ask turtle 3 [
        set color red
        set shape "x"
        setxy 4 0
        facexy 4 16
  ]
     ask turtle 4 [
        set color red
        set shape "x"
        setxy 0 0
        facexy 0 16
  ]
     ask turtle 5 [
        set color red
        set shape "x"
        setxy 0 0
        facexy 0 -16
  ]
      ask turtle 6 [
        setxy 0 14
        facexy 0 16
        set color blue
        set shape "dot"
  ]
      ask turtle 7 [
        setxy 0 -14
        facexy 0 -16
        set color blue
        set shape "dot"
  ]
      ask turtle 0 [create-link-with turtle 7]
      ask turtle 1 [create-link-with turtle 6]
      ask turtle 2 [create-link-with turtle 6]
      ask turtle 3 [create-link-with turtle 7]
      ask turtle 4 [create-link-with turtle 7]
      ask turtle 5 [create-link-with turtle 6]
      ask link 0 7 [ set color black ]
      ask link 1 6 [ set color black ]
      ask link 2 6 [ set color black ]
      ask link 3 7 [ set color black ]
      ask link 4 7 [ set color black ]
      ask link 5 6 [ set color black ]
   ]
  reset-ticks
end 

to go
 ask link 0 7 [ set color white ]
 ask link 1 6 [ set color white ]
 ask link 2 6 [ set color white ]
 ask link 3 7 [ set color white ]
 ask link 4 7 [ set color white ]
 ask link 5 6 [ set color white ]
 ask turtles with [color = red] [
  fd -8
  ]
 tick
end 

There is only one version of this model, created over 2 years ago by Cindy Huang.

Attached files

File Type Description Last updated
NR_CH_mitosis.png preview Preview for 'NR_CH_mitosis' over 2 years ago, by Cindy Huang Download

This model does not have any ancestors.

This model does not have any descendants.