models icon indicating copy to clipboard operation
models copied to clipboard

NetLogo Models Library

Results 14 models issues
Sort by recently updated
recently updated
newest added

The go command includes `ask one-of philosophers [ update ]` which kind of defeats the original purpose of this problem (concurrent deadlock) - https://en.wikipedia.org/wiki/Dining_philosophers_problem#Problems Removing the one-of is still not...

If one changes the voltage it takes a very long time for the graph to react appropriately. That is because it is plotting charge-flow / ticks and charge_flow only increases...

Info tab says "If agents don’t have enough same-color neighbors, they move to a nearby patch. " and yet the code is ``` ; move until we find an unoccupied...

The treatment of gravity and forces is very bad. Yes, the info tab says "Gravity is unrealistic in this system, in that its acceleration changes depending on the particle’s mass....

to look-for-food ;; turtle procedure if food > 0 [ set color orange + 1 ;; pick up food set food food - 1 ;; and reduce the food source...

It's possible this issue belongs in the CSV-Extension repository, but I'll go ahead and post it here. The CSV example model uses `csv:to-file`, which tries to write to a path...

Creative Commons do not recommend that CC licenses be used for an open source software license (https://creativecommons.org/faq/#can-i-apply-a-creative-commons-license-to-software) but it seems that many of NetLogo's model commons models are by default...

Fabian, S.T., Sondhi, Y., Allen, P.E. et al. Why flying insects gather at artificial light. Nat Commun 15, 689 (2024). https://doi.org/10.1038/s41467-024-44785-3 also added suggestion for further exploration that this could...

This model has 8 command input widgets that are set to single-line entry, despite the fact that they are clearly multi-line. I suspect they were affected by a change in...

Adds two code examples: - **Ordered Agent Drawing Example** which demonstrates how to sort turtles for display using `stamp` when precise drawing order is needed. - **Patch Outlines Example** which...