Airline System Dynamics II - Chaos

Airline System Dynamics II - Chaos preview image

1 collaborator

Tags

(This model has yet to be categorized with any tags)
Part of project 'Chaos Theory and Complexity'
Visible to everyone | Changeable by the author
Model was written in NetLogo 6.2.2 • Viewed 206 times • Downloaded 9 times • Run 0 times
Download the 'Airline System Dynamics II - Chaos' modelDownload this modelEmbed this model

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


Info tab cannot be displayed because of an encoding error

Comments and Questions

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

Click to Run Model

;; system-dynamics-setup, system-dynamics-do-plot, and system-dynamics-go are automatically
;; generated by the System Dynamics Modeler.  The code can be viewed in the
;; Code Tab of the System Dynamics Modeler.

globals [market_share_1
         market_share_2
         market_share_3
         market_share_4
         Total_Fitness]

to setup
  clear-all
  system-dynamics-setup
end 

to go
  system-dynamics-go
  set Total_Fitness Company1 + Company2 + Company3 + Company4

  set market_share_1 Company1 / Total_Fitness
  set market_share_2 Company2 / Total_Fitness
  set market_share_3 Company3 / Total_Fitness
  set market_share_4 Company4 / Total_Fitness

  if ticks >= transient

  [ set-current-plot "Company 1"
    plot market_share_1
    set-current-plot "Company 2"
    plot market_share_2
    set-current-plot "Company 3"
    plot market_share_3
    set-current-plot "Company 4"
    plot market_share_4

   set-current-plot "Company 1 vs Company 2"
   plotxy market_share_1 market_share_2
   set-current-plot "Company 1 vs Company 3"
   plotxy market_share_1 market_share_3
   set-current-plot "Company 1 vs Company 4"
   plotxy market_share_1 market_share_4
  ]
end 


; Copyright 2005 Uri Wilensky.
; See Info tab for full copyright and license.

There is only one version of this model, created over 2 years ago by Carlos Pedro S. Gonçalves.

Attached files

File Type Description Last updated
Airline System Dynamics II - Chaos.png preview Preview for 'Airline System Dynamics II - Chaos' over 2 years ago, by Carlos Pedro S. Gonçalves Download

This model does not have any ancestors.

This model does not have any descendants.