Advertisement
Guest User

Untitled

a guest
Oct 20th, 2019
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. to go
  2. ; agents movement
  3. move-comiloes
  4. move-limpadores
  5. move-medicos
  6.  
  7. ; Check turtles energy
  8. ask turtles
  9. [
  10. if energia <= 0 [ die ]
  11. ]
  12.  
  13. ; stop if all turtles are dead
  14. if count turtles = 0 [
  15. file
  16. stop
  17. ]
  18.  
  19. if ticks > 50000 [
  20. file
  21. stop
  22. ]
  23.  
  24. ; tick tock
  25. tick
  26. end
  27.  
  28.  
  29. to file
  30. ifelse file-exists? "EXP_A_BASE.csv"
  31. [
  32. file-open "EXP_A_BASE.csv"
  33. file-print (list ";" ticks ";" count limpadores ";" count comiloes ";" residuos-accumulated ";" residuos-accumulated-cells ";")
  34. file-close
  35. ]
  36. [
  37. file-open "EXP_A_BASE.csv"
  38. file-print (";Ticks;Limpadores;Comiloes;Residuos Acumulados;Celulas Residuos Acumulados")
  39. file-print (list ";" ticks ";" count limpadores ";" count comiloes ";" residuos-accumulated ";" residuos-accumulated-cells ";")
  40. file-close
  41. ]
  42. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement