Determining the Number of Passengers for Each of Three Reverse Pyramid Boarding Groups with COVID-19 Flying Restrictions
"> Figure 1
<p>Reverse pyramid with 5 boarding groups without considering social distancing.</p> "> Figure 2
<p>Modified reverse pyramid half-zone without social distancing.</p> "> Figure 3
<p>Reverse pyramid with 3 equal size boarding groups adapted for social distancing.</p> "> Figure 4
<p>Type three seat interference.</p> "> Figure 5
<p>The graphical user interface (GUI) for the agent-based model in NetLogo. (view in the case of reverse pyramid with 3 groups and <span class="html-italic">g1</span> = 6 and <span class="html-italic">g2a</span> = 3).</p> "> Figure 6
<p>The seat positions pointed to by the <span class="html-italic">g1</span> and <span class="html-italic">g2a</span> variables for a 30-row airplane.</p> "> Figure 7
<p>Reverse pyramid with 3 boarding groups and <span class="html-italic">g1</span> = 1 and <span class="html-italic">g2a</span> = 1.</p> "> Figure 8
<p>Reverse pyramid with 3 boarding groups and <span class="html-italic">g1</span> = 15 and <span class="html-italic">g2a</span> = 10.</p> "> Figure 9
<p>Reverse pyramid with 3 boarding groups and <span class="html-italic">g1</span> = 29 and <span class="html-italic">g2a</span> = 29.</p> "> Figure 10
<p>The performance (in colors) of the <span class="html-italic">g1</span> and <span class="html-italic">g2a</span> combinations when the objective function <span class="html-italic">F</span> was determined by weights w<sub>1</sub> = 100%, w<sub>2</sub> = 0%, and w<sub>3</sub> = 0%.</p> "> Figure 11
<p>The starting solution (24, 23), the area explored by the local search method and the best solution (25, 24) for weights w<sub>1</sub> = 100%, w<sub>2</sub> = 0%, and w<sub>3</sub> = 0%.</p> "> Figure 12
<p>The reverse pyramid scheme for the best local search solution G1 = 50, G2 = 58, and G3 = 12 for weights w<sub>1</sub> = 100%, w<sub>2</sub> = 0%, and w<sub>3</sub> = 0%.</p> "> Figure 13
<p>The performance of the <span class="html-italic">g1</span> and <span class="html-italic">g2a</span> combinations for w<sub>1</sub> = 0%, w<sub>2</sub> = 100%, and w<sub>3</sub> = 0%.</p> "> Figure 14
<p>The starting solution, the area explored by the local search method, and the best solution (15, 15) for weights w<sub>1</sub> = 0%, w<sub>2</sub> = 100%, and w<sub>3</sub> = 0%.</p> "> Figure 15
<p>The reverse pyramid scheme for the best local search solution G1 = 30, G2 = 60, and G3 = 30 for weights w<sub>1</sub> = 0%, w<sub>2</sub> = 100%, and w<sub>3</sub> = 0%.</p> "> Figure 16
<p>The performance of the <span class="html-italic">g1</span> and <span class="html-italic">g2a</span> combinations for w<sub>1</sub> = 0%, w<sub>2</sub> = 0%, and w<sub>3</sub> = 100%.</p> "> Figure 17
<p>The performance of the <span class="html-italic">g1</span> and <span class="html-italic">g2a</span> combinations for w<sub>1</sub> = 60%, w<sub>2</sub> = 35%, and w<sub>3</sub> = 5%.</p> "> Figure 18
<p>The reverse pyramid scheme for the best local search solution G1 = 32, G2 = 60, and G3 = 28 for weights w<sub>1</sub> = 60%, w<sub>2</sub> = 35%, and w<sub>3</sub> = 5%.</p> ">
Abstract
:1. Introduction
2. Literature Review
3. Assumptions and Metrics for Evaluation of Boarding Group Assignments of Passengers
3.1. Assumptions for Passengers’ Social Distancing and Luggage
3.2. Metrics Used to Evaluate the Reverse Pyramid Method with Various 3-Passenger Groups
4. Methods
4.1. Agent-Based Model Implementation
4.2. Adaption of Reverse Pyramid for Social Distancing and Unequal Group Sizes
- g1 > 0, g2a > 0, integers.
- g2a ≤ g1 (within a row, window seat passengers board before aisle seat passengers).
- g1 ≤ 29 for a 30-row airplane (because otherwise there are not three boarding groups).
4.3. Full Grid Search for Finding a Good Starting Point for the Local Search
Algorithm 1. Full-grid-search | |
in: | number of simulation trials per data point noSimulations |
out: | boarding metrics for all group configurations m |
1: | forg1 = 1 to 29 do |
2: | for g2a = 1 to g1 do |
3: | m[g1][g2a] ← ABMSimulation(g1, g2a, noSimulations) |
4: | end for |
5: | end for |
6: | |
7: | returnm |
4.4. Local Search Optimization Method
Algorithm 2. Local Search Optimization Method | |
in: | initial boarding group configuration <g1′, g2a’>; weights of average boarding time, average aisle seat risk duration, and average window seat risk duration w1, w2 and w3; number of simulation trials per condition tested noSimulations |
out: | group configuration having the minimum weighted average duration; the group’s weighted average duration |
{initialize the boarding metrics for all group configurations with NIL} | |
1: | forg1 = 1 to 29 do |
2: | for g2a = 1 to g1 do |
3: | m[g1][g2a] ← NIL |
4: | end for |
5: | end for |
6: | |
7: | m[g1′][g2a’] ← ABMSimulation(g1′, g2a’, noSimulations) {boarding metrics determined using NetLogo simulations} |
8: | |
9: | minWeightedAverage ← w1 * duration(m[g1′][g2a’]) + w2 * aisleRisk(m[g1′][g2a’]) + w3 * windowRisk(m[g1′][g2a’]) |
10: | minWeightedAverageConfiguration ← <g1′, g2a’> |
11: | |
12: | Repeat |
13: | neighborMinWeightedAverage ← ∞ |
14: | neighborWithMinWeightedAverage ← NIL |
15: | <x, y> ← minWeightedAverageConfiguration |
16: | |
17: | for i in {-1, 0, 1} do |
18: | for j in {-1, 0, 1} do |
19: | if i != 0 or j != 0 then |
20: | if (x + i ≥ y + j) and (x + i ≥ 1) and (y + j ≥ 1) and (x + i ≤ 29) then |
21: | if m[x + i][y + j] = NIL then {avoid reanalyzing configurations} |
22: | m[x + i][y + j] ← ABMSimulation(x + i, y + j, noSimulations) {store the boarding metrics} |
23: | |
24: | neighborWeightedAverage ← w1 * duration(m[x + i][y + j]) + w2 * aisleRisk(m[x + i][y + j]) + w3 * windowRisk(m[x + i][y + j]) |
25: | |
26: | if neighborWeightedAverage < neighborMinWeightedAverage then |
27: | neighborMinWeightedAverage ← neighborWeightedAverage |
28: | neighborWithMinWeightedAverage ← <x+i, y+j> |
29: | end if |
30: | end if |
31: | end if |
32: | end if |
33: | end for |
34: | end for |
35: | |
36: | if neighborMinWeightedAverage ≤ minWeightedAverage then |
37: | minWeightedAverage ← neighborMinWeightedAverage |
38: | minWeightedAverageConfiguration ← neighborWithMinWeightedAverage {update the best configuration} |
39: | end if |
40: | |
41: | untilneighborMinWeightedAverage > minWeightedAverage |
42: | |
43: | returnminWeightedAverageConfiguration, minWeightedAverage |
5. Numerical Simulation Results
5.1. Simulation Results for w1 = 100%, w2 = 0%, and w3 = 0%
5.2. Simulation Results for w1 = 0%, w2 = 100%, and w3 = 0%
- (1)
- Assume: Notation: E(n) = expected number of aisle seat risk encounters by group 2 passengers when n = g2a. E(g2a) = expected number of aisle seat risk encounters by group 2 passengers = (g2a)2.
- (2)
- E(1) = (1)2 = 1 as explained above, as exactly one of the two row 30 aisle seat passengers is seated before the other.
- (3)
- E(g2a + 1) = E(g2a) + the expected number of aisle seat risk encounters by group 2 passengers seated in row (30 – g2a). Each of the two group 2 passengers sitting in row (30 − g2a) can be expected to be passed, on average, by g2a passengers from the higher numbered rows and also exactly one of the row (30 − g2a) group 2 passengers will be passed by the other. Consequently, E(g2a+1) = E(g2a) + 2 * g2a + 1 = (g2a)2 + 2 * g2a + 1 = (g2a + 1)2, thus completing the proof.
5.3. Simulation Results for w1 = 0%, w2 = 0%, and w3 = 100%
5.4. Simulation Results for w1 = 60%, w2 = 35%, and w3 = 5%
5.5. Summary and Discussion of Simulation Results
6. Concluding Remarks
Supplementary Materials
Author Contributions
Funding
Conflicts of Interest
References
- IATA. IATA COVID-19 Passenger Survey. Available online: https://www.iata.org/en/publications/store/covid-passenger-survey/ (accessed on 1 August 2020).
- ICAO. Effects of Novel Coronavirus (COVID-19) on Civil Aviation: Economic Impact Analysis. Available online: https://www.icao.int/sustainability/Documents/COVID-19/ICAO_Coronavirus_Econ_Impact.pdf (accessed on 31 May 2020).
- Schultz, M.; Fuchte, J. Evaluation of Aircraft Boarding Scenarios Considering Reduced Transmissions Risks. Sustainability 2020, 12, 5329. [Google Scholar] [CrossRef]
- Elcheroth, G.; Drury, J. Collective resilience in times of crisis: Lessons from the literature for socially effective responses to the pandemic. Br. J. Soc. Psychol. 2020, 59, 703–713. [Google Scholar] [CrossRef] [PubMed]
- Belli, S.; Broncano, F. Trust as a Meta-Emotion. Metaphilosophy 2017, 48, 430–448. [Google Scholar] [CrossRef]
- Delcea, C.; Cotfas, L.A.; Paun, R. Agent-Based Evaluation of the Airplane Boarding Strategies’ Efficiency and Sustainability. Sustainability 2018, 10, 1879. [Google Scholar] [CrossRef] [Green Version]
- Schultz, M. A metric for the real-time evaluation of the aircraft boarding progress. Transp. Res. Part C Emerg. Technol. 2018, 86, 467–487. [Google Scholar] [CrossRef]
- Milne, R.J.; Kelly, A.R. A new method for boarding passengers onto an airplane. J. Air Transp. Manag. 2014, 34, 93–100. [Google Scholar] [CrossRef] [Green Version]
- Steffen, J.H. Optimal boarding method for airline passengers. J. Air Transp. Manag. 2008, 14, 146–150. [Google Scholar] [CrossRef] [Green Version]
- Cotfas, L.A.; Delcea, C.; Milne, R.J.; Salari, M. Evaluating Classical Airplane Boarding Methods Considering COVID-19 Flying Restrictions. Symmetry 2020, 12, 1087. [Google Scholar] [CrossRef]
- Milne, R.J.; Delcea, C.; Cotfas, L.A. Airplane Boarding Methods that Reduce Risk from COVID-19. Saf. Sci. 2020. [Google Scholar] [CrossRef]
- Milne, R.J.; Delcea, C.; Cotfas, L.A.; Ioanas, C. Evaluation of Boarding Methods Adapted for Social Distancing When Using Apron Buses. IEEE Access 2020, 8, 151650–151667. [Google Scholar] [CrossRef]
- Salari, M.; Milne, R.J.; Delcea, C.; Kattan, L.; Cotfas, L.A. Social distancing in airplane seat assignments. J. Air Transp. Manag. 2020, 89, 101915. [Google Scholar] [CrossRef] [PubMed]
- Steffen, J.H. A statistical mechanics model for free-for-all airplane passenger boarding. Am. J. Phys. 2008, 76, 1114–1119. [Google Scholar] [CrossRef] [Green Version]
- Soolaki, M.; Mahdavi, I.; Mahdavi-Amiri, N.; Hassanzadeh, R.; Aghajani, A. A new linear programming approach and genetic algorithm for solving airline boarding problem. Appl. Math. Model. 2012, 36, 4060–4072. [Google Scholar] [CrossRef]
- 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]
- van den Briel, M.H.L.; Villalobos, J.R.; Hogg, G.L.; Lindemann, T.; Mulé, A.V. America West Airlines Develops Efficient Boarding Strategies. Interfaces 2005, 35, 191–201. [Google Scholar] [CrossRef]
- Nyquist, D.C.; McFadden, K.L. A study of the airline boarding problem. J. Air Transp. Manag. 2008, 14, 197–204. [Google Scholar] [CrossRef]
- Bachmat, E.; Berend, D.; Sapir, L.; Skiena, S.; Stolyarov, N. Analysis of Airplane Boarding Times. Oper. Res. 2009, 57, 499–513. [Google Scholar] [CrossRef] [Green Version]
- Milne, R.J.; Delcea, C.; Cotfas, L.A.; Salari, M. New methods for two-door airplane boarding using apron buses. J. Air Transp. Manag. 2019, 80, 101705. [Google Scholar] [CrossRef]
- Cotfas, L.A.; Delcea, C.; Milne, R.J.; Salari, M.; Crăciun, L.; Molănescu, A.G. Testing New Methods for Boarding a Partially Occupied Airplane Using Apron Buses. Symmetry 2019, 11, 1044. [Google Scholar] [CrossRef] [Green Version]
- Delcea, C.; Milne, R.J.; Cotfas, L.A.; Craciun, L.; Molanescu, A.G. Methods for Accelerating the Airplane Boarding Process in the Presence of Apron Buses. IEEE Access 2019, 7, 134372–134387. [Google Scholar] [CrossRef]
- Delcea, C.; Cotfas, L.A.; Chiriță, N.; Nica, I. A Two-Door Airplane Boarding Approach When Using Apron Buses. Sustainability 2018, 10, 3619. [Google Scholar] [CrossRef] [Green Version]
- Milne, R.J.; Cotfas, L.A.; Delcea, C.; Salari, M.; Crăciun, L.; Molanescu, A.G. Greedy Method for Boarding a Partially Occupied Airplane Using Apron Buses. Symmetry 2019, 11, 1221. [Google Scholar] [CrossRef] [Green Version]
- Milne, R.J.; Cotfas, L.A.; Delcea, C.; Salari, M.; Craciun, L.; Molanescu, A.G. Airplane Boarding Method for Passenger Groups When Using Apron Buses. IEEE Access 2020, 8, 18019–18035. [Google Scholar] [CrossRef]
- Tang, T.Q.; Yang, S.P.; Ou, H.; Chen, L.; Huang, H.J. An aircraft boarding model with the group behavior and the quantity of luggage. Transp. Res. Part C Emerg. Technol. 2018, 93, 115–127. [Google Scholar] [CrossRef]
- Ferrari, P.; Nagel, K. Robustness of Efficient Passenger Boarding Strategies for Airplanes. Transp. Res. Rec. J. Transp. Res. Board 2005, 1915, 44–54. [Google Scholar] [CrossRef]
- Kisiel, T. Resilience of passenger boarding strategies to priority fares offered by airlines. J. Air Transp. Manag. 2020, 87, 101853. [Google Scholar] [CrossRef]
- Delcea, C.; Cotfas, L.A.; Paun, R. Airplane Boarding Strategies Using Agent-Based Modeling and Grey Analysis. In Computational Collective Intelligence; Nguyen, N.T., Pimenidis, E., Khan, Z., Trawiński, B., Eds.; Springer International Publishing: Cham, Germany, 2018; Volume 11055, pp. 329–339. ISBN 978-3-319-98442-1. [Google Scholar]
- Milne, R.J.; Cotfas, L.A.; Delcea, C.; Craciun, L.; Molanescu, A.G. Adapting the Reverse Pyramid Airplane Boarding Method for Social Distancing in Times of COVID-19. PLoS ONE 2020. [Google Scholar] [CrossRef]
- Steiner, A.; Philipp, 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]
- Jafer, S.; Mi, W. Comparative Study of Aircraft Boarding Strategies Using Cellular Discrete Event Simulation. Aerospace 2017, 4, 57. [Google Scholar] [CrossRef] [Green Version]
- Jaehn, F.; Neumann, S. Airplane boarding. Eur. J. Oper. Res. 2015, 244, 339–359. [Google Scholar] [CrossRef]
- Bazargan, M. A linear programming approach for aircraft boarding strategy. Eur. J. Oper. Res. 2007, 183, 394–411. [Google Scholar] [CrossRef]
- Breuer, A. JetBlue to Unveil New Boarding Process | Frequent Business Traveler. Available online: http://www.frequentbusinesstraveler.com/2017/10/jetblue-to-unveil-new-boarding-process/ (accessed on 4 August 2020).
- Delcea, C.; Cotfas, L.A.; Salari, M.; Milne, R.J. Investigating the Random Seat Boarding Method without Seat Assignments with Common Boarding Practices Using an Agent-Based Modeling. Sustainability 2018, 10, 4623. [Google Scholar] [CrossRef] [Green Version]
- Van Landeghem, H.; Beuselinck, A. Reducing passenger boarding time in airplanes: A simulation based approach. Eur. J. Oper. Res. 2002, 142, 294–308. [Google Scholar] [CrossRef]
- Kierzkowski, A.; Kisiel, T. The Human Factor in the Passenger Boarding Process at the Airport. Procedia Eng. 2017, 187, 348–355. [Google Scholar] [CrossRef]
- Notomista, G.; Selvaggio, M.; Sbrizzi, F.; Di Maio, G.; Grazioso, S.; Botsch, M. A fast airplane boarding strategy using online seat assignment based on passenger classification. J. Air Transp. Manag. 2016, 53, 140–149. [Google Scholar] [CrossRef]
- Milne, R.J.; Salari, M.; Kattan, L. Robust Optimization of Airplane Passenger Seating Assignments. Aerospace 2018, 5, 80. [Google Scholar] [CrossRef] [Green Version]
- Ren, X.; Zhou, X.; Xu, X. A new model of luggage storage time while boarding an airplane: An experimental test. J. Air Transp. Manag. 2020, 84, 101761. [Google Scholar] [CrossRef]
- Steffen, J.H.; Hotchkiss, J. Experimental test of airplane boarding methods. J. Air Transp. Manag. 2012, 18, 64–67. [Google Scholar] [CrossRef] [Green Version]
- Hutter, L.; Jaehn, F.; Neumann, S. Influencing Factors on Airplane Boarding Times. Omega 2018. [Google Scholar] [CrossRef]
- Ren, X.; Xu, X. Experimental analyses of airplane boarding based on interference classification. J. Air Transp. Manag. 2018, 71, 55–63. [Google Scholar] [CrossRef]
- Schultz, M. Fast Aircraft Turnaround Enabled by Reliable Passenger Boarding. Aerospace 2018, 5, 8. [Google Scholar] [CrossRef] [Green Version]
- Schultz, M. Dynamic change of aircraft seat condition for fast boarding. Transp. Res. Part C Emerg. Technol. 2017, 85, 131–147. [Google Scholar] [CrossRef]
- Wittmann, J. Customer-oriented optimization of the airplane boarding process. J. Air Transp. Manag. 2019, 76, 31–39. [Google Scholar] [CrossRef]
- Milne, R.J.; Salari, M. Optimization of assigning passengers to seats on airplanes based on their carry-on luggage. J. Air Transp. Manag. 2016, 54, 104–110. [Google Scholar] [CrossRef]
- Schultz, M. The Seat Interference Potential as an Indicator for the Aircraft Boarding Progress. SAE Tech. Pap. 2017. [Google Scholar] [CrossRef]
- Sadeghi Lahijani, M.; Islam, T.; Srinivasan, A.; Namilae, S. Constrained Linear Movement Model (CALM): Simulation of passenger movement in airplanes. PLoS ONE 2020, 15, e0229690. [Google Scholar] [CrossRef] [Green Version]
- Islam, T.; Lahijani, M.S.; Srinivasan, A.; Namilae, S.; Mubayi, A.; Scotch, M. From Bad to Worse: Airline Boarding Changes in Response to COVID-19. arXiv 2020, arXiv:2006.06403. [Google Scholar]
- Derjany, P.; Namilae, S.; Liu, D.; Srinivasan, A. Multiscale model for the optimal design of pedestrian queues to mitigate infectious disease spread. PLoS ONE 2020, 15, e0235891. [Google Scholar] [CrossRef] [PubMed]
- De Vos, J. The effect of COVID-19 and subsequent social distancing on travel behavior. Transp. Res. Interdiscip. Perspect. 2020, 5, 100121. [Google Scholar] [CrossRef]
- WHO. Advice for Public. Available online: https://www.who.int/emergencies/diseases/novel-coronavirus-2019/advice-for-public (accessed on 31 May 2020).
- EASA. COVID-19 Aviation Health Safety Protocol. Available online: https://www.easa.europa.eu/document-library/general-publications/covid-19-aviation-health-safety-protocol (accessed on 31 May 2020).
- IATA. Restarting Aviation Following COVID-19. Available online: https://www.iata.org/contentassets/f1163430bba94512a583eb6d6b24aa56/covid-medical-evidence-for-strategies-200423.pdf (accessed on 31 May 2020).
- Barnett, A.; Fleming, K. Covid-19 Risk Among Airline Passengers: Should the Middle Seat Stay Empty. MedRxiv 2020. Available online: https://www.medrxiv.org/content/10.1101/2020.07.02.20143826v4 (accessed on 20 October 2020).
- Porterfield, C. Leaving Airplane Middle Seats Empty Could Cut Coronavirus Risk Almost In Half, A Study Says. Available online: https://www.forbes.com/sites/carlieporterfield/2020/07/11/leaving-airplane-middle-seats-empty-could-cut-coronavirus-risk-almost-in-half-a-study-says/ (accessed on 1 August 2020).
- Delta Air Lines More Space for Holiday Travel: Delta Extends Middle Seat Blocks into January 2021. Available online: https://news.delta.com/more-space-holiday-travel-delta-extends-middle-seat-blocks-january-2021 (accessed on 20 October 2020).
- Turkish Airlines Travel and Coronavirus: Amended Cabin Baggage Rules. Available online: https://www.turkishairlines.com/en-int/any-questions/what-are-cabin-baggage-rules-during-the-coronavirus-process/ (accessed on 1 August 2020).
- Delcea, C.; Cotfas, L.A.; Crăciun, L.; Molanescu, A. Are Seat and Aisle Interferences Affecting the Overall Airplane Boarding Time? An Agent-Based Approach. Sustainability 2018, 10, 4217. [Google Scholar] [CrossRef] [Green Version]
- Currie, C.S.M.; Fowler, J.W.; Kotiadis, K.; Monks, T.; Onggo, B.S.; Robertson, D.A.; Tako, A.A. How simulation modelling can help reduce the impact of COVID-19. J. Simul. 2020, 14, 83–97. [Google Scholar] [CrossRef] [Green Version]
- An, L. Modeling human decisions in coupled human and natural systems: Review of agent-based models. Ecol. Model. 2012, 229, 25–36. [Google Scholar] [CrossRef]
- Dai, J.; Li, X.; Liu, L. Simulation of pedestrian counter flow through bottlenecks by using an agent-based model. Phys. A Stat. Mech. Its Appl. 2013, 392, 2202–2211. [Google Scholar] [CrossRef]
- Delcea, C.; Cotfas, L.A. Increasing awareness in classroom evacuation situations using agent-based modeling. Phys. A Stat. Mech. Its Appl. 2019. [Google Scholar] [CrossRef]
- Delcea, C.; Cotfas, L.A.; Craciun, L.; Molanescu, A.G. An agent-based modeling approach to collaborative classrooms evacuation process. Saf. Sci. 2020, 121, 414–429. [Google Scholar] [CrossRef]
- Delcea, C.; Cotfas, L.; Craciun, L.; Molanescu, A.G. Establishing the Proper Seating Arrangement in Elevated Lecture Halls for a Faster Evacuation Process. IEEE Access 2019, 7, 48500–48513. [Google Scholar] [CrossRef]
- Delcea, C.; Cotfas, L.A.; Bradea, I.A.; Boloș, M.I.; Ferruzzi, G. Investigating the Exits’ Symmetry Impact on the Evacuation Process of Classrooms and Lecture Halls: An Agent-Based Modeling Approach. Symmetry 2020, 12, 627. [Google Scholar] [CrossRef] [Green Version]
- Joo, J.; Kim, N.; Wysk, R.A.; Rothrock, L.; Son, Y.J.; Oh, Y.; Lee, S. Agent-based simulation of affordance-based human behaviors in emergency evacuation. Simul. Model. Pract. Theory 2013, 32, 99–115. [Google Scholar] [CrossRef]
- Poulos, A.; Tocornal, F.; de la Llera, J.C.; Mitrani-Reiser, J. Validation of an agent-based building evacuation model with a school drill. Transp. Res. Part C Emerg. Technol. 2018, 97, 82–95. [Google Scholar] [CrossRef]
- Ponsiglione, C.; Primario, S.; Zollo, G. Does natural language perform better than formal systems? Results from a fuzzy agent-based model. Int. J. Technol. Policy Manag. 2019, 19, 171–175. [Google Scholar] [CrossRef]
- Ponsiglione, C.; Quinto, I.; Zollo, G. Regional Innovation Systems as Complex Adaptive Systems: The Case of Lagging European Regions. Sustainability 2018, 10, 2862. [Google Scholar] [CrossRef] [Green Version]
- Wilensky, U.; Rand, W. An Introduction to Agent-Based Modeling: Modeling Natural, Social, and Engineered Complex Systems with NetLogo; The MIT Press: Cambridge, MA, USA, 2015; ISBN 978-0-262-73189-8. [Google Scholar]
- Stonedahl, F.; Wilensky, U. Finding Forms of Flocking: Evolutionary Search in ABM Parameter-Spaces. In Multi-Agent-Based Simulation XI; Bosse, T., Geller, A., Jonker, C.M., Eds.; Springer: Berlin/Heidelberg, Germany, 2011; Volume 6532, pp. 61–75. ISBN 978-3-642-18344-7. [Google Scholar]
- Almeida, J.E.; Kokkinogenis, Z.; Rossetti, R.J.F. NetLogo implementation of an evacuation scenario. In Proceedings of the 7th Iberian Conference on Information Systems and Technologies (CISTI 2012), Madrid, Spain, 20–23 June 2012; pp. 1–4. [Google Scholar]
- Zou, Q.; Fernandes, D.S.; Chen, S. Agent-based evacuation simulation from subway train and platform. J. Transp. Saf. Secur. 2019. [Google Scholar] [CrossRef]
- Liu, R.; Jiang, D.; Shi, L. Agent-based simulation of alternative classroom evacuation scenarios. Front. Archit. Res. 2016, 5, 111–125. [Google Scholar] [CrossRef] [Green Version]
- Wang, H.; Mostafizi, A.; Cramer, L.A.; Cox, D.; Park, H. An agent-based model of a multimodal near-field tsunami evacuation: Decision-making and life safety. Transp. Res. Part C Emerg. Technol. 2016, 64, 86–100. [Google Scholar] [CrossRef]
- Schultz, M. Field Trial Measurements to Validate a Stochastic Aircraft Boarding Model. Aerospace 2018, 5, 27. [Google Scholar] [CrossRef] [Green Version]
- Alizadeh, R. A dynamic cellular automaton model for evacuation process with obstacles. Saf. Sci. 2011, 49, 315–323. [Google Scholar] [CrossRef]
- Schultz, M.; Soolaki, M. Analytical Approach to Solve the Problem of Aircraft Passenger Boarding during the Coronavirus Pandemic; Preprint Under Journal Review. Available online: https://www.researchgate.net/publication/343390376_Analytical_approach_to_solve_the_problem_of_aircraft_passenger_boarding_during_the_coronavirus_pandemic (accessed on 4 August 2020).
- Audenaert, J.; Verbeeck, K.; Berghe, G. Multi-agent based simulation for boarding. In Proceedings of the 21st Benelux Conference on Artificial Intelligence, Eindhoven, The Netherlands, 29–30 October 2009; pp. 3–10. [Google Scholar]
Boarding Groups | Case | Weights | Local Search Results | |||||||
---|---|---|---|---|---|---|---|---|---|---|
w1 | w2 | w3 | g1 | g2a | F | Boarding Time | Aisle Seat Risk | Window Seat Risk | ||
Unequal | C1 | 100% | 0% | 0% | 25 | 24 | 891.2 | 891.2 | 2338.0 | 8768.1 |
C2 | 0% | 100% | 0% | 15 | 15 | 1745.8 | 907.7 | 1745.8 | 7192.3 | |
C3 | 0% | 0% | 100% | 15 | 15 | 7192.3 | 907.7 | 1745.8 | 7192.3 | |
C4 | 60% | 35% | 5% | 16 | 16 | 1515.2 | 904.5 | 1749.8 | 7200.5 | |
Equal | C1 | 100% | 0% | 0% | 20 | 10 | 927.6 | 927.6 | 1972.2 | 8298.1 |
C2 | 0% | 100% | 0% | 1972.2 | ||||||
C3 | 0% | 0% | 100% | 8298.1 | ||||||
C4 | 60% | 35% | 5% | 1661.7 |
Publisher’s Note: MDPI stays neutral with regard to jurisdictional claims in published maps and institutional affiliations. |
© 2020 by the authors. Licensee MDPI, Basel, Switzerland. This article is an open access article distributed under the terms and conditions of the Creative Commons Attribution (CC BY) license (http://creativecommons.org/licenses/by/4.0/).
Share and Cite
Delcea, C.; Milne, R.J.; Cotfas, L.-A. Determining the Number of Passengers for Each of Three Reverse Pyramid Boarding Groups with COVID-19 Flying Restrictions. Symmetry 2020, 12, 2038. https://doi.org/10.3390/sym12122038
Delcea C, Milne RJ, Cotfas L-A. Determining the Number of Passengers for Each of Three Reverse Pyramid Boarding Groups with COVID-19 Flying Restrictions. Symmetry. 2020; 12(12):2038. https://doi.org/10.3390/sym12122038
Chicago/Turabian StyleDelcea, Camelia, R. John Milne, and Liviu-Adrian Cotfas. 2020. "Determining the Number of Passengers for Each of Three Reverse Pyramid Boarding Groups with COVID-19 Flying Restrictions" Symmetry 12, no. 12: 2038. https://doi.org/10.3390/sym12122038
APA StyleDelcea, C., Milne, R. J., & Cotfas, L.-A. (2020). Determining the Number of Passengers for Each of Three Reverse Pyramid Boarding Groups with COVID-19 Flying Restrictions. Symmetry, 12(12), 2038. https://doi.org/10.3390/sym12122038