Edelman et al

Edelman et al preview image

1 collaborator

Default-person Eleanor Anderson (Author)

Tags

(This model has yet to be categorized with any tags)
Part of project 'Organizational Change Set'
Model group MAM-2013 | Visible to everyone | Changeable by the author
Model was written in NetLogo 5.0.4 • Viewed 334 times • Downloaded 25 times • Run 0 times
Download the 'Edelman et al' modelDownload this modelEmbed this model

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


Comments and Questions

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

Click to Run Model

breed [ companies company ]
breed [ associations association ]
breed [ courts court ]

directed-link-breed [ jurisdictions jurisdiction ]
directed-link-breed [ memberships membership ]

companies-own [policy]

to setup
  clear-all
  
  create-companies 50
  [ set shape "house" ]
  create-associations 1
  [ set shape "circle 2" 
    set size 2 ]
  create-courts 1
  [ set shape "building institution"
    set size 3.5 ]
  
  create-network
  
  reset-ticks
end 

to create-network
  ask courts
  [ ask companies
    [ create-jurisdiction-from myself] ]
  ask companies
   [ create-membership-to one-of associations ]
  repeat 30 [ layout-spring turtles links 0.2 5 1 ]
end 

to go
  
  ask courts
  [ determine-compliance-standards
    sanction-non-compliers ]
  ask companies
  [ adjust-policies ]
;  advise
end 

to determine-compliance-standards
  ask companies
  []
  ;; I don't think I want courts to ask all companies equally
  ;; I think some get more attention/weight than others
end 

to sanction-non-compliers
    ;; if companies are out of compliance, sanction them
end 

to adjust-policies
  ask companies
  [
    ;; take wisdom from professionals
    ;; follow market rationality/guess what courts will do
    
    
    ]  
end 


;to advise
;  ask associations
;  []
;  
;end

There is only one version of this model, created almost 11 years ago by Eleanor Anderson.

Attached files

File Type Description Last updated
Edelman et al.png preview Preview for 'Edelman et al' almost 11 years ago, by Eleanor Anderson Download
EleanorAnderson_ 5 27 13.docx word initial model description almost 11 years ago, by Eleanor Anderson Download

This model does not have any ancestors.

This model does not have any descendants.