The Emergence of Intersectionality

The Emergence of Intersectionality preview image

1 collaborator

Default-person Riccardo Iorio (Author)

Tags

(This model has yet to be categorized with any tags)
Visible to everyone | Changeable by everyone
Model was written in NetLogo 6.4.0 • Viewed 154 times • Downloaded 22 times • Run 0 times
Download the 'The Emergence of Intersectionality' modelDownload this modelEmbed this model

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


WHAT IS IT?

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

HOW IT WORKS

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

HOW TO USE IT

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

THINGS TO NOTICE

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

THINGS TO TRY

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

EXTENDING THE MODEL

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

NETLOGO FEATURES

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

RELATED MODELS

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

CREDITS AND REFERENCES

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

Comments and Questions

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

Click to Run Model

globals [
  n-of-players
  n-of-players-group-1
  n-of-players-group-2
  n-of-players-group-3
  n-of-players-group-4
  prop-high-demand-group-1
  prop-high-demand-group-2
  prop-high-demand-group-3
  prop-high-demand-group-4
  high-demand-group-1
  high-demand-group-2
  high-demand-group-3
  high-demand-group-4
  played?
]

players-own [
  group
  payoff
  strategy
  strategy-after-revision
]

breed [players player]

;;;;;;;;;;;;;
;;; SETUP ;;;
;;;;;;;;;;;;;

to setup
  clear-all
  no-display
  setup-players
  reset-ticks
end 

to setup-players
  let group-distribution read-from-string n-of-players-for-each-group

  let i 1
  foreach group-distribution [ j ->
    create-players j [
      set group i
      set payoff 0
      set strategy (random 11)
      set strategy-after-revision strategy
      set played? false
    ]
    set i (i + 1)
  ]

  set n-of-players count players
  set n-of-players-group-1 count players with [group = 1]
  set n-of-players-group-2 count players with [group = 2]
  set n-of-players-group-3 count players with [group = 3]
  set n-of-players-group-4 count players with [group = 4]
  set high-demand-group-1 count players with [group = 1 and strategy > 5]
  set high-demand-group-2 count players with [group = 2 and strategy > 5]
  set high-demand-group-3 count players with [group = 3 and strategy > 5]
  set high-demand-group-4 count players with [group = 4 and strategy > 5]
end 

;;;;;;;;;;
;;; GO ;;;
;;;;;;;;;;

to go
  ask players [set played? false]
  ask players [update-strategy-after-revision]
  ask players [update-strategy]
  set-group-high-demands
  tick
end 

;;;;;;;;;;;;;
;;; UPDATE ;;;
;;;;;;;;;;;;;

to update-payoff
  let mate one-of players
  ifelse ([strategy] of mate) + strategy <= 10 [
      set payoff strategy
    ]
    [
      (
        ifelse
        group = 1 [
          set payoff disagreement-point-group-1
        ]
        group = 2 [
          set payoff disagreement-point-group-2
        ]
        group = 3 [
          set payoff disagreement-point-group-3
        ]
        group = 4 [
          set payoff disagreement-point-group-4
        ]
       )
    ]
  set played? true
end 

to update-strategy-after-revision
  let mate one-of other players
  if ([group] of mate) = group [
  if not played? [update-payoff]
  ask mate [if not played? [update-payoff]]
  if ([payoff] of mate) > payoff [
    set strategy-after-revision ([strategy] of mate)
   ]
  ]
end 

to update-strategy
  set strategy strategy-after-revision
end 

to set-group-high-demands
  set prop-high-demand-group-1 high-demand-group-1 / n-of-players-group-1
  set prop-high-demand-group-2 high-demand-group-2 / n-of-players-group-2
  set prop-high-demand-group-3 high-demand-group-3 / n-of-players-group-3
  set prop-high-demand-group-4 high-demand-group-4 / n-of-players-group-4
end 

to-report dummy-group-1
  ifelse prop-high-demand-group-1 > 0.5 [report 1] [report 0]
end 

to-report dummy-group-2
  ifelse prop-high-demand-group-2 > 0.5 [report 1] [report 0]
end 

to-report dummy-group-3
  ifelse prop-high-demand-group-3 > 0.5 [report 1] [report 0]
end 

to-report dummy-group-4
  ifelse prop-high-demand-group-4 > 0.5 [report 1] [report 0]
end 

There is only one version of this model, created 8 months ago by Riccardo Iorio.

Attached files

File Type Description Last updated
The Emergence of Intersectionality.png preview Preview for 'The Emergence of Intersectionality' 8 months ago, by Riccardo Iorio Download

This model does not have any ancestors.

This model does not have any descendants.