CoMSES Net Discourse Forums - Latest posts https://forum.comses.net Latest posts The Levers of HIV Model

The Levers of HIV Model (1.0.1)

Chicago’s demographic, neighborhood, sex risk behaviors, sexual network data, and HIV prevention and treatment cascade information from 2015 were integrated as input to a new agent-based model (ABM) called the Levers-of-HIV-Model (LHM). This LHM, written in NetLogo, forms patterns of sexual relations among Men who have Sex with Men (MSM) based on static traits (race/ethnicity, and age) and dynamic states (sexual relations and practices) that are found in Chicago. LHM’s five modules simulate and count new infections at the two marker years of 2023 and 2030 for a wide range of distinct scenarios or levers, in which the levels of PrEP and ART linkage to care, retention, and adherence or viral load are increased over time from the 2015 baseline levels.

Release Notes

First version of a public release to accompany a publication

Associated Publications

https://doi.org/10.1371/journal.pone.0274288


This is a companion discussion topic for the original entry at https://www.comses.net/codebases/05ad0cc2-d63e-4e4f-beba-4ea2e85a5e81/releases/1.0.1 ]]>
https://forum.comses.net/t/the-levers-of-hiv-model/10966#post_1 Fri, 20 Mar 2026 11:23:25 +0000 forum.comses.net-post-12239
Negotiation Lab 1.0

Negotiation Lab 1.0 (1.0.0)

Negotiation Lab 1.0 is an agent-based model of peace negotiations that explores how the parties’ readiness — their motivation and optimism to engage in talks — evolves dynamically throughout the negotiation process. The model reconceptualizes readiness as an adaptive state variable that is continuously updated through feedback from negotiation outcomes, rather than a static precondition assessed at the onset of talks. The model simulates two parties negotiating a multi-issue agenda. In each round, parties allocate effort to the current sub-issue; outcomes depend on their joint effort and a stochastic component representing external factors. Results feed back into each party’s readiness, shaping subsequent engagement. The negotiation ends either when all agenda items are resolved (agreement) or when a party’s readiness falls below a critical threshold (breakdown). Key parameters include the initial readiness of each party, agenda structure (balanced, hard, easy, red, or random), type of negotiation (from highly cooperative to highly competitive), and each party’s effort strategy (always high, always low, random, or pseudo tit-for-tat). The model shows that while initial readiness is associated with negotiation outcomes, it is neither necessary nor sufficient to determine them: process variables — the type of interaction, agenda design, and adaptive effort strategies — exert comparatively larger effects on outcomes. Identical initial conditions can produce widely divergent trajectories, illustrating path dependence and sensitivity to feedback dynamics. The model is implemented in NetLogo 7.0 and is documented using the ODD+D protocol. It is associated with the paper “Beyond Initial Conditions: How Adaptive Readiness Shapes Peace Negotiation Outcomes” (Arévalo, under review).

Release Notes

Version 1.0 — initial release. This is the first public release of Negotiation Lab 1.0, accompanying the paper “Beyond Initial Conditions: How Adaptive Readiness Shapes Peace Negotiation Outcomes” (Arévalo, under review).

Associated Publications


This is a companion discussion topic for the original entry at https://www.comses.net/codebases/1256dc74-9ae4-4f49-a235-1ec129be1930/releases/1.0.0 ]]>
https://forum.comses.net/t/negotiation-lab-1-0/10965#post_1 Fri, 20 Mar 2026 09:50:37 +0000 forum.comses.net-post-12238
Gradient Descent Simulation

Gradient Descent Simulation (1.0.0)

This model visualizes gradient descent optimization - the fundamental algorithm used to train neural networks and other machine learning models. Agents represent different optimization algorithms searching for the minimum of a loss landscape (the “error surface” that ML models try to minimize during training).

The model demonstrates how different optimizer types (SGD, Momentum with different parameters) behave on various loss landscapes, from simple bowls to the notoriously difficult Rosenbrock “banana valley” function. This helps build intuition about why certain optimization algorithms work better than others for different problem geometries.

HOW IT WORKS

Agents (Optimizers): - Each agent represents an optimizer instance trying to find the global minimum (located at coordinates 0,0) - Agents move according to gradient descent rules: they calculate the gradient (slope) of the loss function at their current position and move “downhill”

Three Optimizer Types: 1. SGD (Red) - Standard Stochastic Gradient Descent with no momentum (momentum = 0) 2. Momentum (Yellow) - Uses momentum = 0.9 to accelerate in consistent directions 3. Momentum 0.95 (Green) - Higher momentum (0.95) with 2x learning rate for faster convergence

Movement Rules: 1. Calculate gradient at current position (numerical derivative) 2. Apply gradient clipping to prevent extreme steps 3. Update velocity using momentum: new_velocity = momentum × old_velocity - learning_rate × gradient 4. Add optional stochastic noise (simulating mini-batch effects) 5. Move to new position 6. Check if converged (loss below threshold for 20+ steps)

Loss Landscapes: The patch colors represent the loss function value (darker blue = lower loss). Four landscapes are available: - Simple Bowl: Smooth quadratic function - easiest to optimize - Ravine: Elongated valley (10x steeper in one direction) - tests handling of ill-conditioned problems - Rosenbrock: The famous “banana valley” with a curved, narrow valley - very challenging - Complex: Multiple local minima created by sinusoidal oscillations overlaid on a bowl

HOW TO USE IT

Buttons: - setup - Initializes the model: creates the loss landscape, places optimizers randomly, marks the global minimum (red patch at center) - go - Runs the simulation continuously until all optimizers converge

Sliders: - num-optimizers (0-100) - Number of optimizer agents to create - base-learning-rate (0.01-1) - Step size for gradient descent. Smaller = slower but more stable.

Choosers: - optimizer-type - Select which optimizer to use: - “SGD” - All agents use standard gradient descent (red) - “Momentum” - All agents use 0.9 momentum (yellow) - “Momentum (0.95)” - All agents use 0.95 momentum (green) - “Mixed” - Random mix of all three types

  • landscape-type - Select the loss function:
  • “Simple Bowl” - Smooth quadratic (easiest)
  • “Ravine” - Elongated valley (tests ill-conditioning)
  • “Rosenbrock” - Curved banana valley (very hard)
  • “Complex” - Multiple local minima (tests exploration)

Switches: - show-trails - When ON, agents leave colored trails showing their optimization path - add-noise - When ON, adds stochastic noise to gradients (simulates mini-batch learning)

Monitors: - converged-count - Shows how many optimizers have converged to the minimum

CREDITS AND REFERENCES

Model Created By: AZOUANI Ilyes for DSTI School of Engineering - ABM Module

Mathematical References: - Rosenbrock, H.H. (1960). “An automatic method for finding the greatest or least value of a function” - Cauchy, AL. (1847). “Méthode générale pour la résolution des systèmes d’équations simultanées” - Polyak, B.T. (1964). “Some methods of speeding up the convergence of iteration methods”

Machine Learning Context: - Ruder, S. (2016). “An overview of gradient descent optimization algorithms.” arXiv:1609.04747

License: This model is provided for educational purposes. Feel free to modify and extend it for learning about optimization algorithms and machine learning concepts.

Version: 1.0 Date: 2025

Release Notes

One of one release.

Associated Publications


This is a companion discussion topic for the original entry at https://www.comses.net/codebases/171093c2-9e2c-4b84-87f5-abb330352901/releases/1.0.0 ]]>
https://forum.comses.net/t/gradient-descent-simulation/10964#post_1 Wed, 18 Mar 2026 12:59:44 +0000 forum.comses.net-post-12237
Shellmound Trade

Shellmound Trade (1.0.0)

This model simulates different trade dynamics in shellmound (sambaqui) builder communities in coastal Southern Brazil. It features two simulation scenarios, one in which every site is the same and another one testing different rates of cooperation. The purpose of the model is to analyze the networks created by the trade dynamics and explore the different ways in which sambaqui communities were articulated in the past.

How it Works? There are a few rules operating in this model. In either mode of simulation, each tick the agents will produce an amount of resources based on the suitability of the patches inside their occupation-radius, after that the procedures depend on the trade dynamic selected. For BRN? the agents will then repay their owed resources, update their reputation value and then trade again if they need to. For GRN? the agents will just trade with a connected agent if they need to. After that the agents will then consume a random amount of resources that they own and based on that they will grow (split) into a new site or be removed from the simulation. The simulation runs for 1000 ticks. Each patch correspond to a 300x300m square of land in the southern coast of Santa Catarina State in Brazil. Each agent represents a shellmound (sambaqui) builder community. The data for the world were made from a SRTM raster image (1 arc-second) in ArcMap. The sites can be exported into a shapefile (.shp) vector to display in ArcMap. It uses a UTM Sirgas 2000 22S projection system.

Release Notes

Reviewed version after thesis defense.

Associated Publications

https://doi.org/10.11606/T.71.2023.tde-18012024-102858


This is a companion discussion topic for the original entry at https://www.comses.net/codebases/6fe8af74-6c91-4ef7-8f5d-ab24585210da/releases/1.0.0 ]]>
https://forum.comses.net/t/shellmound-trade/10963#post_1 Mon, 16 Mar 2026 18:02:26 +0000 forum.comses.net-post-12236
Post-Doctoral Scholar Agent Based Modeling of Least Bell’s Vireo Populations

Title: Implementation of a complex agent-based model to address the effects of interacting ecological stressors and alternative management strategies on an endangered species

Institution: Purdue University, Department of Forestry and Natural Resources

Location: Purdue University West Lafayette, IN is preferred. However, we will consider hybrid and remote work models.

Job Category: Post-Doctoral Scholar

Salary: Commensurate with standards for post-doctoral scholars in the Department of Forestry and Natural Resources at Purdue University the starting salary will be at least $47,500 annually for the first year with opportunities for raises during subsequent project years. The position includes benefits typical for post-doctoral scholars at Purdue (https://www.purdue.edu/gradschool/postdoctoral-studies/resources/index.php).

Duration of Appointment: Applicant will be hired for a minimum of one year. Funding is available to support a post-doctoral scholar for the four-year duration of this project pending approval of additional funds after the completion of the first two project years. Pertinent Websites: https://serdp-estcp.org/projects/details/89fdcf5b-0c44-41f9-af97-fd1d45908863/rc22-3216-project-overview and https://www.purdue.edu/fnr/sites/zollner/

Start Date: As Soon As Possible.

Project Description: The federally endangered Least Bell’s Vireo (LBVI, Vireo bellii pusillus) nests in narrow riparian areas surrounded by the heavily urbanized matrix of Southern California. Several of the largest remaining patches of LBVI nesting habitat occur on US Department of Defense (DoD) military installations and in US Army Corps of Engineers (USACE) flood control basins. Expenses for ESA compliance related to LBVI are among the highest of all listed bird species, with widespread operational and financial impacts on federal action agencies and military installations. A complex array of threats and stressors interact to threaten LBVI populations, including groundwater extraction, loss of streamflow inputs due to water recycling programs, changing flood and fire regimes, nest parasitism by brown-headed cowbirds (Molothrus ater), and negative impacts to riparian vegetation from invasive non-native plants and insects. One challenge in developing management strategies for recovery is understanding how different stressors may interact, particularly with emerging threats like new invasive species or major changes in disturbance regimes due to climate change. A ~25-minute video describing this project in more detail can be viewed at this link (https://youtu.be/c0DQPcSk-Qg). The goal of this research project is to develop an individual/agent-based modeling tool that integrates sub-models reflecting different stressors, and synthesizes those sub-models to understand the relative effectiveness of a range of PI- and stakeholder-generated management scenarios.

Position Description/Project Role: The selected post-doctoral scholar will work closely with PhD students in the labs of Dr. Pat Zollner and Dr. Jeff Holland as well as with all project Co-PIs (see below) throughout the model development cycle to design, document, implement in code, and analyze outputs from a complex agent-based model. Specifically, successful applicants will have the following skills and experience:

1) Collaborative design and development (in code) of an agent-based model that will integrate sub-models developed by multiple collaborators on the project team. The ability to plan for this integration, maintain a code base, and help collaborators develop models that will fit seamlessly into a global model will be critical;

2) Ability to run agent-based modeling software at scale, so that a complex model with thousands of interacting agents can be run hundreds, if not thousands, of times for different analyses working on a computing cluster and/or using cloud-based resources. This skill is required for model testing, calibration, sensitivity analysis, and applied analyses to simulate many stakeholder or researcher-driven alternative management scenarios to assess their relative effectiveness; and

3) Strong code documentation skills (e.g., modeling notebooks, comments in code) will be required, as well as the commitment to work with all on the project team to follow documentation formats specific to agent-based models (ODD, TRACE). This is a unique opportunity for individuals interested in the interface of individual/agent-based modeling and quantitative wildlife conservation. The position provides relevant experience for a career trajectory within a government agency or a research career at a university or NGO. The post-doctoral scholar will be supervised by Dr. Patrick Zollner (Purdue University Department of Forestry and Natural Resources). They will collaborate with; Dr. Richard Fischer from the US Army Engineer Research and Development Center, Mr. Casey Lott Conservation Science and Data Visualization, LLC, Dr. Jeffrey Holland Purdue University Department of Entomology, and Ms. Melissa Rohde of Rohde Environmental Consulting LLC.

Specific Duties: The post-doctoral scholar will serve as the hub coordinating the design and code compatibility of sub-models from all project collaborators. They will play a critical role in designing and coding the overarching model that integrates sub-models related to different stressors as well simulation experiments that investigate the interactive effects of those stressors and their implications for management activities. Responsibility for specific tasks will be assigned on a case-by-case basis and the post-doctoral scholar will work closely with the PhD students and project Co-PIs on all aspects of this project.

How to Apply: Interested applicants should compile all of the following materials into a single pdf file; a CV that includes contact information for three professional references, a 1-page statement of interest, and responses to the following 5 questions (each of these responses should be 250 words or less).

  1. Describe a situation that demonstrates your work ethic and ability to complete complex tasks in a timely manner.
  2. Provide an example of a work/academic situation that typifies how you handle adversity when striving to attain a goal.
  3. What motivates you to pursue post-doctoral scholarship, and how will participation in this project prepare you to achieve your career goals?
  4. Please describe a specific example from your work/academic experience that demonstrates your curiosity and creativity.
  5. What are your strengths and weaknesses with regard to achieving goals individually and in collaboration with others?

That single pdf should be attached to an email that has a subject line of “Application for Post-Doctoral Scholar on Least Bell’s Vireo ABM”. That email should be sent to Dr. Patrick Zollner ([email protected]) and applicants should understand that their application materials may be reviewed by other project collaborators as part of application evaluation. Application review will begin on January 16 of 2023 and continue until a suitable applicant is hired for the position.

Qualifications: PhD in Computer Programming, Software Engineering, or a related field with an interest in conservation of endangered species. Alternatively, PhD in Ecological Modelling, Wildlife Biology or a related discipline with experience in Agent Based Modeling.

When preparing materials (statement of interest & response to 5 questions) applicants should explicitly address their demonstrated organizational skills, interest/background in individual/agent-based modeling, quantitative skills, and their ability to mentor others. Applicants should be highly motivated with a demonstrated ability to work independently and collaboratively. The post-doctoral scholar that we hire should be able to readily interact with partners including government agencies across many levels as well as non-governmental organizations. Applicants with experience publishing peer-reviewed journal articles, a strong work ethic, demonstrated technical writing ability, training in ecological modeling, excellent interpersonal skills, demonstrated skill or skill potential in quantitative ecology and proficiency in R will be most competitive. Experience developing individual/agent-based models in NetLogo or equivalent platforms, knowledge related to optimizing solutions to network structure challenges, familiarity with conservation challenges faced by LBVI, as well as candidates who bring unique contributions to the diverse perspectives within the Department of Forestry and Natural Resources are all additional elements that will make applicants more competitive.

Purdue is a land-grant university of over 40,000 students and ranked the 10th best public university in the U.S. The Department of Forestry and Natural Resources is housed administratively in the College of Agriculture (#7 US ranking) and offers vibrant, nationally ranked graduate programs in wildlife and ecology. Located in West Lafayette, Indiana, Purdue is an easy drive from Indianapolis and Chicago. The West Lafayette-Lafayette area is home to a diverse community of 174,000, with good schools, safe neighborhoods, over 40 parks and extensive trail systems, active Farmers Markets, and year-long community festivals and art events.

Contact Persons: Dr. Patrick Zollner Contact Phones: (765) 430-7858 Contact e-mails: [email protected]


This is a companion discussion topic for the original entry at https://www.comses.net/jobs/590 ]]>
https://forum.comses.net/t/post-doctoral-scholar-agent-based-modeling-of-least-bell-s-vireo-populations/10962#post_1 Mon, 16 Mar 2026 12:55:17 +0000 forum.comses.net-post-12235
The Levers of HIV Model

The Levers of HIV Model (1.0.2)

Chicago’s demographic, neighborhood, sex risk behaviors, sexual network data, and HIV prevention and treatment cascade information from 2015 were integrated as input to a new agent-based model (ABM) called the Levers-of-HIV-Model (LHM). This LHM, written in NetLogo, forms patterns of sexual relations among Men who have Sex with Men (MSM) based on static traits (race/ethnicity, and age) and dynamic states (sexual relations and practices) that are found in Chicago. LHM’s five modules simulate and count new infections at the two marker years of 2023 and 2030 for a wide range of distinct scenarios or levers, in which the levels of PrEP and ART linkage to care, retention, and adherence or viral load are increased over time from the 2015 baseline levels.

Release Notes

First version of a public release to accompany a publication

Associated Publications

https://doi.org/10.1371/journal.pone.0274288


This is a companion discussion topic for the original entry at https://www.comses.net/codebases/05ad0cc2-d63e-4e4f-beba-4ea2e85a5e81/releases/1.0.2 ]]>
https://forum.comses.net/t/the-levers-of-hiv-model/10961#post_1 Mon, 16 Mar 2026 08:25:11 +0000 forum.comses.net-post-12234
SIM-VOLATILE: Adoption of emerging circular technologies in the waste-treatment sector

SIM-VOLATILE: Adoption of emerging circular technologies in the waste-treatment sector (1.0.0)

The SIM-VOLATILE model is a technology adoption model at the population level. The technology, in this model, is called Volatile Fatty Acid Platform (VFAP) and it is in the frame of the circular economy. The technology is considered an emerging technology and it is in the optimization phase. Through the adoption of VFAP, waste-treatment plants will be able to convert organic waste into high-end products rather than focusing on the production of biogas. Moreover, there are three adoption/investment scenarios as the technology enables the production of polyhydroxyalkanoates (PHA), single-cell oils (SCO), and polyunsaturated fatty acids (PUFA). However, due to differences in the processing related to the products, waste-treatment plants need to choose one adoption scenario.

In this simulation, there are several parameters and variables. Agents are heterogeneous waste-treatment plants that face the problem of circular economy technology adoption. Since the technology is emerging, the adoption decision is associated with high risks. In this regard, first, agents evaluate the economic feasibility of the emerging technology for each product (investment scenarios). Second, they will check on the trend of adoption in their social environment (i.e. local pressure for each scenario). Third, they combine these two economic and social assessments with an environmental assessment which is their environmental decision-value (i.e. their status on green technology). This combination gives the agent an overall adaptability fitness value (detailed for each scenario). If this value is above a certain threshold, agents may decide to adopt the emerging technology, which is ultimately depending on their predominant adoption probabilities and market gaps.

Release Notes

A detailed description of the model is provided in an ODD document attached. The instruction on how to run the model, are provided under the info-tab in the Netlogo interface.

Associated Publications

Farahbakhsh, Siavash, Stien Snellinx, Anouk Mertens, Edward Belderbos, Liselot Bourgeois, and Jef Van Meensel. “What’s stopping the waste-treatment industry from adopting emerging circular technologies? An agent-based model revealing drivers and barriers.” Resources, Conservation and Recycling 190 (2023): 106792. https://doi.org/10.1016/j.resconrec.2022.106792.

F Velghe, F De Wilde, S Snellinx, S Farahbakhsh, E Belderbos, C Peral, A Wiedemann, S Hiessl, J Michels, M-A Pierrard, T Dietrich, Volatile fatty acid platform – a cornerstone for the circular bioeconomy, FEMS Microbiology Letters, Volume 368, Issue 9, May 2021, fnab056, https://doi.org/10.1093/femsle/fnab056


This is a companion discussion topic for the original entry at https://www.comses.net/codebases/c08284dd-8d28-4372-b8fc-744b72e8761c/releases/1.0.0 ]]>
https://forum.comses.net/t/sim-volatile-adoption-of-emerging-circular-technologies-in-the-waste-treatment-sector/10960#post_1 Mon, 16 Mar 2026 06:31:46 +0000 forum.comses.net-post-12233
Construction and Demolition model to track material flows and embodied carbon

Construction and Demolition model to track material flows and embodied carbon (1.0.0)

Reusing existing material stocks in developed built environments can significantly reduce the environmental footprint of the construction and demolition sector. However, material reuse in urban areas presents technical, temporal, and geographical challenges. Although a better understanding of spatial and temporal changes in material stocks could improve city resource management, limited scientific contributions have addressed this challenge. This study details the steps followed in developing a spatially explicit rule-based simulation of materials stock. The simulation provides a proof of concept by incorporating the spatial and temporal dimensions of construction and demolition activities to analyse how various urban parameters determine material flows and embodied carbon in urban areas. The model explores the effects of 1) re-using recycled materials, 2) demolitions, 3) renovations and 4) various building typologies. To showcase the model’s capabilities, the residential building stock of Gothenburg City is used as a case study, and eight building materials are tracked. Environmental impacts (A1-A3) are calculated with embodied carbon factors. The main parameters are explored in a baseline scenario. Then, a second scenario focuses on a hypothetical policy that promotes improvements in building energy performance. The simulation can be expanded to include more materials and built environment assets and allows for future explorations on, for example, the role of logistics, the implementation of recycling or reuse stations, and, in general, supporting sustainable and circular strategies from the construction sector.

Release Notes

import the project in GAMA

Associated Publications


This is a companion discussion topic for the original entry at https://www.comses.net/codebases/eabb72fe-3a47-47b1-a0b7-0e384679fd35/releases/1.0.0 ]]>
https://forum.comses.net/t/construction-and-demolition-model-to-track-material-flows-and-embodied-carbon/10959#post_1 Mon, 16 Mar 2026 06:14:39 +0000 forum.comses.net-post-12232
Benchmark for DMASON

Benchmark for DMASON (1.0.0)

Agent-based modeling and simulation (ABMS) is a class of computational models for simulating the actions and interactions of autonomous agents with the goal of assessing their effects on a system as a whole. Several frameworks for generating parallel ABMS applications have been developed taking advantage of their common characteristics, but there is a lack of a general benchmark for comparing the performance of generated applications. We propose and design a benchmark that takes into consideration the most common characteristics of this type of applications and includes parameters for influencing their relevant performance aspects. We provide an initial implementation of the benchmark for DMASON parallel ABMS platform, and we use it for comparing the applications generated by these platforms.

Release Notes

First release of Benchmark for DMASON

Associated Publications

https://doi.org/10.1016/j.simpat.2023.102812 https://doi.org/10.1007/s11227-018-2688-8


This is a companion discussion topic for the original entry at https://www.comses.net/codebases/e43cd913-24f3-4412-b790-479e710dae1a/releases/1.0.0 ]]>
https://forum.comses.net/t/benchmark-for-dmason/10958#post_1 Mon, 16 Mar 2026 06:08:54 +0000 forum.comses.net-post-12231
An agent-based model of scapegoating

An agent-based model of scapegoating (1.0.0)

This agent-based model investigates scapegoating as a social mechanism of crisis management. Inspired by René Girard’s mimetic theory, it simulates how individual tension accumulates and spreads across a small-world network. When tension exceeds certain thresholds, leaders emerge and accuse marginalized agents, who may attempt to transfer blame to substitutes. If scapegoating occurs, collective tension decreases, but victims become isolated while leaders consolidate temporary authority. This simulation provides a conceptual and methodological framework for exploring how collective blame, crisis contagion, and leadership paradoxes emerge in complex networks. It can also be extended with empirical data, such as social media dynamics of online harassment and virtual lynching, offering potential applications for both theoretical research and practical crisis monitoring.

Release Notes

Version 1.0 of the Scapegoating ABM. This release provides the complete NetLogo model, comprehensive ODD protocol documentation, and illustrative configurations for reproducing core dynamics such as tension propagation, leader emergence, and scapegoat selection. The release is intended for researchers interested in network science, collective behavior, and mimetic theory, and serves as the basis for future empirical validation with social media datasets.

Associated Publications


This is a companion discussion topic for the original entry at https://www.comses.net/codebases/44d0678d-1412-40d9-8a02-a857a5f1d81d/releases/1.0.0 ]]>
https://forum.comses.net/t/an-agent-based-model-of-scapegoating/10957#post_1 Sun, 15 Mar 2026 01:50:46 +0000 forum.comses.net-post-12230
An integrated socio-economic Agent-Based Modeling framework towards assessing farmers’ decision making under water scarcity and varying utility function

An integrated socio-economic Agent-Based Modeling framework towards assessing farmers’ decision making under water scarcity and varying utility function (1.0.0)

A spatio-temporal Agent Based Modeling (ABM) framework is developed to probabilistically predict farmers’ decisions in the context of climate-induced water scarcity under varying utility optimization functions. The proposed framework forecasts farmers’ behavior assuming varying utility functions. The framework allows decision makers to forecast the behavior of farmers through a user-friendly platform with clear output visualization. The functionality of the proposed ABM is illustrated in an agriculturally dominated plain along the Eastern Mediterranean coastline.

Study area GIS data available upon request to [email protected]

Release Notes

Enter the number of proposed farms and the characteristics xls file. Click on the SETUP button to set up the model. Click on GO.

Associated Publications


This is a companion discussion topic for the original entry at https://www.comses.net/codebases/d109cddc-9c69-47d0-bec5-8f19bfbc0843/releases/1.0.0 ]]>
https://forum.comses.net/t/an-integrated-socio-economic-agent-based-modeling-framework-towards-assessing-farmers-decision-making-under-water-scarcity-and-varying-utility-function/10956#post_1 Sun, 15 Mar 2026 00:21:55 +0000 forum.comses.net-post-12229
Bid-rigging Norms Game Model

Bid-rigging Norms Game Model (1.1.0)

In this simulation, we modify the norms game model to bid-rigging (collusion) model, while we can simulate also the norms game model.

Release Notes

Second edition

Associated Publications


This is a companion discussion topic for the original entry at https://www.comses.net/codebases/8319e3ec-6ed6-4af1-b28d-d08b71b81fcf/releases/1.1.0 ]]>
https://forum.comses.net/t/bid-rigging-norms-game-model/10955#post_1 Sat, 14 Mar 2026 22:08:04 +0000 forum.comses.net-post-12228
ThomondSim

ThomondSim (1.0.0)

ThomondSim is a simulation of the political and economic landscape of the medieval kingdom of Thomond, southwestern Ireland, between 1276 and 1318.

Its goal is to analyze how deteriorating environmental and economic conditions caused by the Little Ice Age (LIA), the Great European Famine of 1315-1322, and wars between England and Scotland affected the outcomes of a local war involving Gaelic and English aristocratic lineages. This ABM attempts to model both the effects of devastation on the human environment and the modus operandi of late-medieval war and diplomacy.

The model is the digital counterpart of the science discovery board game The Triumphs of Turlough. Its procedures closely correspond to the game’s mechanics, to the point that ToT can be considered an interactive, analog version of this ABM.

Release Notes

This model was created using NetLogo 6.2.2.

It runs on an invisible network environment overlayed on a static map. You do not need the map if you simply want to use the model to run experiments. However, if you wish to use it for educational purposes, you might wish to download.

To do so, click on File > Import > Import Patch Colors RGB, then select the file Map_ThomondSim.png (available on this page), wherever you have saved it.

On the “tools” tab, click on Turtle Shape Editor > Import from Library. You’ll see a list with icons. Select the following icons and click “import”: chess bishop, chess king, chess knight, and crown

2 -Save the file ThomondSimMap.png on your computer

3- Open NetLogo. On the “tools” tab, click on Turtle Shape Editor > Import from Library. You’ll see a list with icons. Select the following icons and click “import”: chess bishop, chess king, chess knight, and crown

4- Open ThomondSim.nlogo

Associated Publications


This is a companion discussion topic for the original entry at https://www.comses.net/codebases/e28ff06b-13b0-4503-9877-9e89674e343e/releases/1.0.0 ]]>
https://forum.comses.net/t/thomondsim/10954#post_1 Sat, 14 Mar 2026 19:19:50 +0000 forum.comses.net-post-12227
WEEM (Woodlot Establishment and Expansion Model)

WEEM (Woodlot Establishment and Expansion Model) (1.0.0)

The agent-based model WEEM (Woodlot Establishment and Expansion Model) as described in the journal article, has been designed to make use of household socio-demographics (household status, birth, and death events of households), to better understand the temporal dynamics of woodlot in the buffer zones of Budongo protected forest reserve, Masindi district, Uganda. The results contribute to a mechanistic understanding of what determines the current gap between intention and actual behavior in forest land restoration at farm level.

Release Notes

First version of the WEEM model, which simulates the household decision making behavior through number of established woodlots. The model builds on the assumption of theory of planned behavior focusing on household intention and actual behavior in woodlot establishment.

Associated Publications

Ahimbisibwe et al 2021. Understanding Smallholder Farmer Decision Making in Forest Land Restoration Using Agent-Based Modeling, submitted for publication in SESMO.


This is a companion discussion topic for the original entry at https://www.comses.net/codebases/4faf2984-7b50-4641-9585-d0ffd8b25ca2/releases/1.0.0 ]]>
https://forum.comses.net/t/weem-woodlot-establishment-and-expansion-model/10953#post_1 Sat, 14 Mar 2026 18:10:58 +0000 forum.comses.net-post-12226
A Diffusion Study

A Diffusion Study (1.1.0)

This ABM

Release Notes

The netlogo code

Associated Publications


This is a companion discussion topic for the original entry at https://www.comses.net/codebases/cdac45a2-83f3-456f-80f2-e417b651d9a4/releases/1.1.0 ]]>
https://forum.comses.net/t/a-diffusion-study/10951#post_1 Sat, 14 Mar 2026 01:33:38 +0000 forum.comses.net-post-12224
The Levers of HIV Model

The Levers of HIV Model (1.0.0)

Chicago’s demographic, neighborhood, sex risk behaviors, sexual network data, and HIV prevention and treatment cascade information from 2015 were integrated as input to a new agent-based model (ABM) called the Levers-of-HIV-Model (LHM). This LHM, written in NetLogo, forms patterns of sexual relations among Men who have Sex with Men (MSM) based on static traits (race/ethnicity, and age) and dynamic states (sexual relations and practices) that are found in Chicago. LHM’s five modules simulate and count new infections at the two marker years of 2023 and 2030 for a wide range of distinct scenarios or levers, in which the levels of PrEP and ART linkage to care, retention, and adherence or viral load are increased over time from the 2015 baseline levels.

Release Notes

First version of a public release to accompany a publication

Associated Publications

https://doi.org/10.1371/journal.pone.0274288


This is a companion discussion topic for the original entry at https://www.comses.net/codebases/05ad0cc2-d63e-4e4f-beba-4ea2e85a5e81/releases/1.0.0 ]]>
https://forum.comses.net/t/the-levers-of-hiv-model/10950#post_1 Fri, 13 Mar 2026 21:58:04 +0000 forum.comses.net-post-12223
Post-Doctoral Scholar Agent Based Modeling to Improve Cage-Free Housing Systems

Title: Agent Based Modeling to Improve Cage-Free Housing Systems: What Does the Hen See?

Institution: Purdue University, Department of Forestry and Natural Resources

Location: Purdue University West Lafayette, IN is preferred. However, we will consider hybrid and remote work models.

Job Category: Post-Doctoral Scholar

Salary: Commensurate with standards for post-doctoral scholars in the Department of Forestry and Natural Resources at Purdue University the starting annual salary will be at least $47,500. The position includes benefits typical for post-doctoral scholars at Purdue (https://www.purdue.edu/gradschool/postdoctoral-studies/resources/index.php).

Duration of Appointment: Eighteen months.

Pertinent Websites: https://ag.purdue.edu/stories/through-the-hens-eyes-1-million-grant-to-improve-cage-free-housing-for-egg-laying/ and https://cris.nifa.usda.gov/cgi-bin/starfinder/0?path=fastlink1.txt&id=anon&pass=&search=R=95189&format=WEBFMT6NT Start Date: Negotiable but desired mid-June 2023

Project Description: Egg production in the US is changing from caged to cage-free production. This requires that 72% of laying hens are raised in cage-free housing by 2025. However, there are many different cage-free designs and we don’t know about the performance of hens in these different designs. As more hens are housed in cage-free housing systems, it is important to design systems based on hens’ perceptions and needs, rather than human assumptions. This project aims to understand how hens see the environment so that new cage-free housing can be created that positively impacts hen behavior, productivity and welfare, and food safety. This project will 1) collect information on the laying hens’ eyes, physiology, behavior and welfare in two cage-free housing systems; 2) develop models to estimate how hens see their environment; 3) develop Agent Based Models (ABM) for comparing virtual cage-free housing systems; and 4) build and validate the virtual cage-free system in real life. This approach will facilitate the design of a housing system better suited to the laying hen by reducing unwanted behaviors and improving hen welfare. Egg producers will understand hens’ perceptions and use of the cage-free environment, guiding producers’ decision-making. Additionally, housing manufacturers will have a new approach that could inform the design of future cage-free housing systems.

Position Description/Project Role: The selected post-doctoral scholar will work closely with the entire team (see below) to design, code and implement this ABM under the supervision of Dr. Pat Zollner.

This is a unique opportunity for individuals interested in the interface of individual/agent-based modeling and animal biology. The position provides relevant experience for a career trajectory within a government agency or a research career at a university or non-governmental organizations (NGO). The post-doctoral scholar will be supervised by Dr. Patrick Zollner (Purdue University Department of Forestry and Natural Resources). They will collaborate with: Dr. Darrin Karcher, Dr. Marissa Erasmus, and Dr. Greg Fraley of Purdue’s Department of Animal Sciences as well as Dr. Esteban Fernandez-Juricic from Purdue’s Department of Biology and Dr. Deana Jones US National Poultry Research Center. They will also work closely with representatives from industry throughout model development, testing and implementation. Specific Duties: The post-doctoral scholar will be actively engaged throughout the ABM model development cycle to design, document, implement in code, analyze outputs from a complex agent-based model and prepare/submit manuscripts describing the final products. Successful applicants should expect to do the following:

1) Collaboratively design and develop/code an agent-based model that will integrate inputs from multiple contributors across the project team and stakeholders. Including the ability to plan for this integration, and maintaining iterative versions of model code.

2) Run agent-based modeling software at scale, so that a complex model with thousands of interacting agents can be run hundreds, if not thousands, of times for different analyses working on a computing cluster and/or using cloud-based resources. This skill is required for model testing, calibration, sensitivity analysis, and applied analyses to simulate many stakeholders or researcher-driven alternative management scenarios to assess their relative effectiveness.

3) Use strong code documentation skills (e.g., modeling notebooks, comments in code, etc.) to work with the project team to develop appropriate documentation (ODD, TRACE) of the development and application of this ABM.

4) Use documented scientific writing skills to synthesize this work into manuscripts submitted to journals as final deliverables for this project.

5) Use effective communication skills to interact with stakeholder to ensure their perspectives and concerns are addressed in model development and implementation.

Qualifications: PhD in Computer Programming, Software Engineering, or a related field with an interest in management of cage-free housing systems for egg laying hens. Alternatively, PhD in Biological Sciences or a related discipline with experience in Agent Based Modeling or clearly demonstrated strong quantitative skills.

When preparing materials (statement of interest & response to 5 questions described in how to apply below) applicants should explicitly address their demonstrated organizational skills, interest/background in agent-based modeling, quantitative skills, and their ability to successfully engage with stakeholders. Applicants should be highly motivated with a demonstrated ability to work independently and collaboratively. The post-doctoral scholar that we hire should be able to successfully interact with partners including industry, and government agencies across many levels as well as NGOs. Applicants with experience publishing peer-reviewed journal articles, a strong work ethic, demonstrated technical writing ability, as well as training in quantitative modeling, excellent interpersonal skills, demonstrated skill or skill potential in agent-based modeling will be most competitive. Experience developing individual/agent-based models in NetLogo or equivalent platforms, knowledge related to optimizing solutions to network structure challenges, familiarity with poultry and specifically egg laying industry as well as candidates who bring unique contributions to the diverse perspectives within the Department of Forestry and Natural Resources are all additional elements that will make applicants more competitive.

How to Apply: Interested applicants should compile all of the following materials into a single pdf file; a CV that includes contact information for three professional references, a 1-page statement of interest, and responses to the following 5 questions (each of these responses should be 250 words or less).

  1. Describe a situation that demonstrates your work ethic and ability to complete complex tasks in a timely manner.
  2. Provide an example of a work/academic situation that typifies how you handle adversity when striving to attain a goal.
  3. What motivates you to pursue post-doctoral scholarship, and how will participation in this project prepare you to achieve your career goals?
  4. Please describe a specific example from your work/academic experience that demonstrates your curiosity and creativity.
  5. What are your strengths and weaknesses with regard to achieving goals individually and in collaboration with others?

That single pdf should be attached to an email that has a subject line of “Application for Post-Doctoral Scholar on Egg Laying Hen ABM”. That email should be sent to Dr. Patrick Zollner ([email protected]) and applicants should understand that their application materials may be reviewed by other project collaborators as part of application evaluation. Application review will begin on June 1 of 2023 and continue until a suitable applicant is hired for the position.

Employment Context: Purdue is a land-grant university of over 40,000 students and ranked the 10th best public university in the U.S. The Department of Forestry and Natural Resources is housed administratively in the College of Agriculture (#7 US ranking) and offers vibrant, nationally ranked graduate programs. Located in West Lafayette, Indiana, Purdue is an easy drive from Indianapolis and Chicago. The West Lafayette-Lafayette area is home to a diverse community of 174,000, with good schools, safe neighborhoods, over 40 parks and extensive trail systems, active Farmers Markets, and year-long community festivals and art events. Purdue University is committed to providing an educational and work environment free of discrimination and harassment and does not condone and will not tolerate discrimination or harassment of any person in the University community.

Contact Persons: Dr. Patrick Zollner Contact Phones: (765) 496-9495 Contact e-mails: [email protected]

Purdue University is an EOE/AA employer. All individuals, including minorities, women, individuals with disabilities, and veterans are encouraged to apply.


This is a companion discussion topic for the original entry at https://www.comses.net/jobs/600 ]]>
https://forum.comses.net/t/post-doctoral-scholar-agent-based-modeling-to-improve-cage-free-housing-systems/10949#post_1 Fri, 13 Mar 2026 18:30:03 +0000 forum.comses.net-post-12222
NetLogo Model of Spatial Eviction in Attraction-Repulsion Opinion Dynamics

NetLogo Model of Spatial Eviction in Attraction-Repulsion Opinion Dynamics (1.0.0)

A reproducible NetLogo implementation of a spatial attraction-repulsion opinion model with eviction-driven relocation. Agents interact locally, converge with similar neighbors, diverge from dissimilar neighbors, and may evict the most dissimilar neighbor to a random empty location. Parameter sweeps reveal transitions among extremist, mixed, and consensus regimes, with outputs including phase diagrams, opinion distributions, and Moran’s I. The model is intended to reproduce and extend results on how exclusion frequency changes polarization outcomes.

Release Notes

Initial public release of the NetLogo model for spatial eviction in attraction-repulsion opinion dynamics. The model implements local opinion interaction (attraction/repulsion), eviction-driven relocation, and reproducible outputs for key metrics (Var(o), f_extreme, Moran’s I), phase diagrams, and robustness analyses.

This release aligns with the revised manuscript and includes ODD-style documentation for reproducibility. Core findings reproducible with this code are the three regimes (extremist, mixed, consensus) and their dependence on eviction frequency and tolerance. Known scope limits: regular lattice topology, one-dimensional opinions, and random relocation destinations in the baseline setup.

Associated Publications


This is a companion discussion topic for the original entry at https://www.comses.net/codebases/b8547f51-20a7-49db-b57b-f22274a3bf0b/releases/1.0.0 ]]>
https://forum.comses.net/t/netlogo-model-of-spatial-eviction-in-attraction-repulsion-opinion-dynamics/10948#post_1 Fri, 13 Mar 2026 13:34:52 +0000 forum.comses.net-post-12221
GODS: Gossip-Oriented Dilemma Simulator

GODS: Gossip-Oriented Dilemma Simulator (8.3.0)

Model of influence of access to social information spread via social network on decisions in a two-person game.

Release Notes

Please use BehaviorSpace function (click on Tools and choose from list) to run experiments. As of now, the model has a layered interface that is not easy for custom experimentation - this will change in the near future. Remember to put data files in the same repository as .nlogo file.

Associated Publications


This is a companion discussion topic for the original entry at https://www.comses.net/codebases/9270cbbb-4fe3-4173-8a07-1209fa0e17f8/releases/8.3.0 ]]>
https://forum.comses.net/t/gods-gossip-oriented-dilemma-simulator/10947#post_1 Fri, 13 Mar 2026 13:12:41 +0000 forum.comses.net-post-12220
An agent-based model to simulate meat consumption behaviour of consumers in Britain

An agent-based model to simulate meat consumption behaviour of consumers in Britain (1.0.0)

The current rate of production and consumption of meat poses a problem both to peoples’ health and to the environment. This work aims to develop a simulation of peoples’ meat consumption behaviour in Britain using agent-based modelling. The agents represent individual consumers. The key variables that characterise agents include sex, age, monthly income, perception of the living cost, and concerns about the impact of meat on the environment, health, and animal welfare. A process of peer influence is modelled with respect to the agents’ concerns. Influence spreads across two eating networks (i.e. co-workers and household members) depending on the time of day, day of the week, and agents’ employment status. Data from a representative sample of British consumers is used to empirically ground the model. Different experiments are run simulating interventions of application of social marketing campaigns and a rise in price of meat. The main outcome is the average weekly consumption of meat per consumer. A secondary outcome is the likelihood of eating meat.

Release Notes

work currently under review

Associated Publications

Scalco, A., Macdiarmid, J. I., Craig, T., Whybrow, S. & Horgan, G. W. (2019). An agent-based model to simulate meat consumption behaviour of consumers in Britain. Journal of Artificial Societies and Social Simulation, 22(4), 8 (in press on the 18.10.2019).


This is a companion discussion topic for the original entry at https://www.comses.net/codebases/e70769cd-06fa-4339-b9b4-6d4679701ce4/releases/1.0.0 ]]>
https://forum.comses.net/t/an-agent-based-model-to-simulate-meat-consumption-behaviour-of-consumers-in-britain/10946#post_1 Fri, 13 Mar 2026 13:04:52 +0000 forum.comses.net-post-12219
Netlogo developer at the Naval Postgraduate School

Job Opportunity - Netlogo developer

The Department of Defense Management at the Naval Postgraduate School (NPS) seeks applications for a Faculty Associate – Research position to support the Center for Modeling Human Behavior. NPS is a fully accredited graduate school whose students are drawn from the armed forces and civilian agencies of the United States and other countries. CMHB is an interdisciplinary research center integrating advances in psychology, social science, computer modeling, and efficient experimental design to develop and leverage complex human behavior models to address modern defense and security challenges.

Job Description

The primary duties of the position will consist of working collaboratively to maintain and improve complex agent-based simulation models of human behavior in NetLogo. This will include general model improvements of existing models, designing and coding new model components, and research and experimentation with these models. It also includes participation in the development of research proposals, development of new models as new projects arise, improvement of model documentation, and dissemination of research through project reports and peer-reviewed publications. Performance of other typical faculty duties will also be required.

Minimum Qualifications

U.S. Citizenship; Master’s Degree or higher in a relevant degree program; Demonstrated aptitude for scientific research; Demonstrated ability to work with student researchers.

Additional Desired Qualifications

Competence in designing agent-based simulation models; Development experience in NetLogo; Ability to work independently and meet deadlines; Experience working collaboratively on complex modeling projects; Familiarity with general social science concepts; Familiarity with simulation experimental design and data analysis concepts.

This is a non-tenure-track position. The initial appointment will be a part-time position lasting 1 to 3 years with the potential for renewal, and is subject to available funding. The position is eligible for telework. Salary is commensurate with qualifications and experience. This is a federal government position. Benefits and entitlements may be found at https://www.opm.gov.

For more details regarding this opportunity, you can contact: Dr. Susan Aros Department of Defense Management, Naval Postgraduate School Director, Center for Modeling Human Behavior, NPS Lead, The Crowd Dynamics Modeling Group at NPS Lead MORS Human Behavior and Performance Community of Practice [email protected]

Application package

Please send application to DDM Chair Ray Jones at [email protected] including:

Cover letter Curriculum vitae If currently in a PhD program: Letter of recommendation Applications will be accepted beginning immediately and until December 11th, 2022.

NOTE: IF YOU ARE A VETERAN, you are strongly encouraged to identify your Veterans’ Preference on your resume or elsewhere in your application package (type of preference, dates of service, date of VA letter, character of service, etc.)

Additional Veterans’ information: If you are not sure of your preference eligibility, visit the Department of Labor’s website: https://webapps.dol.gov/elaws/vets/vetpref/mservice.htm

For more veterans’ preference information, visit: https://www.fedshirevets.gov/job-seekers/veterans-preference/

The Naval Postgraduate School is an Equal Opportunity/Affirmative Action employer.

Additional information about NPS is available at http://www.nps.edu, and about CMHB is available at https://nps.edu/web/cmhb.


This is a companion discussion topic for the original entry at https://www.comses.net/jobs/580 ]]>
https://forum.comses.net/t/netlogo-developer-at-the-naval-postgraduate-school/10944#post_1 Fri, 13 Mar 2026 05:02:09 +0000 forum.comses.net-post-12217
PhD Student or Post-Doctoral Scholar Agent Based Modeling of Least Bell’s Vireo Populations

Title: Implementation of a complex agent-based model to address the effects of interacting ecological stressors and alternative management strategies on an endangered species

Institution: Purdue University, Department of Forestry and Natural Resources

Location: Purdue University West Lafayette, IN.

Job Category: Post-Doctoral Scholar or PhD Student

Salary: Commensurate with standards for either a post-doctoral scholar or a PhD student in the Department of Forestry and Natural Resources at Purdue University. The position includes benefits typical for whichever position a candidate is hired for at Purdue University. Duration of Appointment: A post-doctoral scholar will be hired for a minimum of one year and a PhD student for a minimum of three years. The duration of either position is contingent upon completion of ongoing project goals to provide additional funding through 2027.

Start Date: As Soon As Possible for a post-doctoral scholar or January of 2024 for a PhD student.

Project Description: The federally endangered Least Bell’s Vireo (LBVI, Vireo bellii pusillus) nests in narrow riparian areas surrounded by the heavily urbanized matrix of Southern California. Several of the largest remaining patches of LBVI nesting habitat occur on US Department of Defense (DoD) military installations and in US Army Corps of Engineers (USACE) flood control basins. Expenses for ESA compliance related to LBVI are among the highest of all listed bird species, with widespread operational and financial impacts on federal action agencies and military installations. A complex array of threats and stressors interact to threaten LBVI populations, including groundwater extraction, loss of streamflow inputs due to water recycling programs, changing flood and fire regimes, nest parasitism by brown-headed cowbirds (Molothrus ater), and negative impacts to riparian vegetation from invasive non-native plants and insects. One challenge in developing management strategies for recovery is understanding how different stressors may interact, particularly with emerging threats like new invasive species or major changes in disturbance regimes due to climate change. A ~25-minute video describing this project in more detail can be viewed at this link (https://youtu.be/c0DQPcSk-Qg). The goal of this multi-disciplinary, collaborative research project is to develop an individual/agent-based modeling tool that integrates sub-models reflecting different stressors, and synthesizes those sub-models to understand the relative effectiveness of a range of PI- and stakeholder-generated management scenarios.

Position Description/Project Role: The selected person will be supervised within the lab of Dr. Pat Zollner and will work with project Co-PIs (see below) to develop agent-based submodels for Least Bell’s Vireo breeding biology and Brown-headed Cowbird Parasitism. These bird-focused submodels will interact with other process-based (e.g., vegetation succession) and behavior-based (beetle effects on vegetation) submodels, which are being developed by other team members. The aggregation of all sub-models into RESET will allow us to investigate the effects of interacting stressors on vireo habitat and population dynamics in a complex ecological system where applied ecosystem management is common. The applicant will work throughout the entire model development cycle to design, document, and analyze complex agent-based models for vireos and cowbirds using best ABM practices. The project already has a programmer, a current post-doc in Dr. Zollner’s Lab, who is responsible for implementing all agent-based models in code. Therefore, the role of the new post-doctoral scholar or PhD student will be: 1) to focus on designing and documenting structurally realistic bird-focused models 2) interacting with the research team and stakeholders to design and implement simulation experiments and 3) analyzing outputs of simulation experiments to compare potential vireo responses to alternative management scenarios. Finally, the person we hire will prepare journal articles and reports documenting all of the above. Successful applicants will have the following qualifications:

1) Strong skills with scientific writing and preparing reports. As well the ability to read and synthesize extensive data from published papers and technical reports and synthesize important trends from that material.

2) Experience or familiarity with best practices for documenting Agent Based Modeling research (e.g., ODD & TRACE), as well as a commitment to lead in the application of those principles for vireo and cowbird model development.

3) Ability to collaborate with a post-doctoral scholar who is coding this ABM to provide inputs for parameterization, feedback on model design and testing of beta versions of the model.

4) Ability to effectively communicate with external partners and other interested parties to inform designs of scenarios underlying virtual experiments implemented with ABM.

5) Previous experience or interest in learning how to run agent-based modeling software at scale, so that a complex model with thousands of interacting agents can be run hundreds, if not thousands, of times for different analyses working on a computing cluster and/or using cloud-based resources.

This is a unique opportunity for individuals interested in the interface of individual/agent-based modeling, quantitative wildlife conservation, and adaptive management. The position provides relevant experience for a career trajectory within a government agency or a research career at a university or NGO. The post-doctoral scholar will be supervised by Dr. Patrick Zollner (Purdue University Department of Forestry and Natural Resources). New team members will communicate and collaborate regularly with the larger project’s full research team, which includes: Dr. Richard Fischer from the US Army Engineer Research and Development Center; Mr. Casey Lott, Conservation Science and Data Visualization, LLC; Dr. Jeffrey Holland Purdue University Department of Entomology; Ms. Melissa Rohde of Rohde Environmental Consulting LLC; and Dr. Kai-Yin Lin, Purdue University Department of Forestry and Natural Resources.

Specific Duties: The person hired will be responsible for communicating the design, development and application of this ABM. This includes writing and revising ODD model descriptions, contributing to TRACE documentation, and interacting with team members, agency biologists, and the broader scientific community via webinars, conference presentations, and scientific papers. They will play a critical role in engaging with stakeholders to design simulation scenario experiments that integrate sub-models related to different stressors to investigate the implications of management activities. They will collaborate with the research team to prepare and submit manuscripts and reports related describing the results of that research. Responsibility for specific tasks will be assigned on a case-by-case basis but this person will work closely with Dr. Kai-Yin Lin who is coding the model and project Co-PIs on all aspects of this project.

How to Apply: Interested applicants should indicate clearly if they are applying for this position as a PhD student or post-doctoral scholar then they should compile all of the following materials into a single pdf file; a CV that includes contact information for three professional references, a 1-page statement of interest, and responses to the following 7 questions (each of these responses should be 250 words or less). 1. Describe a situation that demonstrates your work ethic and ability to complete complex tasks in a timely manner. 2. Provide an example of a work/academic situation that typifies how you handle adversity when striving to attain a goal. 3. What motivates you to pursue this job, and how will participation in this project help you achieve your career goals? 4. Please describe a specific example from your work/academic experience that demonstrates your curiosity and creativity. 5. What are your strengths and weaknesses with regard to achieving goals individually and in collaboration with others? 6. Why you would be a good fit to fulfill the roles described above for this specific project? 7. What do you find particularly interesting about agent-based modeling in general and this project in particular?

That single pdf should be attached to an email that has a subject line of “Application for Least Bell’s Vireo ABM Project as a postdoctoral scholar” or “Application for Least Bell’s Vireo ABM Project as a PhD student”. That email should be sent to Dr. Patrick Zollner ([email protected]) and applicants should understand that their application materials may be reviewed by other project collaborators as part of application evaluation. Application review will begin as applications are received and continue until a suitable applicant is hired for the position.

Qualifications: Graduate training in wildlife biology, ecological modeling, ornithology, landscape ecology, conservation biology or a related field as well as an interest in Agent Based Modeling and Simulation Modeling to address complex questions in ecological research or applied conservation contexts.

When preparing materials (statement of interest & response to the 7 questions) applicants should explicitly address their scientific writing skills, organizational skills, interest/background in individual/agent-based modeling, quantitative skills, and their ability to work in a team. Applicants should be highly motivated with a documented ability to work independently and collaboratively. The person that we hire should be able to readily interact with partners including government agencies across many levels as well as non-governmental organizations. Applicants with excellent interpersonal skills, experience developing and documenting individual/agent-based models, publishing peer-reviewed journal articles or technical documents, and prior experience with collaborative interdisciplinary projects will be the most competitive. Other skills in quantitative ecology, proficiency in R, familiarity with conservation challenges faced by LBVI, and candidates who bring unique contributions to the diverse perspectives within the Department of Forestry and Natural Resources are all additional elements that will make applicants more competitive.

Purdue is a land-grant university of over 40,000 students and ranked the 10th best public university in the U.S. The Department of Forestry and Natural Resources is housed administratively in the College of Agriculture (#7 US ranking) and offers vibrant, nationally ranked graduate programs in wildlife and ecology. Located in West Lafayette, Indiana, Purdue is an easy drive from Indianapolis and Chicago. The West Lafayette-Lafayette area is home to a diverse community of 174,000, with good schools, safe neighborhoods, over 40 parks and extensive trail systems, active Farmers Markets, and community festivals and art events throughout the year.

Contact Persons: Dr. Patrick Zollner Contact Phones: (765) 496-9495 Contact e-mails: [email protected]

Purdue University is an EOE/AA employer. All individuals, including minorities, women, individuals with disabilities, and veterans are encouraged to apply.


This is a companion discussion topic for the original entry at https://www.comses.net/jobs/608 ]]>
https://forum.comses.net/t/phd-student-or-post-doctoral-scholar-agent-based-modeling-of-least-bell-s-vireo-populations/10943#post_1 Fri, 13 Mar 2026 02:38:19 +0000 forum.comses.net-post-12216
Gender Disparity in COVID-19’s Impact on Academic Careers: An Agent-Based Model

Gender Disparity in COVID-19’s Impact on Academic Careers: An Agent-Based Model (1.0.0)

Prior to COVID-19, female academics accounted for 45% of assistant professors, 37% of associate professors, and 21% of full professors in business schools (Morgan et al., 2021). The pandemic arguably widened this gender gap, but little systemic data exists to quantify it. Our study set out to answer two questions: (1) How much will the COVID-19 pandemic have impacted the gender gap in U.S. business school tenured and tenure-track faculty? and (2) How much will institutional policies designed to help faculty members during the pandemic have affected this gender gap? We used agent-based modeling coupled with archival data to develop a simulation of the tenure process in business schools in the U.S. and tested how institutional interventions would affect this gender gap. Our simulations demonstrated that the gender gap in U.S. business schools was on track to close but would need further interventions to reach equality (50% females). In the long-term picture, COVID-19 had a small impact on the gender gap, as did dependent care assistance and tenure extensions (unless only women received tenure extensions). Changing performance evaluation methods to better value teaching and service activities and increasing the proportion of female new hires would help close the gender gap faster.

Release Notes

Version 8.2 (under review)

Associated Publications


This is a companion discussion topic for the original entry at https://www.comses.net/codebases/42cbf36e-adf1-4c3e-94ea-b7b13b73aa51/releases/1.0.0 ]]>
https://forum.comses.net/t/gender-disparity-in-covid-19-s-impact-on-academic-careers-an-agent-based-model/10942#post_1 Fri, 13 Mar 2026 02:17:15 +0000 forum.comses.net-post-12215
Confirmation Bias improves Performance in a Signal Detection Task and evolves in an Evolutionary Algorithm

Confirmation Bias improves Performance in a Signal Detection Task and evolves in an Evolutionary Algorithm (1.0.0)

Confirmation Bias is usually seen as a flaw of the human mind. However, in some tasks, it may also increase performance. Here, agents are confronted with a number of binary Signals (A, or B). They have a base detection rate, e.g. 50%, and after they detected one signal, they get biased towards this type of signal. This means, that they observe that kind of signal a bit better, and the other signal a bit worse. This is moderated by a variable called “bias_effect”, e.g. 10%. So an agent who detects A first, gets biased towards A and then improves its chance to detect A-signals by 10%. Thus, this agent detects A-Signals with the probability of 50%+10% = 60% and detects B-Signals with the probability of 50%-10% = 40%. Given such a framework, agents that have the ability to be biased have better results in most of the scenarios.

Release Notes

Revised Version prepared for Reviewers

Associated Publications


This is a companion discussion topic for the original entry at https://www.comses.net/codebases/b00bf2b2-0a18-49f2-a621-d16b28c6cafc/releases/1.0.0 ]]>
https://forum.comses.net/t/confirmation-bias-improves-performance-in-a-signal-detection-task-and-evolves-in-an-evolutionary-algorithm/10941#post_1 Fri, 13 Mar 2026 02:00:54 +0000 forum.comses.net-post-12214
Social Media

Social Media (1.0.0)

This project attempts to model how social media platforms recommend a user followers based on their interests, and how those individual interests change as a result of the influences from those they follow/are followed by.

We have three types of users on the platform:

Consumers (🔴), who update their interests based on who they’re following. Creators (⬛), who update their interests based on who’s following them. Bots (⚡), who have fixed interests.

All users follow and unfollow another user on the platform every tick. To visually represent each user’s interests, they are assigned a color representing the weighted average of the interests they hold.

Release Notes

Netlogo Version 6.2 is required to run this model.

The sliders on the interface select the initial settings for the model, as well as provide a graphical overview of what interests have taken over the platform. Click SETUP to initialize the users, and GO to begin the simulation. The colors of each user show what interest they believe in most strongly. If a user follows/is followed by another user, it is represented by a directed link to the person being followed.

INITIAL-NUM specifies the number of the users on the platform, while CONSUMER-PROPORTION/CREATOR-PROPORTION/BOT-PROPORTION control the proportions of each type of user.

MIN-SUBS is the minimum amount of links a user can have before they become tired of the platform, and potentially leave, given that SIGN-UP-AND-EXIT is on.

SIGN-UP-AND-EXIT allows new users to sign up every SIGN-UP-RATE ticks, and exit the platform every EXIT-RATE ticks that pass.

Adjusting the sliders on the interface can impact the outcomes of the model in interesting ways, feel free to experiment and see what you find!

Associated Publications


This is a companion discussion topic for the original entry at https://www.comses.net/codebases/caeadbb5-5070-4f36-afab-ee9fbae8a561/releases/1.0.0 ]]>
https://forum.comses.net/t/social-media/10940#post_1 Thu, 12 Mar 2026 23:28:20 +0000 forum.comses.net-post-12213
An Agent-Based Model of an Insurer's Estimated Capital Requirement in a Simple Insurance Market with Imperfect Information in C#

An Agent-Based Model of an Insurer's Estimated Capital Requirement in a Simple Insurance Market with Imperfect Information in C# (1.0.0)

This is an agent-based model of a simple insurance market with two types of agents: customers and insurers. Insurers set premium quotes for each customer according to an estimation of their underlying risk based on past claims data. Customers either renew existing contracts or else select the cheapest quote from a subset of insurers. Insurers then estimate their resulting capital requirement based on a 99.5% VaR of their aggregate loss distributions. These estimates demonstrate an under-estimation bias due to the winner’s curse effect.

Release Notes

Initial release

Associated Publications


This is a companion discussion topic for the original entry at https://www.comses.net/codebases/f176891d-a4bf-422c-8227-f6357ea67e08/releases/1.0.0 ]]>
https://forum.comses.net/t/an-agent-based-model-of-an-insurers-estimated-capital-requirement-in-a-simple-insurance-market-with-imperfect-information-in-c/10939#post_1 Thu, 12 Mar 2026 22:41:23 +0000 forum.comses.net-post-12212
Cellular automata model of social networks

Cellular automata model of social networks (1.0.0)

This project was developed during the Santa Fe course Introduction to Agent-Based Modeling 2022. The origin is a Cellular Automata (CA) model to simulate human interactions that happen in the real world, from Rubens and Oliveira (2009). These authors used a market research with real people in two different times: one at time zero and the second at time zero plus 4 months (longitudinal market research). They developed an agent-based model whose initial condition was inherited from the results of the first market research response values and evolve it to simulate human interactions with Agent-Based Modeling that led to the values of the second market research, without explicitly imposing rules. Then, compared results of the model with the second market research. The model reached 73.80% accuracy. In the same way, this project is an Exploratory ABM project that models individuals in a closed society whose behavior depends upon the result of interaction with two neighbors within a radius of interaction, one on the relative “right” and other one on the relative “left”. According to the states (colors) of neighbors, a given cellular automata rule is applied, according to the value set in Chooser. Five states were used here and are defined as levels of quality perception, where red (states 0 and 1) means unhappy, state 3 is neutral and green (states 3 and 4) means happy. There is also a message passing algorithm in the social network, to analyze the flow and spread of information among nodes. Both the cellular automaton and the message passing algorithms were developed using the Python extension. The model also uses extensions csv and arduino.

Release Notes

There are two types of agents (breeds): clients (person shape) and service providers (star shape). Each one of them carries an internal state from 0 to 4, and also the amount of information, a float starting at 0 (no information at all) and greater than that (amount of information carried). Each agent breed will choose two neighbors within the radius of interaction: an agent with the same breed as itself and an agent of another breed. This set will be used by the cellular automaton algorithm to generate the future state of the agent. Each agent will then move to the XY coordinate between the two neighbors. Note that in the case of lack of two neighbors, the agent can consider its two neighbors as a single other agent. Information starts at level 1.00 for the individual with the biggest degree (connections in the social network), and 0.00 for all the others. It’s possible to note in the plot that the information flows through the network, increasing or decreasing its value over time. Besides the interaction and the formation of social networks and information spread, the system is also subject to levels of temperature of the environment, measured with a sensor attached to Arduino.

Associated Publications

Zimbres, R.A. Modelagem Baseada em Agentes: uma Terceira Maneira de se Fazer Ciência? ANPAD, Presented at Encontro da Associação Nacional de Pós-Graduação e Pesquisa em Administração, Brasil, 2006.

Zimbres, R.A.; Brito, E.P.Z.; Oliveira, P.P.B. Cellular automata based modeling of the formation and evolution of social networks: A case in Dentistry. In: J. Cordeiro and J. Filipe, eds. Proc. of the 10th Int. Conf. on Enterprise Information Systems, INSTICC Press: Setubal-Portugal, Vol. III: Artificial Intelligence and Decision Support Systems, pp. 333–339, 2008.

Zimbres, R.A., Oliveira,P.P.B. Dynamics of Quality Perception in a Social Network: A Cellular Automaton Based Model in Aesthetics Services. Electronic Notes in Theoretical Computer Science, Elsevier, 252 pp 157–180, 2009.


This is a companion discussion topic for the original entry at https://www.comses.net/codebases/6f05df1d-0e51-403c-a5e8-45a41c99875a/releases/1.0.0 ]]>
https://forum.comses.net/t/cellular-automata-model-of-social-networks/10938#post_1 Thu, 12 Mar 2026 21:53:16 +0000 forum.comses.net-post-12211
An integrated socio-economic Agent-Based Modeling framework towards assessing farmers’ decision making under water scarcity and varying utility function

An integrated socio-economic Agent-Based Modeling framework towards assessing farmers’ decision making under water scarcity and varying utility function (6.1.1)

A spatio-temporal Agent Based Modeling (ABM) framework is developed to probabilistically predict farmers’ decisions in the context of climate-induced water scarcity under varying utility optimization functions. The proposed framework forecasts farmers’ behavior assuming varying utility functions. The framework allows decision makers to forecast the behavior of farmers through a user-friendly platform with clear output visualization. The functionality of the proposed ABM is illustrated in an agriculturally dominated plain along the Eastern Mediterranean coastline.

Study area GIS data available upon request to [email protected]

Release Notes

The model aims at predicting the decision of farmer under the context of water scarcity and future land use changes. The model runs on an annual basis.

Associated Publications


This is a companion discussion topic for the original entry at https://www.comses.net/codebases/d109cddc-9c69-47d0-bec5-8f19bfbc0843/releases/6.1.1 ]]>
https://forum.comses.net/t/an-integrated-socio-economic-agent-based-modeling-framework-towards-assessing-farmers-decision-making-under-water-scarcity-and-varying-utility-function/10936#post_1 Thu, 12 Mar 2026 11:02:25 +0000 forum.comses.net-post-12209
FeedUS - A global food trade model

FeedUS - A global food trade model (1.1.0)

The purpose of the model is to study the impact of global food trade on food and nutrition security in countries around the world. It will incorporate three main aspects of trade between countries, including a country’s wealth, geographic location, and its trade relationships with other countries (past and ongoing), and can be used to study food and nutrition security across countries in various scenarios, such as climate change, sustainable intensification, waste reduction and dietary change.

Release Notes

FEEDUS Model version 20181112 with updated data files

Associated Publications


This is a companion discussion topic for the original entry at https://www.comses.net/codebases/8a004bf7-5468-402e-8796-e5f4f0aa6ecd/releases/1.1.0 ]]>
https://forum.comses.net/t/feedus-a-global-food-trade-model/10935#post_1 Thu, 12 Mar 2026 07:16:48 +0000 forum.comses.net-post-12208
Multi-agent modeling and analysis of the knowledge learning of a human-machine hybrid intelligent organization with human-machine trust

Multi-agent modeling and analysis of the knowledge learning of a human-machine hybrid intelligent organization with human-machine trust (1.1.0)

Machine learning technologies have changed the paradigm of knowledge discovery in organizations and transformed traditional organizational learning to human-machine hybrid intelligent organizational learning. However, it remains unclear how human-machine trust, which is an important factor that influences human-machine knowledge exchange, affects the effectiveness of human-machine hybrid intelligent organizational learning. To explore this issue, we used multi-agent simulation to construct a knowledge learning model of a human-machine hybrid intelligent organization with human-machine trust.

Release Notes

A multi-agent simulation model was constructed by March (1991) to simulate the learning process in an organization. In this process, humans identify the optimal knowledge to be stored in the organization and organizational knowledge is then used by humans. The continuous mutual interaction between members’ knowledge and organizational knowledge promotes the improvement of organizational knowledge. Organizational learning is distinguished as exploration learning and exploitation learning, depending on the human agents’ learning rate for adopting beliefs from the organizational code ( ). To model HMHI organizational learning, Sturm et al. (2021) extended March’s model by including ML agents. In Sturm’s model, ML accepts knowledge input by humans and learns independently, and then deposits the learned knowledge into the organization continuously to form organizational knowledge. The addition of ML allows organizational knowledge to be generated not only by humans but also by humans and ML together. March and Sturm’s models construct a basic framework for collaborative human-machine organizational learning, which facilitates our study of organizational learning with the consideration of human-machine trust. Therefore, based on their models, we construct the HMHI organizational learning model considering human-machine trust.

Associated Publications


This is a companion discussion topic for the original entry at https://www.comses.net/codebases/3b6de0ff-4361-42a0-9fa8-33b5626276e2/releases/1.1.0 ]]>
https://forum.comses.net/t/multi-agent-modeling-and-analysis-of-the-knowledge-learning-of-a-human-machine-hybrid-intelligent-organization-with-human-machine-trust/10934#post_1 Thu, 12 Mar 2026 04:09:43 +0000 forum.comses.net-post-12207
BEEHAVE Extension: Varroa mite control within Good Beekeeping Practice in Germany

BEEHAVE Extension: Varroa mite control within Good Beekeeping Practice in Germany (1.1.0)

The western honey bee Apis mellifera is the most important pollinator in the world. The biggest threat to managed honey bees is the ectoparasitic mite Varroa destructor and the viruses DWV (Deformed Wing Virus) and APV (Acute Paralysis Virus) it transmits. Untreated honey bee colonies are expected to die within one to three years. This led to the development of strategies for beekeepers to control the Varroa mite in honey bee colonies and ensure the health and survival of their bee colonies, so called Good Beekeeping Practice. The aim of the extension of BEEHAVE was to represent the Good Beekeeping Practice of Varroa control in Germany. The relevant measures within the Varroa control strategies are drone brood removal as a Varroa trap and the treatment of bee colonies with organic acaricides (formic and oxalic acid) to kill the mites. This extension improves BEEHAVE and builds a bridge between beekeepers in practice and in the modelling world. It vastly contributes to the future use of BEEHAVE in beekeeping education in Germany.

Release Notes

Addition to the existing BEEHAVE model BEEHAVE_BeeMapp2016 (download under https://www.beehave-model.net). The newly implemented module allows the user to execute varroa mite control strategies, according to the Good Beekeeping Practice, as done in Germany in BEEHAVE.

Associated Publications


This is a companion discussion topic for the original entry at https://www.comses.net/codebases/f2b74150-4911-4c09-8bbf-3062c6d24e02/releases/1.1.0 ]]>
https://forum.comses.net/t/beehave-extension-varroa-mite-control-within-good-beekeeping-practice-in-germany/10933#post_1 Thu, 12 Mar 2026 02:00:55 +0000 forum.comses.net-post-12206
MeReDiem : Fallow Land Simulations to examine the conditions of sustainable village livelihood

MeReDiem : Fallow Land Simulations to examine the conditions of sustainable village livelihood (1.0.1)

The MeReDiem model aims to simulate the effect of socio-agricultural practices of farmers and pastors on the food sustainability and soil fertility of a serrer village, in Senegal. The model is a central part of a companion modeling and exploration approach, described in a paper, currently under review)

The village population is composed of families (kitchens). Kitchens cultivate their land parcels to feed their members, aiming for food security at the family level. On a global level , the village tries to preserve the community fallow land as long as possible.

Kitchens sizes vary depending on the kitchens food production, births and migration when food is insufficient. Solidarity practices in form of parcels loans and food donations are triggered whenever a kitchen is in deficit and another can provide help. Agricultural practices consist in cattle manure usage , faidherbia trees preservation, crop rotation cycle choice and the propension to use fallow land. Basic soil fertility process allow to incorporate the effects of farmers practices on crops yields alongside rainfall.

Agricultural and social mechanisms have been designed according to the village actors sayings. A couple of variations of these mechanisms are provided to represent the observed diversity of practices and in order to test alternative scenarios. The alternative scenarios are used to stimulate discussion with actors , as the primary purpose pursued by the model is social learning.

Release Notes

Update of the previous release (1.0.0) with the correct code directory organization

Associated Publications

this version of the model is associated to a paper currently under review


This is a companion discussion topic for the original entry at https://www.comses.net/codebases/d4183b6b-de60-4536-95c8-3d1cab537235/releases/1.0.1 ]]>
https://forum.comses.net/t/merediem-fallow-land-simulations-to-examine-the-conditions-of-sustainable-village-livelihood/10932#post_1 Thu, 12 Mar 2026 00:08:08 +0000 forum.comses.net-post-12205
Competitive Arousal Agent Based Model

Competitive Arousal Agent Based Model (1.0.0)

What is it?

This model demonstrates a very simple bidding market where buyers try to acquire a desired item at the best price in a competitive environment

How it works

The idea would be to have a bidder market with the following characteristics:

  • 1 Seller or auctioneer who brings a good with identified characteristics: high and low pre-sale estimate

  • Bidders with different propensity to pay for the artwork (value-assessment)

Each Round (tick), the buyers decide to bid a higher amount or drop out. If the asked amount is below the bidder’s value assessment, they’ll bid. If it’s higher, the decision depends on their desire-to-win, if it goes beyond their max bidding amount (value-assessment + desire-to-win), they drop out. Then each bidder individually decides to either raise or not their desire-to-win according to the position of the current asked price in their value assessment (chance of winning) and the remaining competition. For instance, if there are 8 bidders remaining (small competitive arousal), they are unlikely to up their desire-to-win. But if there are only 2 bidders left, they are more likely to enter a bidding war and up their desire-to-win.

The market will run through rounds until only one bidder remains. The sale value of the Item is the last bidded amount.

Release Notes

The generated ABM tries to provide insights on the following question: How are art prices affected by the competitive arousal levels of multiple individuals interacting and competing in an auction sale?

Associated Publications


This is a companion discussion topic for the original entry at https://www.comses.net/codebases/c1c11248-6903-4d9c-a403-ed0ad35e8bab/releases/1.0.0 ]]>
https://forum.comses.net/t/competitive-arousal-agent-based-model/10931#post_1 Wed, 11 Mar 2026 11:02:30 +0000 forum.comses.net-post-12204
Design principles for a redistributive collective action institution in times of crisis

Design principles for a redistributive collective action institution in times of crisis (1.0.0)

What policy measures are effective in redistributing essential resources during crisis situations such as climate change impacts? We model a collective action institution with different rules for designing and organizing it, and make our analysis specific to various societal contexts.

Our model captures a generic societal context of unequal vulnerability and climate change impact in a stylized form. We represent a community of people who harvest and consume an essential resource to maintain their well-being. However, their ability to harvest the resource is not equal; people are characterized by a ‘resource access’ attribute whose values are uniformly distributed from 0 to 1 in the population. A person’s resource access value determines the amount of resource units they are able to harvest, and therefore the welfare levels they are able to attain. People travel to the centralized resource region and derive well-being or welfare, represented as an energy gain, by harvesting and consuming resource units.

The community is subject to a climate change impact event that occurs with a certain periodicity and over a certain duration. The capacity of resource units to regenerate diminishes during the impact events. Unequal capacities to access the essential resource results in unequal vulnerability among people with regards to their ability to maintain a sufficient welfare level, especially during impact events.

To help people maintain their welfare above the sufficiency threshold, the community can set up and operate a ‘resource bank’, which represents a collective action institution that facilitates the redistribution of essential resources in communities. The key characteristics of this institution that we stylize are the cost of setting it up and operating it, its operational lifetime, and the aggregation technology it functions as. In addition, we also seek to represent policy instruments relevant to the institution, viz. different tax policies to fund the collective action institution, and the urgency of this adaptive action, i.e. the level of societal impact needed to motivate it.

In particular, we are interested in evaluating the effects of the following conditions and policies (or rules): 1. The social and political barriers to equitable participation (or inclusion) in decision-making (re. operating the collective action institution); 2. The urgency of the decision-making process, i.e. the level of societal impact or damage needed to motivate it; the impact of the tax policy that funds the collective action institution, as well as the nature of the institution in terms of how it can translate individual contributions to public benefits; and 3. The operational lifetime of the collective action institution, which determines its overall cost, the time period for which it is accessible to those in need, and the frequency with which the decision to set up the institution is made.

Release Notes

Version 1.0.0 is the first release of this model.

Associated Publications


This is a companion discussion topic for the original entry at https://www.comses.net/codebases/fedf4785-96fd-4c2a-8a64-848d07fcf943/releases/1.0.0 ]]>
https://forum.comses.net/t/design-principles-for-a-redistributive-collective-action-institution-in-times-of-crisis/10930#post_1 Wed, 11 Mar 2026 09:54:17 +0000 forum.comses.net-post-12203
Myside Bias and Group Discussion

Myside Bias and Group Discussion (1.0.0)

The my-side bias is a well-documented cognitive bias in the evaluation of arguments, in which reasoners in a discussion tend to overvalue arguments that confirm their prior beliefs, while undervaluing arguments that attack their prior beliefs. This agent-based model in Netlogo simulates a group discussion among myside-biased agents, within a Bayesian setting. This model is designed to investigate the effects of the myside bias on the ability of groups to reach a consensus or collectively track the correct answer to a given binary issue.

Release Notes

The model simulates a group discussions over a binary issue between myside biased agents, i.e. agents that undervalue arguments that attack their prior belief, and overvalue arguments that confirm their prior belief. The objective of our model is to assess the extent to which the myside bias, i.e. the tendency to overvalue/undervalue arguments depending on their fit with one’s own prior belief, affect the ability of the group to find the correct answer to the binary issue under discussion. In particular, the model is built to answer the question: does the myside bias help or hinder the ability of groups to find the correct answer to a binary issue?

Associated Publications

The Wisdom of the Small Crowd: Myside Bias and Group Discussion, with Zoé Christoff, Stephan Hartmann and Rineke Verbrugge, Journal of Artificial Societies and Social Simulations (forthcoming)


This is a companion discussion topic for the original entry at https://www.comses.net/codebases/68a53ba2-8cfd-4805-bb16-5e8bd6840d25/releases/1.0.0 ]]>
https://forum.comses.net/t/myside-bias-and-group-discussion/10929#post_1 Tue, 10 Mar 2026 00:03:03 +0000 forum.comses.net-post-12202
Systems Special Issue: Integrating System Dynamics with AI and Other Analytical Methods: Advancements and Applications for Decision Making with/within Complex Systems

Systems Special Issue: Integrating System Dynamics with AI and Other Analytical Methods: Advancements and Applications for Decision Making with/within Complex Systems

This issue explores the innovative intersection of systemic and analytical methods. In an era where complex challenges are becoming the norm, integrating these methodologies offers new avenues for understanding, modeling, and solving multifaceted problems. We aim to promote studies that develop and apply integrated approaches leveraging the strengths of systemic thinking and analytical methodologies to understand, model, and intervene in complex systems.

Submissions are encouraged from a broad range of topics, including, but not limited to:

  • Theoretical frameworks for integrating system dynamics with AI and machine learning.
  • Methodological innovations and best practices for integrating the systemic and analytical methods.
  • Empirical studies that employ combined methodologies to solve complex problems in various domains.
  • Case studies on integrating approaches in policy analysis, strategic planning, and decision support.

For more information: https://www.mdpi.com/journal/systems/special_issues/5W811F1853


This is a companion discussion topic for the original entry at https://www.comses.net/events/756 ]]>
https://forum.comses.net/t/systems-special-issue-integrating-system-dynamics-with-ai-and-other-analytical-methods-advancements-and-applications-for-decision-making-with-within-complex-systems/10928#post_1 Mon, 09 Mar 2026 19:52:59 +0000 forum.comses.net-post-12201
CFP: MABS 2022 – The 23rd Multi-Agent-Based Simulation workshop (hosted at AAMAS 2022)

MABS 2022 – The 23rd Multi-Agent-Based Simulation Workshop hosted at AAMAS 2022 (Auckland, New Zealand) May 9-10, 2022

Website: https://mabsworkshop.github.io/

==Call for Papers== MABS 2022 is part of the AAMAS 2022 conference taking place in Auckland, New Zealand on May 9-13, 2022.

We welcome your paper submissions from all areas of multi-agent-based simulation and particularly also of work in early stages, which can benefit from active discussions.

==Relevant Topics== The range of technical issues that MABS has dealt with, and continues to deal with, is quite diverse and extensive. Topics relevant to this workshop include, but are not limited to, the following: • Simulation methodologies (Standards for MABS, Methodologies and simulation languages for MABS, Simulation platforms and tools for MABS, Visualization and analytic tools, Approaches for large-scale simulations, Scalability and robustness in MABS, Future challenges in MABS) • Simulation of Social and Intelligent behavior (Formal and agent models of social behavior, Cognitive modelling and simulation, Game theory and simulation, Social structure, social networks and simulating organizations, Simulating social complexity) • Applications and Empirical Work (MABS in environmental organizations, MABS and cloud computing, Agent-based experimental economics, Participative-based simulation, MABS and games, MABS in governance and policymaking) • Simulation Analytics (Application of data analytics and machine learning methods to the analysis of large-scale simulations)

The ongoing COVID-19 pandemic has brought about renewed interest in modelling of disease (and measures to control it) in societies. We intend for 2022 to include a special session on simulations related to the crisis, e.g., Modelling of transmission processes, societies, or effects of interventions. We especially encourage the submission of novel and original approaches that are not fully developed and can benefit from discussions.

==Target Audience== The workshop will provide a forum for social scientists, MAS and AI researchers and developers, as well as simulation researchers, to assess the current state of the art in the modelling and simulation of social systems and MAS, to identify where existing approaches can be successfully applied, to learn about new approaches and explore future research challenges, and to exchange ideas and knowledge in an inter-disciplinary environment. The workshop will be of interest to researchers engaged in modelling and analysis of multi-agent systems, and those interested in applying agent-based simulation techniques to real-world problems. In addition, it will attract researchers committed to cross-cutting research that is complementary to more orthodox modelling approaches.

MABS intends to be a place where researchers can exchange ideas about their work and we are looking forward to the community meeting once again in person. At the same time, we are also planning for the possibility that the global public health situation might require us to run the workshop as a partly or fully virtual event. In such a context, we will adapt the program and provide the tools so that researchers from all around the world can participate to the event. Even in an online workshop, we will endeavor to create the space for informal exchange of ideas and to get to know each other, for example in panel discussions or digital break-out rooms on topics identified during the workshop by the participants.

==Submission of Papers (Deadline: Feb 6, 2022)== Submissions are limited to 12 pages formatted according to Springer LNCS style and must be electronically submitted before the submission deadline through the workshop conference system, which is available at: https://easychair.org/conferences/?conf=mabs2022. All contributions will be peer-reviewed by two or three independent PC members. The evaluation criteria of contributions will be based on originality, quality, clarity, and its relevance to the workshop. All accepted papers will be printed in the AAMAS workshop proceedings. In addition, following the tradition of the previous MABS workshops, we intend to publish the accepted papers, after a further reviewing process, in the Springer Multi-Agent-Based Simulation book series, LNAI.

==Important Dates== Submission deadline: extended to: Feb 6, 2022 Notification of acceptance or rejection: Feb 27, 2022 Camera ready versions: Mar 6, 2022 MABS 2022 will take place: May 9-10, 2022

Submissions (EasyChair): https://easychair.org/conferences/?conf=mabs2022 CFP: https://easychair.org/cfp/MABS2022

For further questions related to the workshop, please email mabs2022(at)easychair(dot)org or visit https://mabsworkshop.github.io/.

==Program Chairs== Emma Norling and Fabian Lorig on behalf of the MABS Steering Committee


This is a companion discussion topic for the original entry at https://www.comses.net/events/616 ]]>
https://forum.comses.net/t/cfp-mabs-2022-the-23rd-multi-agent-based-simulation-workshop-hosted-at-aamas-2022/10927#post_1 Mon, 09 Mar 2026 14:25:31 +0000 forum.comses.net-post-12200
A Data-Driven Approach of Layout Evaluation for Electric Vehicle Charging Infrastructure Using Agent-Based Simulation and GIS

A Data-Driven Approach of Layout Evaluation for Electric Vehicle Charging Infrastructure Using Agent-Based Simulation and GIS (1.0.0)

The development and popularisation of new energy vehicles have become a global consensus. The shortage and unreasonable layout of electric vehicle charging infrastructure (EVCI) have severely restricted the development of electric vehicles. In the literature, many methods can be used to optimise the layout of charging stations (CSs) for producing good layout designs. However, more realistic evaluation and validation should be used to assess and validate these layout options. This study suggested an agent-based simulation (ABS) model to evaluate the layout designs of EVCI and simulate the driving and charging behaviours of electric taxis (ETs). In the case study of Shenzhen, China, GPS trajectory data were used to extract the temporal and spatial patterns of ETs, which were then used to calibrate and validate the actions of ETs in the simulation. The ABS model was developed in a GIS context of an urban road network with travelling speeds of 24 h to account for the effects of traffic conditions. After the high-resolution simulation, evaluation results of the performance of EVCI and the behaviours of ETs can be provided in detail and in summary. Sensitivity analysis demonstrates the accuracy of simulation implementation and aids in understanding the effect of model parameters on system performance. Maximising the time satisfaction of ET users and reducing the workload variance of EVCI were the two goals of a multiobjective layout optimisation technique based on the Pareto frontier. The location plans for the new CS based on Pareto analysis can significantly enhance both metrics through simulation evaluation.

Release Notes

The video of the simulation can be downloaded in the Output (Results) sections.

Associated Publications


This is a companion discussion topic for the original entry at https://www.comses.net/codebases/68fdf788-6b8c-44a1-9c38-62cbca344b4e/releases/1.0.0 ]]>
https://forum.comses.net/t/a-data-driven-approach-of-layout-evaluation-for-electric-vehicle-charging-infrastructure-using-agent-based-simulation-and-gis/10926#post_1 Mon, 09 Mar 2026 08:46:38 +0000 forum.comses.net-post-12199
Computational Social Scientist, 4-month+ Contract with sistemaFutura

Computational Social Scientist, 4-month+ Contract with sistemaFutura

At sistemaFutura, we combine simulation modeling and behavioral science to study and address complex problems. We work on a range of issues, from gender-based violence to climate adaptation and financial inequality. Across each model, the concept is the same: we build empirically calibrated, theoretically guided models of a complex problem, which we analyze for opportunities for meaningful improvement. We then work hand in hand with a range of stakeholders, especially in international development, to act on those opportunities: deploying them in real life, and rigorously measuring their impact.

We are a new company, but we already have need for more people. In particular, we have two projects that need an experienced computational social scientist in the near term. We’ll need extra help on these projects for at least four months; we anticipate additional need after that, but can’t guarantee it yet.


This is a companion discussion topic for the original entry at https://www.comses.net/jobs/636 ]]>
https://forum.comses.net/t/computational-social-scientist-4-month-contract-with-sistemafutura/10925#post_1 Mon, 09 Mar 2026 07:46:06 +0000 forum.comses.net-post-12198
Agent-Based Model of a Circular Food Packaging Ecosystem to assess Packaging Waste Dynamics

Agent-Based Model of a Circular Food Packaging Ecosystem to assess Packaging Waste Dynamics (1.0.0)

Reducing packaging waste is a critical challenge that requires organizations to collaborate within circular ecosystems, considering social, economic, and technical variables like decision-making behavior, material prices, and available technologies. Agent-Based Modeling (ABM) offers a valuable methodology for understanding these complex dynamics. In our research, we have developed an ABM to explore circular ecosystems’ potential in reducing packaging waste, using a case study of the Dutch food packaging ecosystem. The model incorporates three types of agents—beverage producers, packaging producers, and waste treaters—who can form closed-loop recycling systems.

Beverage Producer Agents: These agents represent the beverage company divided into five types based on packaging formats: cans, PET bottles, glass bottles, cartons, and bag-in-boxes. Each producer has specific packaging demands based on product volume, type, weight, and reuse potential. They select packaging suppliers annually, guided by deterministic decision styles: bargaining (seeking the lowest price) or problem-solving (prioritizing high recycled content).

Packaging Producer Agents: These agents are responsible for creating packaging using either recycled or virgin materials. The model assumes a mix of monopolistic and competitive market situations, with agents calculating annual material needs. Decision styles influence their choices: bargaining agents compare recycled and virgin material costs, while problem-solving agents prioritize maximum recycled content. They calculate recycled content in packaging and set prices accordingly, ensuring all produced packaging is sold within or outside the model.

Waste Treater Agents: Representing Dutch waste sorters, incinerators, and recyclers, these agents handle waste based on material type. They recycle a portion of collected waste annually, with recycling rates varying slightly. Prices for recycled materials depend on previous supply relationships and decision styles: bargaining agents increase prices for profit, while problem-solving agents lower prices to promote closed-loop recycling. They ensure recycled materials are sold to packaging producers or external entities.

The ABM integrates organizational decision-making theory to simulate different decision styles and rules. Experimentation results suggest that even a few organizations prioritizing circularity over individual profit can significantly reduce packaging waste. The decision style of beverage producers is crucial in ecosystems focused on profit maximization. Centralized waste management could stabilize recycled material supply and reduce fluctuations in recycled content.

Implemented in NetLogo, the model uses environment variables to assess circular practices’ impact on waste reduction. It highlights the potential of collaborative circular ecosystems to achieve sustainability goals.

Release Notes

The ABM can be used for experimentation with different circular ecosystems, offering flexibility to change most of the input variables.

Associated Publications


This is a companion discussion topic for the original entry at https://www.comses.net/codebases/ce78d47d-3970-47c4-91cd-734c8889af27/releases/1.0.0 ]]>
https://forum.comses.net/t/agent-based-model-of-a-circular-food-packaging-ecosystem-to-assess-packaging-waste-dynamics/10924#post_1 Mon, 09 Mar 2026 06:59:04 +0000 forum.comses.net-post-12197
Post Doctoral Scholar ABM Modeling Least Bells Vireo Populations

Title: Modeling Interacting Stressors & Management Strategies on Least Bell’s Vireo Populations

Institution: Purdue University, Department of Forestry and Natural Resources

Location: West Lafayette, IN

Job Category: Post-Doctoral Scholar

Salary: Commensurate with selected candidates experience and standards for Post-doctoral scholars in the Department of Forestry and Natural Resources at Purdue University.

Duration of Appointment: Applicant will be hired for a minimum of one year. Funding is available to support a post-doctoral scholar for the four-year duration of this project pending approval of additional funds after the completion of the first two project years.

Pertinent Websites: https://www.purdue.edu/fnr/sites/zollner/

Start Date: August 15 2022. Funding may be available for the selected candidate to start earlier in the summer of 2022 if they prefer.

Description: The federally endangered Least Bell’s Vireo (LBVI, Vireo bellii pusillus) nests in narrow riparian areas surrounded by the heavily urbanized matrix of Southern California. Several of the largest remaining patches of LBVI nesting habitat occur on US Department of Defense (DoD) military training areas and in US Army Corps of Engineers (USACE) flood control basins. Expenses for ESA compliance related to LBVI are among the highest of all listed bird species, with widespread operational and financial impacts on federal action agencies and military installations. A complex array of threats and stressors interact to threaten LBVI populations, including groundwater extraction, loss of streamflow inputs due to water recycling programs, changing flood and fire regimes, nest parasitism by brown-headed cowbirds (Molothrus ater), and negative impacts to riparian vegetation from invasive non-native plants and insects. One challenge in developing management strategies for recovery is understanding how different stressors may interact, particularly with emerging threats like new invasive species or major changes in disturbance regimes due to climate change. A ~25-minute video describing this project in more detail can be viewed at this link (https://youtu.be/c0DQPcSk-Qg). The goal of this research project is to develop an individual/agent-based modeling tool that integrates sub-models reflecting different stressors, and synthesizes those sub-models to understand the relative effectiveness of a range of PI- and stakeholder-generated management scenarios. The selected post-doctoral scholar will work closely with PhD students in the labs of Dr. Pat Zollner and Dr. Jeff Holland as well as with all project Co-PIs (see below) and end users to fill these knowledge gaps by addressing 3 objectives:

1) designing, developing, and implementing an agent-based model that integrates sub-models (developed by collaborators) associated with multiple stressors to assess their interactive influence upon LBVI populations;

2) collaborating with relevant agency and NGO partners to design a spectrum of realistic management scenarios across the LBVI range and use the agent based model to simulate these scenarios and assess their relative effectiveness; and

3) publishing manuscripts describing the research underlying the first two objectives and delivering the agent based model and documentation to end users.

This is a unique opportunity for individuals interested in the interface of individual/agent-based modeling, quantitative ecology, wildlife biology, conservation biology and ornithology. The position provides applied experience for a career trajectory in local, state, or federal agencies or a research career focused on the fields of quantitative ecology or conservation biology. The post-doctoral scholar will be advised by Dr. Patrick Zollner (Purdue University Department of Forestry and Natural Resources). The student’s research will be a collaboration with; Dr. Richard Fischer from the US Army Engineer Research and Development Center, Mr. Casey Lott Conservation Science and Data Visualization, LLC, Dr. Jeffrey Holland Purdue University Department of Entomology, and Ms. Melissa Rohde of CA TNC.

Specific Duties: The post-doctoral scholar will serve as the hub coordinating the design and code compatibility of sub-models from all project collaborators. They will play a critical role in designing and coding the overarching model that integrates sub-models related to different stressors as well simulation experiments that investigate the interactive effects of those stressors and their implications for management activities. Responsibility for specific tasks will remain TBD until the entire team is assembled and the relative strengths and interests of all participants have been assessed.

How to Apply: Interested applicants should compile all of the following materials into a single pdf file; a CV that includes contact information for three professional references, a 1-page statement of interest, and responses to the following 5 questions (each of these responses should be 250 words or less).

  1. Describe a situation that demonstrates your work ethic and ability to complete complex tasks in a timely manner.
  2. Provide an example of a work/academic situation that typifies how you handle adversity when striving to attain a goal.
  3. What motivates you to pursue post-doctoral scholarship, and how will participation in this project prepare you to achieve your career goals?
  4. Please describe a specific example from your work/academic experience that demonstrates your curiosity and creativity.
  5. What are your strengths and weaknesses with regard to achieving goals individually and in collaboration with others?

That single pdf should be attached to an email that has a subject line of “Application for Post-Doctoral Scholar on Least Bell’s Vireo ABM”. That email should be sent to Dr. Patrick Zollner ([email protected]) and applicants should understand that their application materials may be reviewed by other project collaborators as part of application evaluation. Application review will begin 8:00 AM on June 6 2022.

Qualifications: PhD in Ecological Modelling, Wildlife Biology or a related discipline.

When preparing materials (statement of interest & response to 5 questions) applicants should explicitly address their demonstrated organizational skills, interest/background in individual/agent-based modeling, quantitative skills, and their ability to mentor others. Applicants should be highly motivated with a demonstrated ability to work independently and collaboratively. The post-doctoral scholar that we hire should be able to readily interact with partners including government agencies across many levels as well as non-governmental organizations. Applicants with experience publishing peer-reviewed journal articles, a strong work ethic, demonstrated technical writing ability, training in ecological modeling, excellent interpersonal skills, demonstrated skill or skill potential in quantitative ecology and proficiency in R will be most competitive. Experience developing individual/agent-based models in NetLogo or equivalent platforms, knowledge related to optimizing solutions to network structure challenges, familiarity with conservation challenges faced by LBVI, as well as candidates who bring unique contributions to the diverse perspectives within the Department of Forestry and Natural Resources are all additional elements that will make applicants more competitive.

Purdue is a land-grant university of over 40,000 students and ranked the 10th best public university in the U.S. The Department of Forestry and Natural Resources is housed administratively in the College of Agriculture (#7 US ranking) and offers vibrant, nationally ranked graduate programs in wildlife and ecology. Located in West Lafayette, Indiana, Purdue is an easy drive from Indianapolis and Chicago. The West Lafayette-Lafayette area is home to a diverse community of 174,000, with good schools, safe neighborhoods, over 40 parks and extensive trail systems, active Farmers Markets, and year-long community festivals and art events.

Contact Persons: Dr. Patrick Zollner Contact Phones: (765) 430-7858 Contact e-mails: [email protected]


This is a companion discussion topic for the original entry at https://www.comses.net/jobs/557 ]]>
https://forum.comses.net/t/post-doctoral-scholar-abm-modeling-least-bells-vireo-populations/10923#post_1 Mon, 09 Mar 2026 04:56:51 +0000 forum.comses.net-post-12196
Agent-based model of team decision-making in hidden profile situations

Agent-based model of team decision-making in hidden profile situations (1.0.0)

The model presented here is extensively described in the paper ‘Talk less to strangers: How homophily can improve collective decision-making in diverse teams’ (forthcoming at JASSS). A full replication package reproducing all results presented in the paper is accessible at https://osf.io/76hfm/.

Narrative documentation includes a detailed description of the model, including a schematic figure and an extensive representation of the model in pseudocode.

The model develops a formal representation of a diverse work team facing a decision problem as implemented in the experimental setup of the hidden-profile paradigm. We implement a setup where a group seeks to identify the best out of a set of possible decision options. Individuals are equipped with different pieces of information that need to be combined to identify the best option. To this end, we assume a team of N agents. Each agent belongs to one of M groups where each group consists of agents who share a common identity. The virtual teams in our model face a decision problem, in that the best option out of a set of J discrete options needs to be identified. Every team member forms her own belief about which decision option is best but is open to influence by other team members. Influence is implemented as a sequence of communication events. Agents choose an interaction partner according to homophily h and take turns in sharing an argument with an interaction partner. Every time an argument is emitted, the recipient updates her beliefs and tells her team what option she currently believes to be best. This influence process continues until all agents prefer the same option. This option is the team’s decision.

Release Notes

first release

Associated Publications

forthcoming


This is a companion discussion topic for the original entry at https://www.comses.net/codebases/e2d16fa2-38f0-48cb-829f-e8feef6f15c0/releases/1.0.0 ]]>
https://forum.comses.net/t/agent-based-model-of-team-decision-making-in-hidden-profile-situations/10922#post_1 Mon, 09 Mar 2026 02:13:53 +0000 forum.comses.net-post-12195
4. Programmer and visualization specialist

4. Programmer and visualization specialist

Whiteshield Partners is a global strategy & public policy advisory firm with a track record of delivering innovative perspectives and tangible results to an established portfolio of leaders from governments, international organizations and Fortune 500 companies. Whiteshield Partners is hiring a talented front-end and Python programmer, who is familiar with data visualization.

In This Position You Will: o Design and develop data analysis and visualization tools o Build simple web-front ends for simulations o Support the development of Agent-Based Models as well as other simulations and models o Profile and optimize code for speed

Required Qualifications o High proficiency in Python o Familiarity with data visualisation o Minimum BA in computer science, physics, mathematics, or a related field with corresponding emphasis on visualization, computational science, and good software development practice o Strong communication skills o Proficiency with version controlling using GIT

Preferred Qualifications o Contribution to open-source projects o Familiarity with plotly and plotly Dash are an advantage o Familiarity with Cuda or GPU programming is an advantage o Demonstrated experience developing and delivering practical solutions to scientific visualization problems o JavaScript is a plus o experience in PEP8 compliant code o Experience in profiling and optimize code for speed o Experience with Continuous Integration

The role is based in Dubai. The role is a permanent position. A 7 month Dubai 5 month work from anywhere scheme is available. For further inquiries about the Data Science and Modelling Practice mail to [email protected] For applications and inquiries about Whiteshield Partners mail to [email protected]


This is a companion discussion topic for the original entry at https://www.comses.net/jobs/525 ]]>
https://forum.comses.net/t/4-programmer-and-visualization-specialist/10921#post_1 Sun, 08 Mar 2026 22:14:48 +0000 forum.comses.net-post-12194
A Computational Simulation for Task Allocation Influencing Performance in the Team System

A Computational Simulation for Task Allocation Influencing Performance in the Team System (1.0.0)

This model system aims to simulate the whole process of task allocation, task execution and evaluation in the team system through a feasible method. On the basis of Complex Adaptive Systems (CAS) theory and Agent-based Modelling (ABM) technologies and tools, this simulation system attempts to abstract real-world teams into MAS models. The author designs various task allocation strategies according to different perspectives, and the interaction among members is concerned during the task-performing process. Additionally, knowledge can be acquired by such an interaction process if members encounter tasks they cannot handle directly. An artificial computational team is constructed through ABM in this simulation system, to replace real teams and carry out computational experiments. In all, this model system has great potential for studying team dynamics, and model explorers are encouraged to expand on this to develop richer models for research.

Release Notes

This simulation system is based on a preliminary model to explore the relationship between individual components and group level of performance. This system aims to focus on the impact of interaction among members on group performance under different task allocation strategies, and mainly paying attention to the influence of a single allocation outcome on interpersonal interactions and group performance.

Associated Publications

(1) Wang, S., Dang, Y. & Wu, J. How Task Allocation Strategy Affects Team Performance: A Computational Experiment. J. Syst. Sci. Syst. Eng. 27, 656–676 (2018). https://doi.org/10.1007/s11518-018-5387-3 (2) Wang, S., Dang, Y., Wu, J. (2017). The Effect of Task Allocation Strategy on Knowledge Intensive Team Performance Based on Computational Experiment. In: Chen, J., Theeramunkong, T., Supnithi, T., Tang, X. (eds) Knowledge and Systems Sciences. KSS 2017. Communications in Computer and Information Science, vol 780. Springer, Singapore. https://doi.org/10.1007/978-981-10-6989-5_19


This is a companion discussion topic for the original entry at https://www.comses.net/codebases/03cbd78f-eed2-4cd5-aec3-8ae8aef23887/releases/1.0.0 ]]>
https://forum.comses.net/t/a-computational-simulation-for-task-allocation-influencing-performance-in-the-team-system/10920#post_1 Sun, 08 Mar 2026 11:35:02 +0000 forum.comses.net-post-12193
CfP Special Issue "Systemic and Quantitative Methods for the Analysis of Societal Threats"

Dear Colleagues,

In recent years, our society has been challenged by numerous societal threats that have emerged from different sources. Many events have threatened democratic values, such as online election manipulation, radicalization, the “normalization” of extreme behavior, and the re-emergence of racist phenomena across all the spectra of social life. Additionally, other events have brought political instability, conflicts, and terrorist activities, while others are still posing significant challenges for dealing with climate change, appropriately responding to global epidemics, and sustainably managing natural resources. For example, the recent events in Afghanistan illustrate how fringe, extremist groups can still rise to prominence with blind attacks (Kabul airport), while at the same time, the world is still trying to understand how the Taliban will govern and what the consequences in the area, in terms of both the power dynamics (the power balance in the Middle East) and the exploitation and management of natural resources (oil and gas lines, rare minerals, etc.), will be.

Thus, it has become critical to design policies that mitigate these threats without producing unintended consequences for our society or planet, or infringing on fundamental human rights, which the United Nations proclaimed in 1948 in a document entitled the “Universal Declaration of Human Rights” (https://www.un.org/en/about-us/universal-declaration-of-human-rights) (UDHR).

We believe that addressing and better understanding these issues could benefit from the application of systemic and quantitative methods (e.g., analytical methods, different simulation paradigms, optimization techniques, probabilistic approaches, etc.), regardless of whether such challenges are not easily quantified, are dynamic and history-dependent, are composed of many tightly coupled interdependent factors, and contain many nonlinear relationships and delays. Addressing these issues is challenging because they are often counterintuitive, as cause and effect are distant in time and space, resistant to intervention policies, and commonly characterized by trade-offs between short- and long-term impacts and goals.

Examples of such approaches are neither new nor isolated. For example, Sandberg (2000) used system dynamics to investigate the routes of democracy’s global diffusion from 1800 until 2000. Stave (2002) used simulation to illustrate how public participation in environmental decisions can be improved, while Hirsch et al. (2007) modeled how educational reform can impact society. Só et al. (2017) used a system dynamics model to investigate the vicious cycle of low human development observed in Guinea-Bissau, in which the authors found political instability and several coups among its root causes. Finally, Armenia et al. (2020) used systemic thinking and system dynamics to illustrate how racism permeates football and how it can be dealt with.

The methodology is not limited to such general societal issues; specific problems are also addressed. Armenia and Sellito (2014) asserted that quantitative methods can be used to detect acts of opinion manipulation in online forums, Armenia and Tsaples (2017) used epidemiological models to analyze how individual behavior could help or hinder the diffusion of cyberthreats, and finally, Pruyt et al. (2015) used system dynamics to help policymakers to design and test the effectiveness of policies enacted to mitigate the consequences of foreign fighters.

However, such issues are not addressed only through simulation and system dynamics. Armenia and Sellitto (2014) outlined a framework that combines simulation, network analysis, and control theory with the purpose of supporting regional impact analysis. Finally, other methodologies such as game theory have a long tradition in dealing with issues, from voting (Brams, 2008); (Kling, Kunegis, Hartmann, Strohmaier, & Staab, 2015) to designing strategies for searching communities in networks (Narayanam & Narahari, 2012).

Our society is facing severe environmental challenges that threaten our survival and endanger the future of our planet. One iconic study was published by Meadows et al. (1972), where the authors, using a computer simulation model, concluded that, without drastic changes to resource consumption patterns and due to the uncontrolled population and economic growth, the Earth would be doomed to ecological overshoot and pending disaster. Since then, several studies have explored many aspects of these environmental challenges, such as global warming, severe climate changes, water supply crises due to climate-change effects, energy transition (i.e., aiming at renewable and sustainable sources), etc.

The Special Issue is focused on applying such methods to subjects that somehow impose threats to our society, our planet, and proclaimed fundamental human rights, which can manifest in several domains. Studies that use these methods in the following areas (for example, but not limited to these) are sought:

  • Bullying;
  • The management of renewable and nonrenewable natural resources;
  • Global warming and climate change;
  • Energy transition and decarbonization;
  • Epidemics and health policies;
  • Online meddling in elections;
  • Political instability and conflicts;
  • Racism in society and racism in sports;
  • Radicalization and measures to prevent it;
  • Terrorist organizations and activities;
  • Waste management.

The methods could include but are not limited to the following:

  • Agent-based modeling;
  • Discrete events;
  • Optimization;
  • Multi-criteria decision aids;
  • Game theory;
  • Graph theory;
  • Probabilistic methods;
  • Network analysis;
  • System dynamics;
  • Hybrid approaches and combinations of all the above.

Dr. Stefano Armenia Dr. George Tsaples Dr. Eduardo Ferreira Franco Guest Editors


This is a companion discussion topic for the original entry at https://www.comses.net/events/615 ]]>
https://forum.comses.net/t/cfp-special-issue-systemic-and-quantitative-methods-for-the-analysis-of-societal-threats/10919#post_1 Sun, 08 Mar 2026 09:02:34 +0000 forum.comses.net-post-12192
Perspectives on the Information-Based Economy

Perspectives on the Information-Based Economy (1.0.0)

This is the agent-based model of information market evolution. It simulates the influences of the transition from material to electronic carriers of information, which is modelled by the falling price of variable production factor. It demonstrates that due to zero marginal production costs, the competition increases, the market becomes unstable, and experience various phases of evolution leading to market monopolization.

Release Notes

The model was constructed and simulations were run on NetLogo version 6.2.2. Newer versions of NetLogo may also work, however they were not tested. The model may be run directly within the NetLogo or custom scripts written in different languages may be used to run headless NetLogo model. For more reproducible results, we recommend running simulations by R script using the package RNetLogo.

Associated Publications


This is a companion discussion topic for the original entry at https://www.comses.net/codebases/ff110f9e-cb44-4393-9461-bdcb0cbb9f6b/releases/1.0.0 ]]>
https://forum.comses.net/t/perspectives-on-the-information-based-economy/10918#post_1 Sun, 08 Mar 2026 05:50:27 +0000 forum.comses.net-post-12191
Agent-Based Model of Transhumant Decision-Making Processes in Senegal

Agent-Based Model of Transhumant Decision-Making Processes in Senegal (1.0.0)

Sahelian transhumance is a type of socio-economic and environmental pastoral mobility. It involves the movement of herds from their terroir of origin (i.e., their original pastures) to one or more host terroirs, followed by a return to the terroir of origin.  According to certain pastoralists, the mobility of herds is planned to prevent environmental degradation, given the continuous dependence of these herds on their environment. However, these herds emit Greenhouse Gases (GHGs) in the spaces they traverse. Given that GHGs contribute to global warming, our long-term objective is to quantify the GHGs emitted by Sahelian herds. The determination of these herds’ GHG emissions requires: (1) the artificial replication of the transhumance, and (2) precise knowledge of the space used during their transhumance. This article presents the design of an artificial replication of the transhumance through an agent-based model named MSTRANS. MSTRANS determines the space used by transhumant herds, based on the decision-making process of Sahelian transhumants. MSTRANS integrates a constrained multi-objective optimization problem and algorithms into an agent-based model. The constrained multi-objective optimization problem encapsulates the rationality and adaptability of pastoral strategies. Interactions between a transhumant and its socio-economic network are modeled using algorithms, diffusion processes, and within the multi-objective optimization problem. The dynamics of pastoral resources are formalized at various spatio-temporal scales using equations that are integrated into the algorithms. The results of MSTRANS are validated using GPS data collected from transhumant herds in Senegal. MSTRANS results highlight the relevance of integrated models and constrained multi-objective optimization for modeling and monitoring the movements of transhumant herds in the Sahel. Now specialists in calculating greenhouse gas emissions have a reproducible and reusable tool for determining the space occupied by transhumant herds in a Sahelian country. In addition, decision-makers, pastoralists, veterinarians and traders have a reproducible and reusable tool to help them make environmental and socio-economic decisions.

Release Notes

None

Associated Publications

https://doi.org/10.18564/jasss.5445


This is a companion discussion topic for the original entry at https://www.comses.net/codebases/8927a46b-0bb6-4030-8db7-8c64f50854bb/releases/1.0.0 ]]>
https://forum.comses.net/t/agent-based-model-of-transhumant-decision-making-processes-in-senegal/10917#post_1 Sun, 08 Mar 2026 00:50:45 +0000 forum.comses.net-post-12190
A Computational Simulation for Task Allocation Influencing Performance in the Team System

A Computational Simulation for Task Allocation Influencing Performance in the Team System (1.1.0)

This model system aims to simulate the whole process of task allocation, task execution and evaluation in the team system through a feasible method. On the basis of Complex Adaptive Systems (CAS) theory and Agent-based Modelling (ABM) technologies and tools, this simulation system attempts to abstract real-world teams into MAS models. The author designs various task allocation strategies according to different perspectives, and the interaction among members is concerned during the task-performing process. Additionally, knowledge can be acquired by such an interaction process if members encounter tasks they cannot handle directly. An artificial computational team is constructed through ABM in this simulation system, to replace real teams and carry out computational experiments. In all, this model system has great potential for studying team dynamics, and model explorers are encouraged to expand on this to develop richer models for research.

Release Notes

This simulation system is based on a preliminary model to explore the relationship between individual components and group level of performance. This system aims to focus on the impact of interaction among members on group performance under different task allocation strategies, and mainly pay attention to the influence of a single allocation outcome on interpersonal interactions and group performance.

Associated Publications

(1) Wang, S., Dang, Y. & Wu, J. How Task Allocation Strategy Affects Team Performance: A Computational Experiment. J. Syst. Sci. Syst. Eng. 27, 656–676 (2018). https://doi.org/10.1007/s11518-018-5387-3 (2) Wang, S., Dang, Y., Wu, J. (2017). The Effect of Task Allocation Strategy on Knowledge Intensive Team Performance Based on Computational Experiment. In: Chen, J., Theeramunkong, T., Supnithi, T., Tang, X. (eds) Knowledge and Systems Sciences. KSS 2017. Communications in Computer and Information Science, vol 780. Springer, Singapore. https://doi.org/10.1007/978-981-10-6989-5_19


This is a companion discussion topic for the original entry at https://www.comses.net/codebases/03cbd78f-eed2-4cd5-aec3-8ae8aef23887/releases/1.1.0 ]]>
https://forum.comses.net/t/a-computational-simulation-for-task-allocation-influencing-performance-in-the-team-system/10916#post_1 Sun, 08 Mar 2026 00:48:47 +0000 forum.comses.net-post-12189
Models associated with paper entitled "Polarization in Social Media: A Virtual Worlds-Based Approach"

Models associated with paper entitled "Polarization in Social Media: A Virtual Worlds-Based Approach" (1.0.0)

This model contains MATLAB code describing the virtual worlds framework used in the paper entitled “Polarization in Social Media: A Virtual Worlds-Based Approach.” The parent directory contains driver code for replicating results from the paper. Additionally, the source code is structured by three directories:

  • Data Structures: Contains classes and objects used in the code, such as the virtualWorlds.m
  • Metrics: Contains code which computes metrics, such as congruentLinks.m
  • Visualization: Contains code for generating pictures and plots, such as drawSystemState.m

Please see the README file within the source code for more information.

Release Notes

Initial release

Associated Publications

Source code for the paper “Polarization in Social Media: A Virtual Worlds-Based Approach” in Journal of Artificial Societies and Social Simulation 26 (3) 11. The URL link is the following: https://www.jasss.org/26/3/11.html


This is a companion discussion topic for the original entry at https://www.comses.net/codebases/731b221c-438c-4ffa-b2c1-006a253a5999/releases/1.0.0 ]]>
https://forum.comses.net/t/models-associated-with-paper-entitled-polarization-in-social-media-a-virtual-worlds-based-approach/10915#post_1 Sat, 07 Mar 2026 23:58:40 +0000 forum.comses.net-post-12188
Learning Extension - RAGE RAngeland Grazing Model

Learning Extension - RAGE RAngeland Grazing Model (1.0.0)

This is an extension of the original RAGE model (Dressler et al. 2018), where we add learning capabilities to agents, specifically learning-by-doing and social learning (two processes central to adaptive (co-)management).

The extension module is applied to smallholder farmers’ decision-making - here, a pasture (patch) is the private property of the household (agent) placed on it and there is no movement of the households. Households observe the state of the pasture and their neighrbours to make decisions on how many livestock to place on their pasture every year. Three new behavioural types are created (which cannot be combined with the original ones): E-RO (baseline behaviour), E-LBD (learning-by-doing) and E-RO-SL1 (social learning). Similarly to the original model, these three types can be compared regarding long-term social-ecological performance. In addition, a global strategy switching option (corresponding to double-loop learning) allows users to study how behavioural strategies diffuse in a heterogeneous population of learning and non-learning agents.

An important modification of the original model is that extension agents are heterogeneous in how they deal with uncertainty. This is represented by an agent property, called the r-parameter (household-risk-att in the code). The r-parameter is catch-all for various factors that form an agent’s disposition to act in a certain way, such as: uncertainty in the sensing (partial observability of the resource system), noise in the information received, or an inherent characteristic of the agent, for instance, their risk attitude.

Release Notes

v.1.0.0, extension of the original RAGE model, equips agents with learning capabilities.

Associated Publications


This is a companion discussion topic for the original entry at https://www.comses.net/codebases/e103feef-2785-41e6-affb-8306c979e83c/releases/1.0.0 ]]>
https://forum.comses.net/t/learning-extension-rage-rangeland-grazing-model/10914#post_1 Sat, 07 Mar 2026 23:35:27 +0000 forum.comses.net-post-12187