ABM for Female Founders
Do you have questions or comments about this model? Ask them here! (You'll first need to log in.)
WHAT IS IT?
This interactive model allows the user to alter the conditions of a simulated world of venture capital so as to make it more or less friendly to female founders.
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
breed [ FFs a-FF ] breed [ VCs a-VC ] FFs-own [ energy ] to setup clear-all ask patches [ set pcolor 93 ] create-FFs 50 [ setxy random-xcor random-ycor set color 29 set energy random 14 set shape "star" set size 1 ] create-VCs 600 [ setxy random-xcor random-ycor set shape "line half" set size 1 if (VC-behavior = "harasser") [ set color red ] if (VC-behavior = "supporter") [ set color yellow ] if (VC-behavior = "discourager") [ set color grey ] if (VC-behavior = "funder") [ set color green ] if (VC-behavior = "mixed") [set color one-of [ red yellow red green yellow grey grey yellow grey yellow grey ] ] ] reset-ticks end to go ask FFs [ navigate ;; first turn a little bit in each direction move ;; then step forward check-if-broken ;; checks to see if FF has broken ;;triumph ;; FF funds her company trailblaze;; triumphant FF brings 2 more FFs into the system ] ask VCs [ navigate move if (color = red) and (random-float 1.0 < harass) [ harass-FFs ] if (color = yellow) and (random-float 1.0 < support) [ support-FFs ] if (color = grey) and (random-float 1.0 < discourage) [ discourage-FFs ] if (color = green) and (random-float 1.0 < fund) [ fund-FFs ] ] tick end to navigate ;; turn right then left, so the average direction is straight ahead right random 90 left random 90 end to move forward 1 end to check-if-broken if energy < 0 [ die ] end to harass-FFs let prey one-of FFs-here if prey != nobody [ask prey [ set energy energy - 4 ] ] end to support-FFs let prey one-of FFs-here if prey != nobody [ask prey [ set energy energy + 1 ] ] end to discourage-FFs let prey one-of FFs-here if prey != nobody [ask prey [ set energy energy - 1] ] end to fund-FFs let prey one-of FFs-here if prey != nobody [ask prey [ set energy energy + 25] ] end to trailblaze ask FFs [ if energy > 100 [ set energy energy - 60 hatch 2 [ set energy 13 ] set color yellow set size 1.5 ] ] end
There are 3 versions of this model.
Attached files
File | Type | Description | Last updated | |
---|---|---|---|---|
ABM for Female Founders.png | preview | Preview for 'ABM for Female Founders' | about 8 years ago, by Katie Carlin | Download |
This model does not have any ancestors.
This model does not have any descendants.