turtles-go-brrrrr

turtles-go-brrrrr preview image

1 collaborator

Default-person mason lack (Author)

Tags

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

turtles-own [
  vel
  acc
  jerk
]

to make-turtle [c x y v a j]
  create-turtles 1 [
    set color c
    setxy x y
    set heading 90
    set vel v
    set acc a
    set jerk j
  ]
end 

to set-up
  clear-all
  reset-ticks

  make-turtle blue  -10  5 1    0     0
  make-turtle green -10  0 0    0.1   0
  make-turtle red   -10 -5 0    0     0.001
end 

to go

  ask turtles [
    set acc acc + jerk
    set vel vel + acc
    fd vel
  ]

  tick
end 

There is only one version of this model, created 2 days ago by mason lack.

Attached files

File Type Description Last updated
turtles-go-brrrrr.png preview Preview for 'turtles-go-brrrrr' 2 days ago, by mason lack Download

This model does not have any ancestors.

This model does not have any descendants.