Next Article in Journal
On the Information Content of Coarse Data with Respect to the Particle Size Distribution of Complex Granular Media: Rationale Approach and Testing
Next Article in Special Issue
An Entropy-Based Design Evaluation Model for Architectural Competitions through Multiple Factors
Previous Article in Journal
On the Logic of a Prior Based Statistical Mechanics of Polydisperse Systems: The Case of Binary Mixtures
Previous Article in Special Issue
Bipartite Structures in Social Networks: Traditional versus Entropy-Driven Analyses
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

Investigating the Randomness of Passengers’ Seating Behavior in Suburban Trains

Department of Computer Science and Mathematics, Munich University of Applied Sciences, Lothstr. 34, 80335 Munich, Germany
*
Author to whom correspondence should be addressed.
Entropy 2019, 21(6), 600; https://doi.org/10.3390/e21060600
Submission received: 24 April 2019 / Revised: 12 June 2019 / Accepted: 12 June 2019 / Published: 17 June 2019
(This article belongs to the Special Issue Entropy and Information in Networks, from Societies to Cities)

Abstract

:
In pedestrian dynamics, individual-based models serve to simulate the behavior of crowds so that evacuation times and crowd densities can be estimated or the efficiency of public transportation optimized. Often, train systems are investigated where seat choice may have a great impact on capacity utilization, especially when passengers get in each other’s way. Therefore, it is useful to reproduce passengers’ behavior inside trains. However, there is surprisingly little research on the subject. Do passengers distribute evenly as it is most often assumed in simulation models and as one would expect from a system that obeys the laws of thermodynamics? Conversely, is there a higher degree of order? To answer these questions, we collect data on seating behavior in Munich’s suburban trains and analyze it. Clear preferences are revealed that contradict the former assumption of a uniform distribution. We subsequently introduce a model that matches the probability distributions we observed. We demonstrate the applicability of our model and present a qualitative validation with a simulation example. The model’s implementation is part of the free and open-source Vadere simulation framework for pedestrian dynamics and thus available for further studies. The model can be used as one component in larger systems for the simulation of public transport.

1. Introduction

Pedestrian dynamics span a wide field of research from empirical studies to mathematical modeling [1]. Microscopic, that is, individual-based models of human locomotion are used to simulate crowd motion and study emergent behavior (see [2,3,4] for overviews). The goal is often to improve safety by estimating evacuation times and crowd densities [5,6,7,8,9] while also optimizing efficiency in public transport. For example, passenger exchange times are estimated by having virtual pedestrians leave and board trains [10]. Thus, it seems necessary to correctly reproduce passengers’ behavior inside a train. It is common practice to assume a uniform distribution of passengers in the train (see, e.g., [11]) or at least on the seats, partly for convenience but mostly because there is no accepted empirical evidence on the subject. However, we argue that the positions of passengers has an influence on passenger exchange times. For example, window seats are a little further away from the exits than aisle seats. More importantly, the seating positions determine how much passengers get in each other’s way. Passengers sitting directly across each other cannot get up at the same time, while passengers sitting diagonally across can. This may cost precious seconds during extremely short inner city stops. In addition, many simulation models are inspired by entropy-based multiple particle systems [12]. However, this entails an implicit assumption on the entropy of human seating behavior. In this study, we aimed at validating or falsifying this assumption by observing empiric distributions.
Our second goal was to build a simulation model that matches our observations. The literature on simulation models is extensive. Simulation software can cope with common scenarios including gates, queues [13,14,15,16,17], stairs, and multiple floors [14,15,18,19,20,21]. However, validated software that models more complex social interactions, such as helping, is still rare. While well-designed frameworks that allow, in principle, to add on or easily build behavioral models exist (e.g., [22]), the behaviors that are implemented usually lack an empirical foundation [1]. There are few exceptions [11]. At this point, we are not aware of any specific simulation models for trains but there are several related publications on boarding schemes for airplanes [23,24,25].
Empirical studies are the only way to validate models of human behavior that aim at quantitatively predicting phenomena. An extensive survey of controlled experiments and field observations published in peer-reviewed scientific journals can be found in [1]. The research is ongoing. Interestingly, some valuable information on seating behavior that we found, using the terms “choice of seating” and “preferred seating” combined with “public transport” and “trains” in English and German on Google Scholar, was provided in journals that target practitioners where, unfortunately, it is likely to be overlooked by academic research. There are studies on the degree of capacity utilization [26], baggage on trains [26,27,28], passenger exchange times [29,30], and train interior design [28]. Studies on seating layouts and passengers’ seating behavior in trains are discussed by several authors. For example, New York commuters who have to sit close to other passengers experience adverse reactions [31], Australian passengers try to “retreat into their personal ‘bubble’”, for example, by acquiring a seat as quickly as possible [32]. Both observations fit well with the more general concept of personal space which persons try to safeguard [33]. Preferred facing directions on the Washington Metro are investigated in [34], and preferred seat choices on German inter-city trains in [35]. A survey on passengers’ valuation of seating layouts in British public transportation is presented in [36]. Other research focuses on the inflow process when people enter a room [37,38,39,40]. The participants could not sit down in the experiments of these studies, but some aspects are related to our work. Regarding the choice of wagon, we did not find any quantitative data during our literature research. Various authors [30,37,38,41] look at the distribution of passengers on the platform and the waiting process. On a qualitative level, passengers develop habits as a means to build a private zone [32]. Experts of Munich public transport (MVV) with whom we discussed our project emphasize the role of the local layout of the start and end stations of passenger journeys, which is corroborated in [30].
Overall, prior reports seem to suggest that there are a number of influences on seating behavior that foster preferences in seat choices. However, there are few results on people’s seating behavior on trains that can be used to build a simulation model. Our study also aimed at closing this gap. In the following sections, we present empirical data on how single passengers sit down in relation to other passengers. We built a seating model from our observations and implemented it within the open-source Vadereisimulation framework. See [42,43,44] and the website www.vadere.org for an introduction to the software. Next, we verified the model’s implementation by comparing simulated data to data from a field observation. Then, we qualitatively validated the model by demonstrating that the train fills up in a visually realistic manner. Both methods are based on a simulation run with real passenger counts. We conclude with a short summary, a discussion, and inspiration for future work in this field.

2. Material and Methods

2.1. Field Observation: Data Collection

The first author used his own smart phone app, on a Nexus 6 with Android OS, over a period of several weeks, to collect fully anonymous passenger data on his train ride to and from Munich University of Applied Sciences in Munich’s suburban trains (S-Bahn). We chose to write an app not only for convenience but also to mitigate the risk for a personal bias caused by the single observer. Predefined choices forced him to be systematic. The app also allowed him to be quick in order to not miss behavioral events. He observed single compartments (see Figure 1) during train rides, logging relevant events such as sitting down, leaving, and placement of baggage. While he also collected information on the estimated age group and gender of passengers, we did not, in this contribution, investigate the effect on seating preferences. For more details, especially on requirements for and testing of the app, we refer to [45].

2.2. Field Observation: Data Analysis

For data analysis, we used R, a language for statistical computing. We tested the R code for data processing and analysis with the R unit test frameworks RUnit and especially testthat [46]. The test code amounted to about 600 lines of test cases split into 8 source files. Both data and code are open-source and hosted at GitHub: https://github.com/schoettl/seating-data. The data are licensed under the Public Domain Dedication and License (PDDL) while the code is licensed under the MIT License.
For all observed preferences, binomial tests were conducted using the exact binomial test binom.test from R’s stats package to see whether they are statistically significant. The significance level was set to α = 0.05 .

3. Results

3.1. Seating Preferences

We only report statistically significant results. The total number of observed incidents depends on what we investigated. For easy reading, we state it in each figure with “ n = total number of observed incidents ”. Passengers prefer empty seat groups or, more generally, they prefer the seat group with the fewest occupants (see Figure 2 and Figure 3). Apparently, passengers try to maximize the distance to other passengers, which is in line with the safeguarding of personal space described in psychological studies [32,33] and in particular with the discomfort experienced when sitting close to others reported in [31]. When a seat group is empty, forward seats are chosen more often than backward seats, and window seats more often than aisle seats (Figure 4). When one seat is already taken, the choice diagonally across wins (Figure 5).
During his train rides, the first author observed that passengers often choose one of the compartments next to their entrance area. In the same anecdotal way, he observed that, once passengers have chosen a direction, they rather proceed to the next compartment instead of turning around and going back, and, when passengers choose a compartment in a different train section, they tend to directly walk to this section. Systematic surveys on this behavior would be interesting follow-up studies.

3.2. The Seating Model: Algorithm and Test

For our seating model, we used a combination of cognitive heuristics [19] and random assignment according to the empirical distributions. That is, we let the simulated agents make decisions depending on the situation they are confronted with when entering the train: they choose their seats with a probability that matches the empirical preferences.
The algorithm’s first decision is whether the passenger wants to sit at all. For this work, we assumed that all passengers wish to sit. According to the findings in [32], this may be a reasonable assumption for most passengers, since a seat offers a protected space. For simplicity, we did not consider reasons to keep standing, for example when a passenger needs to exit in a very crowded situation [32]. The rest of the algorithm consists of three steps: choosing a compartment, choosing a seat group, and choosing a seat therein (see Figure 6). We used a truncated normal distribution to assign each agent a compartment where they sit down. For the choices of seat group and seat, we used the relative frequencies from our field observations that were statistically significant. Otherwise, we used a uniform distribution. The chosen seat was then assigned as target in the floor field-based navigation of the Optimal Steps Model [42,43] in the Vadereisimulation framework [44]. That is, agents find their paths to their seats by optimizing, in each step they take, a utility function that is coded in the floor-field. The closer they are to the seat, the higher is their utility. Distance to the seat is not measured through Euclidean distance but by computing geodesics [4,47] so that obstacles are skirted. Other agents cause a dip in utility so that agents keep a distance to each other. Stepping on other agents is completely excluded. Alternatives would be the Behavioral Heuristics Model [48], the Gradient Navigation Model [49] or any other microscopic locomotion model that can handle the fine spatial resolution of the geometry of Munich’s ET-423 S-Bahn train. A coarse spatial resolution, as common in most cellular automata, may lead to passengers getting stuck unless one forgoes the paradigm of one agent per cell [50]. Some special cases, such as a full compartment or that another passenger snatches one’s chosen seat, have to be handled. For this and for parameter choices in the Optimal Steps Model, we refer to [45].
We conducted simulation runs to test our implementation. Since we used the statistical distribution as an input, correct reproduction of the empirical data amounted to verification. Figure 7 and Figure 8 are examples for the series of comparisons. Further data comparisons can be found in the first author’s master thesis [45]. For standard statistical tests ( χ 2 and Watson- U 2 ), the null hypothesis that the two data sets have the same distribution was not rejected at the 5% level.
We achieved a qualitative validation by visually examining the plausibility of simulation runs (Figure 9). At each virtual train station, new agents board the train through doors marked in green. No passengers alight, so that the train gets fuller and fuller.

4. Conclusions

We designed a study on passengers’ seating behavior on trains, developed a mobile app to support data logging, collected data, and processed and analyzed the data with respect to the choice of seating. Thus, we gained quantitative distributions on where passengers prefer to sit in a compartment and in a seat group. We revealed clear preferences, and thus a degree of order compared to the uniform distribution that is often assumed for convenience. Based on the results of the data analysis, we designed a model for seating behavior and implemented it in the open-source crowd simulation software Vaderei, where it is available for further studies. The model can easily be included in larger simulation systems for public transport to make predictions of important control quantities such as flow, density or passenger exchange times more realistic. Our results are in line with psychological findings, namely the fact that people like to safeguard their personal space, keeping a distance from others. In the context of entropy, we interpret the psychological factors as external influences, or energy, that introduce a certain degree of order to the transportation system, and thus reduce the entropy of this open system. In summary, we were able to fill a gap in pedestrian dynamics: an empirically substantiated seating model.
For many applications, the model could be refined: psychological factors, such as the influence of gender or age on the seat choice, or the behavior of groups, as well as the reasons behind the choice of compartments, would be interesting follow-up studies. An empirical study and model of the deboarding process would complement this work and allow better predictions of passenger exchange times. Quantitative studies on wagon choices would not only advance modeling but directly help to fill trains in a safer and more efficient way.

Author Contributions

Conceptualization, G.K. and M.J.S.; methodology, J.S.; software, J.S.; validation, J.S. and M.J.S.; formal analysis, J.S. and M.J.S.; investigation, J.S.; resources, J.S. and G.K.; data curation, J.S.; writing—original draft preparation, J.S. and G.K.; writing—review and editing, G.K.; visualization, J.S.; supervision, M.J.S. and G.K.; project administration, G.K.; and funding acquisition, G.K.

Funding

This work was partially funded by the German Federal Ministry of Education and Research through the project MultikOSi (multi-criteria integration for openness and safety) on assistance systems for urban events [grant number 13N12824]. The APC was funded by the open access publication fund of Munich University of Applied Sciences.

Acknowledgments

Thank you to Tilman Dürbeck for discussing thermodynamics.

Conflicts of Interest

The authors declare no conflict of interest.

References

  1. Haghani, M.; Sarvi, M. Crowd behaviour and motion: Empirical methods. Transp. Res. Part B Methodol. 2018, 107, 253–294. [Google Scholar] [CrossRef]
  2. Hamacher, H.W.; Tjandra, S.A. Mathematical Modelling of Evacuation Problems: A State of Art; Technical report; Fraunhofer-Institut für Techno-und Wirtschaftsmathematik ITWM: Kaiserslautern, Germany, 2001. [Google Scholar]
  3. Dietrich, F.; Köster, G.; Seitz, M.; von Sivers, I. Bridging the gap: From cellular automata to differential equation models for pedestrian dynamics. J. Comput. Sci. 2014, 5, 841–846. [Google Scholar] [CrossRef]
  4. Seitz, M.J.; Dietrich, F.; Köster, G.; Bungartz, H.J. The superposition principle: A conceptual perspective on pedestrian stream simulations. Collective Dyn. 2016, 1, A2. [Google Scholar] [CrossRef]
  5. Klüpfel, H.; Meyer-König, T.; Wahle, J.; Schreckenberg, M. Microscopic simulation of evacuation processes on passenger ships. In Theory and Practical Issues on Cellular Automata; Bandini, S., Worsch, T., Eds.; Springer: London, UK, 2001; pp. 63–71. [Google Scholar]
  6. Kirchner, A.; Schadschneider, A. Simulation of evacuation processes using a bionics-inspired cellular automaton model for pedestrian dynamics. Phys. A Stat. Mech. Appl. 2002, 312, 260–276. [Google Scholar] [CrossRef] [Green Version]
  7. Pelechano, N.; Badler, N.I. Modeling crowd and trained leader behavior during building evacuation. IEEE Comput. Graph. Appl. 2006, 26, 80–86. [Google Scholar] [CrossRef] [PubMed]
  8. Alizadeh, R. A dynamic cellular automaton model for evacuation process with obstacles. Saf. Sci. 2011, 49, 315–323. [Google Scholar] [CrossRef]
  9. Gao, Z.; Qu, Y.; Li, X.; Long, J.; Huang, H.J. Simulating the dynamic escape process in large public places. Oper. Res. 2014, 62, 1344–1357. [Google Scholar] [CrossRef]
  10. Köster, G.; Hartmann, D.; Klein, W. Microscopic pedestrian simulations: From passenger exchange times to regional evacuation. In Operations Research Proceedings 2010: Selected Papers of the Annual International Conference of the German Operations Research Society; Hu, B., Morasch, K., Pickl, S., Siegle, M., Eds.; Springer: Berlin/Heidelberg, Germany, 2011; pp. 571–576. [Google Scholar]
  11. Von Sivers, I.; Templeton, A.; Künzner, F.; Köster, G.; Drury, J.; Philippides, A.; Neckel, T.; Bungartz, H.J. Modelling social identification and helping in evacuation simulation. Saf. Sci. 2016, 89, 288–300. [Google Scholar] [CrossRef] [Green Version]
  12. Bellomo, N.; Bellouquid, A. On multiscale models of pedestrian crowds from mesoscopic to macroscopic. Commun. Math. Sci. 2015, 13, 1649–1664. [Google Scholar] [CrossRef]
  13. Chraibi, M.; Seyfried, A.; Schadschneider, A. Generalized centrifugal-force model for pedestrian dynamics. Phys. Rev. E 2010, 82, 046111. [Google Scholar] [CrossRef] [Green Version]
  14. Arita, C.; Schadschneider, A. Density profiles of the exclusive queuing process. J. Stat. Mech. Theory Exp. 2012, 2012, P12004. [Google Scholar] [CrossRef] [Green Version]
  15. Kim, I.; Galiza, R.; Ferreira, L. Modeling pedestrian queuing using micro-simulation. Transp. Res. Part A Policy Pract. 2013, 49, 232–240. [Google Scholar] [CrossRef]
  16. Köster, G.; Zönnchen, B. Queuing at bottlenecks using a dynamic floor field for navigation. Transp. Res. Procedia 2014, 2, 344–352. [Google Scholar] [CrossRef]
  17. Kneidl, A. How do people queue? A study of different queuing models. In Traffic and Granular Flow ’15; Springer: Cham, Switzerland, 2015. [Google Scholar]
  18. Köster, G.; Lehmberg, D.; Dietrich, F. Is slowing down enough to model movement on stairs? In Traffic and Granular Flow ’15; Knoop, V.L., Daamen, W., Eds.; Springer International Publishing: Nootdorp, The Netherlands, 2016; pp. 35–42. [Google Scholar]
  19. Seitz, M.J.; Bode, N.W.F.; Köster, G. How cognitive heuristics can explain social interactions in spatial movement. J. R. Soc. Interface 2016, 13, 20160439. [Google Scholar] [CrossRef] [PubMed]
  20. Chen, J.; Ma, J.; Lo, S.M. Geometric constraint based pedestrian movement model on stairways. Physcial A 2018, 505, 1212–1230. [Google Scholar] [CrossRef]
  21. Köster, G.; Lehmberg, D.; Kneidl, A. Walking on stairs: Experiment and model. Physical Review 2019. submitted. [Google Scholar]
  22. Curtis, S.; Best, A.; Manocha, D. Menge: A modular framework for simulating crowd movement. Collective Dyn. 2016. [Google Scholar] [CrossRef]
  23. Steiner, A.; Phillipp, M. Speeding up the airplane boarding process by using pre-boarding areas. In Proceedings of the Swiss Transport Research Conference, Ascona, Switzerland, 9–11 September 2009. [Google Scholar]
  24. Qiang, S.J.; Jia, B.; Xie, D.F.; Gao, Z.Y. Reducing airplane boarding time by accounting for passengers’ individual properties: A simulation based on cellular automaton. J. Air Transp. Manag. 2014, 40, 42–47. [Google Scholar] [CrossRef]
  25. Jaehn, F.; Neumann, S. Airplane boarding. Eur. J. Operat. Res. 2015, 244, 339–359. [Google Scholar] [CrossRef]
  26. Cis, P. Auslastungsgrad von Eisenbahnwagen in Abhängigkeit von Individuellem Fahrgastverhalten. Master’s Thesis, Technische Universität Wien, Wien, Austria, 2009. [Google Scholar]
  27. Plank, V. Dimensionierung von Gepäckablagen in Reisezügen. Master’s Thesis, Technische Universität Wien, Wien, Austria, 2008. [Google Scholar]
  28. Rüger, B.; Ostermann, N. Der Innenraum von Reisezugwagen—Gratwanderung zwischen Sinn und Effizienz. Eisenbahntechnische Rundschau (ETR) 2015, 3, 38–44. [Google Scholar]
  29. Tuna, D. Fahrgastwechselzeit im Personenfernverkehr. Master’s Thesis, Technische Universität Wien, Wien, Austria, 2008. [Google Scholar]
  30. Panzera, N. Die Haltezeit bei Hochrangigen, Innerstädtischen Verkehren—Einflussfaktoren und Optimierungspotenziale. Master’s Thesis, Fachhochschule St. Pölten GmbH, St. Pölten, Austria, 2014. [Google Scholar]
  31. Evans, G.W.; Wener, R.E. Crowding and personal space invasion on the train: Please don’t make me sit in the middle. J. Environ. Psychol. 2007, 27, 90–94. [Google Scholar] [CrossRef]
  32. Hirsch, L.; Thompson, K. I can sit but I’d rather stand: Commuter’s experience of crowdedness and fellow passenger behaviour in carriages on Australian metropolitan trains. In Proceedings of the 34th Australasian Transport Research Forum, ATRF 2011, Adelaide, Australia, 28–30 September 2014; pp. 1–15. [Google Scholar]
  33. Hall, E.T. The Hidden Dimension; Doubleday: New York, NY, USA, 1966. [Google Scholar]
  34. Trinkoff, A.M. Seating patterns on the Washington, DC Metro Rail System. Am. J. Public Health 1985, 75, 657–658. [Google Scholar] [CrossRef] [PubMed]
  35. Rüger, B.; Loibl, C. Präferenzen bei der Sitzplatzwahl in Fernreisezügen. Eisenbahntechnische Rundschau (ETR) 2010, 59, 774–777. [Google Scholar]
  36. Wardman, M.; Murphy, P. Passengers’ valuations of train seating layout, position and occupancy. Transp. Res. Part A Policy Pract. 2015, 74, 222–238. [Google Scholar] [CrossRef]
  37. Liu, X.; Song, W.; Fu, L.; Lv, W.; Fang, Z. Typical features of pedestrian spatial distribution in the inflow process. Phys. Lett. A 2016, 380, 1526–1534. [Google Scholar] [CrossRef]
  38. Liu, X.; Song, W.; Fu, L.; Fang, Z. Experimental study of pedestrian inflow in a room with a separate entrance and exit. Phys. A Stat. Mech. Appl. 2016, 442, 224–238. [Google Scholar] [CrossRef]
  39. Xiao, Y.; Gao, Z.; Qu, Y.; Li, X. A pedestrian flow model considering the impact of local density: Voronoi diagram based heuristics approach. Transp. Res. Part C Emerg. Technol. 2016, 68, 566–580. [Google Scholar] [CrossRef]
  40. Ezaki, T.; Ohtsuka, K.; Chraibi, M.; Boltes, M.; Yanagisawa, D.; Seyfried, A.; Schadschneider, A.; Nishinari, K. Inflow process of pedestrians to a confined space. Collect. Dyn. 2016. [Google Scholar] [CrossRef]
  41. Seitz, M.J.; Seer, S.; Klettner, S.; Köster, G.; Handel, O. How do we wait? Fundamentals, characteristics, and modeling implications. In Traffic and Granular Flow ’15; Knoop, V.L., Daamen, W., Eds.; Springer International Publishing: Nootdorp, The Netherlands, 2016; pp. 217–224. [Google Scholar] [CrossRef]
  42. Seitz, M.J.; Köster, G. Natural discretization of pedestrian movement in continuous space. Phys. Rev. E 2012, 86, 046108. [Google Scholar] [CrossRef] [PubMed]
  43. Von Sivers, I.; Köster, G. Dynamic stride length adaptation according to utility and personal space. Transp. Res. Part B Methodol. 2015, 74, 104–117. [Google Scholar] [CrossRef] [Green Version]
  44. Kleinmeier, B.; Zönnchen, B.; Gödel, M.; Köster, G. Vadere: An open-source simulation framework to promote interdisciplinary understanding. Collective Dyn. 2019. in review with (minor revision). [Google Scholar]
  45. Schöttl, J. Modelling Passengers’ Seating Behavior for Simulations of Pedestrian Dynamics. Master’s Thesis, Munich University of Applied Sciences, Munich, Germany, 2016. [Google Scholar]
  46. Wickham, H. Testthat: Get started with testing. R J. 2011, 3, 5–10. [Google Scholar] [CrossRef]
  47. Zönnchen, B.; Köster, G. A parallel generator for sparse unstructured meshes to solve the eikonal equation. J. Comput. Sci. 2019, 32, 141–147. [Google Scholar] [CrossRef]
  48. Seitz, M.J. Simulating Pedestrian Dynamics: Towards Natural Locomotion and Psychological Decision Making. Ph.D. Thesis, Technische Universität München, Munich, Germany, 2016. [Google Scholar]
  49. Dietrich, F.; Köster, G. Gradient navigation model for pedestrian dynamics. Phys. Rev. E 2014, 89, 062801. [Google Scholar] [CrossRef] [PubMed] [Green Version]
  50. Lubaś, R.; Porzycki, J.; Wąs, J.; Mycek, M. Validation and verification of CA-based pedestrian dynamics models. J. Cell. Autom. 2016, 11, 285–298. [Google Scholar]
Figure 1. Compartment with four seat groups, with four seats each. The black arrow on the top denotes the train’s driving direction. The blue dots mark the seats and the yellow area in the middle is the aisle connecting the entrance areas. The green bars are parts of the doors.Plan of a S-Bahn train compartment.
Figure 1. Compartment with four seat groups, with four seats each. The black arrow on the top denotes the train’s driving direction. The blue dots mark the seats and the yellow area in the middle is the aisle connecting the entrance areas. The green bars are parts of the doors.Plan of a S-Bahn train compartment.
Entropy 21 00600 g001
Figure 2. Observed frequency of seat choices: There is a strong preference for empty seat groups over seat groups where another passenger is already seated. We only consider data where both empty and preoccupied seat groups are available ( n = 42 ).
Figure 2. Observed frequency of seat choices: There is a strong preference for empty seat groups over seat groups where another passenger is already seated. We only consider data where both empty and preoccupied seat groups are available ( n = 42 ).
Entropy 21 00600 g002
Figure 3. Observed frequency of seat choices: There is a strong preference for the seat group with the smallest number of occupants that are already seated. We only consider data where the occupancy of the seat groups differs ( n = 142 ).
Figure 3. Observed frequency of seat choices: There is a strong preference for the seat group with the smallest number of occupants that are already seated. We only consider data where the occupancy of the seat groups differs ( n = 142 ).
Entropy 21 00600 g003
Figure 4. Observed frequency of seat choices: When a seat group is empty forward seats are chosen more often than backward seats, and window seats more often than aisle seats. AIS, aisle; WIN, window; FW, forward; BW, backward. We only consider incidents where a passenger sits down in an empty seat group ( n = 37 ).
Figure 4. Observed frequency of seat choices: When a seat group is empty forward seats are chosen more often than backward seats, and window seats more often than aisle seats. AIS, aisle; WIN, window; FW, forward; BW, backward. We only consider incidents where a passenger sits down in an empty seat group ( n = 37 ).
Entropy 21 00600 g004
Figure 5. Observed frequency of seat choices: When one seat is already taken, the choice diagonally across is chosen most often. Next, neighbor seat; Across, seat directly across; Diagonal, seat diagonally across. We only consider incidents where a passenger sits down in a seat group where exactly one seat is taken ( n = 68 ).
Figure 5. Observed frequency of seat choices: When one seat is already taken, the choice diagonally across is chosen most often. Next, neighbor seat; Across, seat directly across; Diagonal, seat diagonally across. We only consider incidents where a passenger sits down in a seat group where exactly one seat is taken ( n = 68 ).
Entropy 21 00600 g005
Figure 6. The seating algorithm: Passengers pick their seat according to the empirical preferences. They choose a compartment close to where they enter, following a normal distribution.
Figure 6. The seating algorithm: Passengers pick their seat according to the empirical preferences. They choose a compartment close to where they enter, following a normal distribution.
Entropy 21 00600 g006
Figure 7. Program verification: Comparison of simulation outcome (first) to empirical data (second) for choice of seat in an empty seat group.
Figure 7. Program verification: Comparison of simulation outcome (first) to empirical data (second) for choice of seat in an empty seat group.
Entropy 21 00600 g007
Figure 8. Program verification: Comparison of simulation outcome (first) empirical data (second) for choice of seat within a seat group when one seat is already taken.
Figure 8. Program verification: Comparison of simulation outcome (first) empirical data (second) for choice of seat within a seat group when one seat is already taken.
Entropy 21 00600 g008
Figure 9. Visualization of a simulation run. At each virtual train station, new agents board the train through doors marked in green. No passengers alight, so that the train gets fuller and fuller. At the top of each line, the name of the train station is stated, e.g., Deisenhofen.
Figure 9. Visualization of a simulation run. At each virtual train station, new agents board the train through doors marked in green. No passengers alight, so that the train gets fuller and fuller. At the top of each line, the name of the train station is stated, e.g., Deisenhofen.
Entropy 21 00600 g009

Share and Cite

MDPI and ACS Style

Schöttl, J.; Seitz, M.J.; Köster, G. Investigating the Randomness of Passengers’ Seating Behavior in Suburban Trains. Entropy 2019, 21, 600. https://doi.org/10.3390/e21060600

AMA Style

Schöttl J, Seitz MJ, Köster G. Investigating the Randomness of Passengers’ Seating Behavior in Suburban Trains. Entropy. 2019; 21(6):600. https://doi.org/10.3390/e21060600

Chicago/Turabian Style

Schöttl, Jakob, Michael J. Seitz, and Gerta Köster. 2019. "Investigating the Randomness of Passengers’ Seating Behavior in Suburban Trains" Entropy 21, no. 6: 600. https://doi.org/10.3390/e21060600

Note that from the first issue of 2016, this journal uses article numbers instead of page numbers. See further details here.

Article Metrics

Back to TopTop