Skip to content

Commit

Permalink
better home page copy
Browse files Browse the repository at this point in the history
  • Loading branch information
josephecombs committed Aug 14, 2023
1 parent 2faff6c commit 64a89f9
Showing 1 changed file with 43 additions and 17 deletions.
60 changes: 43 additions & 17 deletions src/HomePage.js
Original file line number Diff line number Diff line change
@@ -1,44 +1,70 @@
import React from 'react';
import './stylesheets/HomePage.css';
import { Link } from 'react-router-dom'; // Import Link to create a navigable button
import { Link } from 'react-router-dom';

function HomePage() {
return (
<div className="homepage-container">
<h1>Welcome to the "Fill and Flush" De-Planing Simulator!</h1>
<div>
<h2>Fill and Flush Deplaning Method</h2>
<p>The Fill and Flush deplaning method is a strategy used to disembark passengers from an aircraft. It's designed to optimize the process by reducing the time taken and enhancing the overall efficiency.</p>

<section className="intro">
<h2>Introduction</h2>
<p>The Fill and Flush deplaning method was developed to revolutionize the way passengers disembark from aircraft. This method minimizes deplaning time by maximizing aisle space utilization. <Link to="/simulate">Explore the simulator</Link> to see how it works.</p>
</section>

<section className="status-quo">
<h2>Status Quo</h2>
<p>The traditional deplaning method, based on exiting row by row, has proven to be inefficient and time-consuming. The fundamental issue with the status quo is that the entire plane waits for each passenger to gather belongings, dramatically reducing the flow of passengers relative to potential flow.</p>
</section>

<section className="fill-and-flush">
<h2>Fill and Flush Method</h2>
<p>The Fill and Flush method represents a meticulously coordinated approach to deplaning, involving distinct phases of filling the aisle, gathering belongings, and columnar exit. Here's how it works:</p>

<h3>1. Fill Phase:</h3>
<ul>
<li>Occupying the Aisle: Passengers fill the aisle, starting from the front and moving towards the back.</li>
<li>Aisle Dynamics: Passengers in the aisle move towards the exit as space becomes available.</li>
<li><strong>Column-by-Column Direction:</strong> A flight attendant directs the most aisle-adjacent column of passengers to stand and fill the aisle. This is done one column at a time, in a middle-out pattern.</li>
<li><strong>Gathering Belongings:</strong> Passengers in the aisle gather their belongings from overhead compartments or under seats. Meanwhile, those not in the called column wait for their wave.</li>
<li><strong>Waiting:</strong> Once all passengers in the current column have gathered their belongings, they wait until the entire column is ready. If a passenger is not ready, they must stay in their seat and exit in a subsequent flush.</li>
</ul>

<h3>2. Flush Phase:</h3>
<ul>
<li>Emptying the Aisle: The aisle is cleared of passengers, allowing for the next wave to fill the aisle.</li>
<li>Sequential Movement: Passengers move towards the exit in a sequential manner.</li>
<li><strong>Sequential Exit:</strong> Passengers currently standing in the aisle exit the plane all at once, walking off with as little congestion as possible.</li>
<li><strong>Next Column Direction:</strong> Only after the final person standing has exited does the flight attendant direct the next column to stand and fill the aisle.</li>
</ul>

<h3>3. Wave System:</h3>
<ul>
<li>Waves of Passengers: The process is carried out in waves, with each wave consisting of a group of passengers.</li>
<li>Wave Synchronization: The waves are coordinated to ensure systematic filling and flushing of the aisle.</li>
<li><strong>Waves of Passengers:</strong> The process repeats until all columns have exited. Passengers wishing to deplane as a group skip earlier flushes and make trades if available with passengers not in groups.</li>
</ul>

<h3>4. Optimization:</h3>
<p>The Fill and Flush method's structured approach ensures that the aisle space is maximally utilized.</p>
</section>

<section className="superiority">
<h2>Why Fill and Flush is Superior</h2>
<p><strong>In simulation, Fill and Flush reduces deplaning time by approximately 50%</strong></p>
<p>Fill and Flush reduces deplaning time by making better use of the aisle space and coordinating passenger movement. Unlike the traditional method, where passengers gather belongings one at a time, causing a slow, continuous line, the Fill and Flush method allows passengers to prepare to exit in groups. This is like having multiple checkout lanes at a grocery store instead of just one, allowing more people to be served at the same time. It leads to a quicker and more efficient deplaning process.</p>
</section>

<section className="discussion">
<h2>Discussion Points</h2>
<ul>
<li>Time Efficiency: The method minimizes total deplaning time.</li>
<li>Space Utilization: It takes advantage of the aisle space, improving the flow of passengers towards the exit.</li>
<li>Orderly Process: The fill and flush method promotes an orderly deplaning process.</li>
<li>How to educate passengers</li>
<li>How to accommodate the elderly, people with children, and groups.</li>
<li>Challenges in modeling randomness in gathering belongings and walking behavior.</li>
<li>Considerations for large international flights, first-class passengers, and potential inter-passenger conflict.</li>
</ul>
</section>

<section className="conclusion">
<h2>Conclusion</h2>
<p>The Fill and Flush deplaning method is a groundbreaking approach to aircraft disembarkation. By employing a systematic fill-and-flush process, it streamlines passenger flow, enhances efficiency, and represents a significant advancement in the field of commercial aviation.</p>
</section>

<p>Conclusion: The Fill and Flush deplaning method represents an innovative approach to aircraft disembarkation, using a systematic fill-and-flush process to streamline the flow of passengers. It aims to enhance efficiency, reduce deplaning time, and improve the overall passenger experience.</p>
<p>Contribute: This website is a GitHub page. Please contribute to it <a href="https://github.com/josephecombs/fill-flush/">here</a>.</p>

<p>Contribute: this website is a github page. Please contribute to it <a href="https://github.com/josephecombs/fill-flush/">here</a>.</p>
</div>
<Link to="/simulate" className="simulate-button">Start Simulating</Link>
</div>
);
Expand Down

0 comments on commit 64a89f9

Please sign in to comment.