# sample.els # # illustrate input format for elevator simulation # # Ethan Bolker # April 2003 # '#' is the comment character - ignore it and following text on line # blank lines are acceptable. 2 # number of elevators 12 # number of floors - for Healey LL1 LL2 2 3 4 5 6 7 8 9 10 11 2 # main floor (0 based, so for Healey floor 2 really is 2) 12 # capacity of each elevator 2.5 # time for first passenger to leave elevator (after doors are open) 6 # time for first passenger to enter elevator 2 # time for doors to open once elevator has arrived at a floor 3 # time for doors to close after last passenger has gotten on # time for elevator to travel up between adjacent floors: 11 7 7 7 7 7 7 7 7 7 7 # time for elevator to travel down between adjacent floors: 11 7 7 7 7 7 7 7 7 7 7 # probability that a passenger on board leaves at floor f 1.0 0.7 0.9 0.5 0.3 0.2 0.5 0.3 0.5 0.1 0.1 1.0 # passengers/second arriving at a floor 0.0067 0.04 0.06 0.03 0.013 0.0167 0.057 0.01 0.05 0.0067 0.043 0.0167 # probability that a person arriving at a floor wants to go up # (these values assume all trips are to or from main, which is 2) 1.0 1.0 0.8 0 0 0 0 0 0 0 0 0 # measured average total trip time from main to floor f 9 7 0 7 11 14 17 21 25 29 34 37 # measured average total trip time from floor f to main 15 11 0 20 24 29 33 38 44 47 52 57