Student project-Kinetic molecule model
Model was written in NetLogo 6.1.0
•
Viewed 132 times
•
Downloaded 8 times
•
Run 0 times
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
globals [step] to setup clear-all create-turtles number-of-molecules [set color 85 set size 2 set shape "dot" setxy -18 + random -3 random 5 - 2] set step 0.05 reset-ticks end to move if step < 0 [user-message "The water molecles cannot be chilled any more (they have stopped)" stop] ask turtles [fd step rt random 360] end to attraction ask turtles [ let thing1 one-of other turtles in-radius 15 if thing1 != nobody [ face thing1 fd 0.01 rt random 360]] end to repulsion ask turtles[ let thing2 one-of other turtles in-radius 1 if thing2 != nobody [face thing2 fd -0.1 rt random 360]] end
There is only one version of this model, created over 4 years ago by lin xiang.
This model does not have any ancestors.
This model does not have any descendants.