Cancer 2
No preview image
Model was written in NetLogo 5.3.1
•
Viewed 397 times
•
Downloaded 26 times
•
Run 0 times
Do you have questions or comments about this model? Ask them here! (You'll first need to log in.)
Info tab cannot be displayed because of an encoding error
Comments and Questions
Click to Run Model
breed[cancers cancer] ;malignant cells breed[normals normal] ;normal cells to setup Clear-all ask patches [ set pcolor gray ] set-default-shape cancers "pentagon" ;; mailgnant cells create-cancers initial-number-cancers ;; create the malignant cells, [ set color red set size 1 ;; malignant cell setxy random-xcor random-ycor ] set-default-shape normals"square" ;;normal cells create-normals initial-number-normals ;; create the normal cells, [ set color blue set size 1 setxy random-xcor random-ycor ] reset-ticks end to go if not any? cancers [stop] if ticks = 20 [stop] ;; the computational power of my PC is not enogh to continue with more tics ask cancers [ ifelse any? turtles-on neighbors4 [hatch 1 rt random-float 360 fd 1 ] [die] ] ask normals [ if not any? normals-on neighbors4 [die] ] tick end
There is only one version of this model, created over 7 years ago by Boris Itkin.
Attached files
No files
This model does not have any ancestors.
This model does not have any descendants.
Cosimo Leuci
balancing_cancer2
Hi Boris! Very interesting project. I've seen you are looking for collaboration: if you like I could introduce some code lines to get a more balanced dynamic of the life cycle cells populations.
Posted almost 7 years ago