Soccer Simulation

Материал из Поле цифровой дидактики


Описание модели Модель симуляции футбола
Область знаний NetSci, Спорт, Игра
Веб-страница - ссылка на модель https://medium.com/@arianghmgh/create-multi-agent-base-system-with-netlogo-soccer-simulator-4db44e950625#id token=eyJhbGciOiJSUzI1NiIsImtpZCI6IjFkYzBmMTcyZThkNmVmMzgyZDZkM2EyMzFmNmMxOTdkZDY4Y2U1ZWYiLCJ0eXAiOiJKV1QifQ.eyJpc3MiOiJodHRwczovL2FjY291bnRzLmdvb2dsZS5jb20iLCJhenAiOiIyMTYyOTYwMzU4MzQtazFrNnFlMDYwczJ0cDJhMmphbTRsamRjbXMwMHN0dGcuYXBwcy5nb29nbGV1c2VyY29udGVudC5jb20iLCJhdWQiOiIyMTYyOTYwMzU4MzQtazFrNnFlMDYwczJ0cDJhMmphbTRsamRjbXMwMHN0dGcuYXBwcy5nb29nbGV1c2VyY29udGVudC5jb20iLCJzdWIiOiIxMDAwNzEzMDYzOTAwOTc4OTMwMzYiLCJlbWFpbCI6InBhdGFyYWtpbkBnbWFpbC5jb20iLCJlbWFpbF92ZXJpZmllZCI6dHJ1ZSwibmJmIjoxNzMxNDE2NzIwLCJuYW1lIjoiWWV2Z2VueSBQYXRhcmFraW4iLCJwaWN0dXJlIjoiaHR0cHM6Ly9saDMuZ29vZ2xldXNlcmNvbnRlbnQuY29tL2EvQUNnOG9jSm1tZUE0NWk1NUhEbE1iV045Ni1fVWU4TlNpTWFWejdWN1l2bmI2UkpzZzVnRGpGZlk9czk2LWMiLCJnaXZlbl9uYW1lIjoiWWV2Z2VueSIsImZhbWlseV9uYW1lIjoiUGF0YXJha2luIiwiaWF0IjoxNzMxNDE3MDIwLCJleHAiOjE3MzE0MjA2MjAsImp0aSI6IjcwNGMwMTk2MTA5OWU3MGI2NDg3ZjNhZmY4M2FkYzdmMWIzZWE1MTgifQ.mZJYJTFqBDlJiaNJq7IgRRr4YhqxJMOy4J6e5Cj3AUHmJL1yCIA2 tvwp1ujq1ltLLgf6BsJoj8MZDV7Dssovzcl0g68Lf69C9FtyQ0mniHjTw3Cms-sorF-uV5iGykKTxwoJO0bptNs9hzhxhHneIbN2wMa3NKY0Mc4wbkSzoU6MP0cORqq-NbUkOKAUr2MYcqJiTodDuSwcg6c3Sgx oDlEeDE8zFuxLgEsraZIrs7RCK2n27gyx3Uoq9W0i1MIuUE5GWypdC35Caw--Ns4lpLsZvenlSs5kYaeZJVonEV1NZkhIO8ufeEuCujNhx1QwwIfzhEA8bvdqogngjFCA
Видео запись https://www.youtube.com/watch?v=zeKBNP5kizg
Разработчики
Среды и средства, в которых реализована модель NetLogo
Диаграмма модели
Описание полей данных, которые модель порождает
Модель создана студентами? Нет

ODD protocol

DREAM О чём эта модель? Как устроена модель (правила внутри) Как пользоваться моделью На что следует обратить внимание Что стоит попробовать Расширение возможностей модели Функции среды программирования, которые использованы в этой модели Похожие модели


globals [

 width         ;; width of the patch
 height        ;; height of the patch
 red-goal      ;; patches that belongs to the red goal
 blue-goal     ;; patches that belong to the blue goal
 the-ball      ;; the ball
 score-red     ;; amount of goals that the red team has scored since the setup
 score-blue    ;; amount of goals that the blue team has scored since the setup
 red-team      ;; players of the red team
 blue-team     ;; players of the blue team
 seed          ;; current seed number
 previous-seed ;; previous seed number
 pass-distance              ;; the maximum distance a player can pass
 move-ball-distance         ;; the distance the ball is moved forward when the player is moving
 trick-ball-distance        ;; the distance the ball is moved forward when the player is doing a trick
 shoot-distance-selfish     ;; the maximum distance a selfish player will shoot
 shoot-distance-teamplayer  ;; the maximum distance a teamplayer will shoot
 speed                      ;; the speed of a player without the ball
 speed-receiver             ;; the speed of the player receiving a pass
 speed-with-ball            ;; the speed of the player with the ball
 speed-ball-pass            ;; the speed of the ball when it is passed
 speed-ball-shot            ;; the speed of the ball when it is shot
 speed-keeper               ;; the movement speed of the keeper in vertical direction
 distance-ballpossession    ;; the distance of the player to the ball for a player to recognize he is in ball possession
 locate-ball-distance       ;; the distance from which a player locates the ball and recognize he is close to the ball
 locate-player-distance     ;; the distance from which a player locates another player and recognize he is close to that player
 defender-distance          ;; the maximum distance the defender wants to stand from the goal
 keeper-reach               ;; the reach of the keeper

]