studymodel

No preview image

1 collaborator

Default-person Victoria Prd (Author)

Tags

(This model has yet to be categorized with any tags)
Visible to everyone | Changeable by the author
Model was written in NetLogo 7.0.1 • Viewed 3 times • Downloaded 0 times • Run 0 times
Download the 'studymodel' modelDownload this modelEmbed this model

Do you have questions or comments about this model? Ask them here! (You'll first need to log in.)


WHAT IS IT?

(a general understanding of what the model is trying to show or explain)

HOW IT WORKS

(what rules the agents use to create the overall behavior of the model)

HOW TO USE IT

(how to use the model, including a description of each of the items in the Interface tab)

THINGS TO NOTICE

(suggested things for the user to notice while running the model)

THINGS TO TRY

(suggested things for the user to try to do (move sliders, switches, etc.) with the model)

EXTENDING THE MODEL

(suggested things to add or change in the Code tab to make the model more complicated, detailed, accurate, etc.)

NETLOGO FEATURES

(interesting or unusual features of NetLogo that the model uses, particularly in the Code tab; or where workarounds were needed for missing features)

RELATED MODELS

(models in the NetLogo Models Library and elsewhere which are of related interest)

CREDITS AND REFERENCES

(a reference to the model's URL on the web if it has one, as well as any other necessary credits, citations, and links)

Comments and Questions

Please start the discussion about this model! (You'll first need to log in.)

Click to Run Model

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; МОДЕЛЬ: СТАНОВЛЕНИЕ ПОНЯТИЙ ЧЕРЕЗ НАУЧНЫЕ МЕТАФОРЫ
;; Автор: Аэлина + ChatGBT
;; Версия: базовая
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

globals [
  average-understanding    ;; средний уровень понимания в популяции
]

turtles-own [
  understanding             ;; индивидуальный уровень понимания
  openness                  ;; открытость к восприятию новых метафор
]

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; НАСТРОЙКА МИРА
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

to setup
  clear-all
  create-turtles 80 [
    set color blue
    setxy random-xcor random-ycor
    set understanding random-float 0.3      ;; начальное понимание (0–0.3)
    set openness random-float 1.0           ;; склонность воспринимать новое
    set size 1.3
  ]
  set average-understanding mean [understanding] of turtles
  reset-ticks
end 

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; ОСНОВНОЙ ЦИКЛ МОДЕЛИ
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

to go
  ask turtles [
    wander
    interact
    update-color
  ]
  
  set average-understanding mean [understanding] of turtles
  set-current-plot "График роста понимания во времени"
  plot average-understanding
  tick
end 

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; ПРОЦЕДУРЫ ДЕЙСТВИЙ
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

to wander
  rt random 50 - random 50
  fd 1
end 

to interact
  let neighbor one-of other turtles in-radius 2
  if neighbor != nobody [
    let diff [understanding] of neighbor - understanding
    if abs diff > 0.05 [
      ;; чем выше открытость, тем сильнее обучение
      set understanding understanding + (diff * 0.2 * openness)
    ]
  ]
end 

to update-color
  ;; цвет отражает степень понимания: от синего (низкое) к зеленому (высокое)
  set color scale-color green understanding 0 1
end 

There is only one version of this model, created 2 days ago by Victoria Prd.

Attached files

No files

This model does not have any ancestors.

This model does not have any descendants.