Design a Elevator System

Design a Elevator System

Software design for an elevator system

As most of the developer?s worked on some modules through out their career, its hard for them to understand and implement a complete design for a software, but I believe everyone can learn !!

Note: For iOS interview Questions , check this link ? Top iOS Interview Questions You Must Prepare In 2018

Panel: Please tell me design for an elevator system.

You: Follow below approach to identify whether panel is interested in class design and its relation or interested in backend as it seems This is a pretty broad question.

From the application developer perspective, we should be telling the classes and its relation, class diagrams & Sequence flow. We all know the time scarcity during a technical discussion and some time its difficult what other guy is expecting from us.

In general perspective, it may be possible that your panel is interested in backend designing so you need to clarify with him, what are they expecting from you?

A snapshot of the elevator control system

Our elevator has the basic function that all elevator systems have, such as moving up and down, open and close doors, and of course, pick up passengers.

The elevator is supposed to be used in a building having floors numbered from 1 to MaxFloor, where the first floor is the lobby. There are car(Lift) call buttons in the car corresponding to each floor. For every floor except for the top floor and the lobby, there are two hall call buttons for the passengers to call for going up and down. There is only one down hall call button at the top floor and one up hall call button in the lobby. When the car stops at a floor, the doors are opened and the car lantern indicating the current direction the car is going is illuminated so that the passengers can get to know the current moving direction of the car. The car moves fast between floors, but it should be able to slow down early enough to stop at a desired floor. In order to certificate system safety, emergency brake will be triggered and the car will be forced to stop under any unsafe conditions.

Use case diagram

All systems interact with human or automated actors that use the system for some purpose, and both human and actors expect the system to behave in predictable ways.

Image for postFigure 1: Use Case Diagram of Elevator System

There are seven use cases based on the current requirement of the elevator system, as shown in Figure 1:

  • Process Car/Lift Calls: This use case includes several scenarios, which will be described in detail in later sections of this paper. These scenarios includes that the elevator receives lift/car calls from the passengers, turns on or turns off the light of lift/car call buttons, updates the record of lift/car calls stored in system controlling parts, etc.
  • Process Hall Calls: Similar to Lift/Car Call processing, this use case includes that the elevator receives hall calls from the passengers, turns on or turns off the light of hall call buttons, updates the record of hall calls in system controlling parts, etc.
  • Move/Stop the Car: The main function of an elevator will include the changing of driving speed, how to make the decision of stop, and driving directions of the car.
  • Indicating Moving Direction: The elevator should have this mechanism to let the passengers know the current moving direction of the car such that the passenger might decide whether to enter the car or not.
  • Indicating Car Position: Similarly, the elevator should let the passengers know whether his/her destination floor is reached so that the passenger may decide to leave the car.
  • Open/Close the Doors: The elevator should be able to open and close the doors for the passengers to get in and out of the car. The functional areas of this use case should also enable the passengers to make door reversals when the doors are closing and the passenger wants to get in the car.
  • Trigger Emergency Brake: There is safety mechanism within the car to make sure that an unsafe state is not transiently generated.

With this much of understanding of elevator system, we can start identifying the classes required it to design a system.

Identifying Classes/Objects:

Control objects

  • ElevatorControl: The central controlling object in the elevator system. ElevatorControl communicates and controls all other objects in the system.
  • Door: There are two doors in the system, the ?god? object ? the ElevatorControl ? command the doors to open and close.
  • Car/Lift: The car is being controlled to move up and down (in different speeds), to make stops at floors when necessary.
  • Button: The ElevatorControl class also controls the button class, which further generalizes two subclasses CarCallButton and HallCallButton. The control object communicates with the Button objects, get the information whether a button is pressed and in turn controls the illumination of Button lights.
  • Indicator: There are two kinds of indicators in the system, the CarPositionIndicator and the CarDirectionIndicator (i.e. the CarLantern). The indicators are controlled to show the information about the current position and moving direction of the car.
  • Safety: Whenever an emergency happens, the ElevatorControl commands the Safety

Controller classes:

  • DoorControl controls the action of DoorMotor. DoorMotor can be commanded to open, close, or make a door reversal.
  • DriveControl controls the elevator Drive, which acts as the main motor moving the car up and down, and stopping at floors when necessary.
  • LanternControl are in the number of two, CarPositionIndicator and the CarDirectionIndicator.
  • HallButtonControl exists in pair on each floor, where one controls the Up HallCallButton and the other Down. The HallButtonControl accepts hall call button presses controls as well as gives feedback to hall call lights.
  • CarButtonControl is one for each floor and all locate in the lift/car. The CarButtonControl accepts CarCallButton calls and is in charge of turning on/off the corresponding lift/car call lights.
  • CarPositionIndicator gives value to the CarPositionIndicator so that the passengers might know the current position of the lift/car.
  • Dispatcher does not control actual elevator components, but it is important in the software system. There is one Dispatcher for each lift/car, whose main function is to calculate the target moving direction and destination for the lift/car, as well as to maintain the opening time for the doors. The Dispatcher interacts with nearly all the control objects in the system except for LanternControl.

Image for postFigure 2: Class Diagram ? the Software Architecture View

Hope everything is going well till now, let?s understand everything with some of sequence diagrams.

Sequence flow

It may be hard to explain verbally but if you clearly understand how its going to work, you can draw some sequence diagrams and try to explain the flow with some examples in parallel.

  1. Process hall calls : There are two scenarios for this use case: 1.1 the elevator is moving towards the same direction as the passenger?s destination.1.2 the elevator is moving towards the opposite direction as the passenger?s destination.

Image for postFigure 3: 1.1&1.2 ? Hall Call Service

2. Move/Stop the car:

Image for postFigure 4: Moving the Car from Fast to Slow then to Stop

3. Indicate moving direction:

Image for postFigure 5: Indicating the Moving Direction

4. Trigger emergency brake : There are five scenarios for this use case:

1. If the car is commanded to stop but it won?t stop at a desired floor, the emergency brake will be triggered.

2. If the car is commanded to move but it does not move, the emergency brake will be triggered.

3. If the doors are commanded to open when the car stops at a floor, but the doors won?t open, the emergency brake will be triggered.

4. If the doors open when the car is moving, the emergency brake will be triggered.

5. If the car keeps going when the hoist way limit is reached, the emergency brake will be triggered.

I will be showing only one sequence diagram for case 5.

Image for postFigure 6: Emergency Brake ? The elevator keeps going when hoistway limit is reached

I am expecting most of the things will become picture in your mind and easy to remember as well as explain. For backend design , please follow System Design series

Hope you like the explanation. For more design questions , Please wait and follow me.

References:

  1. https://www.cs.cmu.edu/~luluo/Courses/18540PhDreport.pdf
7

No Responses

Write a response