SlideShare une entreprise Scribd logo
1  sur  29
Télécharger pour lire hors ligne
SSYYSSTTEEMMSS EENNGGIINNEEEERRIINNGG
DDEESSIIGGNN PPRROOJJEECCTT
EENNPPMM 664433,, FFaallll 22000066
Instructor Authors ENPM643
Dr. M Austin Atul Mehta & Felipe Leite Fall 2006
ENPM 643 – Fall ’06
Parking Lot Occupancy Tracking System
2
TABLE OF CONTENTS
Section Page
1 OVERVIEW OF THE PROJECT....................................................................................... 3
1.1 PURPOSE ........................................................................................................................... 3
1.2 ROLES AND RESPONSIBILITIES .......................................................................................... 3
1.3 INTRODUCTION.................................................................................................................. 3
1.4 DEFINITIONS...................................................................................................................... 4
1.5 ASSUMPTIONS AND LIMITATIONS...................................................................................... 4
1.6 REFERENCE MATERIAL ..................................................................................................... 4
2 UML MODELS...................................................................................................................... 5
2.1 DEPLOYMENT DIAGRAM ................................................................................................... 5
2.2 USE CASE SUMMARY ........................................................................................................ 6
2.3 CAR ARRIVING.................................................................................................................. 7
2.4 CAR LEAVING ................................................................................................................. 10
2.5 DISPLAY PARKING SPACE AVAILABILITY........................................................................ 12
2.6 SYSTEM PRIVILEGES/UTILITIES....................................................................................... 13
2.7 UPDATE/NEW USER DATABASE ....................................................................................... 15
2.8 GENERATE REPORT ......................................................................................................... 17
3 REQUIREMENTS/ GOALS & SCENARIOS.................................................................. 19
4 DESIGN ANALYSIS & VALIDATION ........................................................................... 25
5 CONCLUSION.................................................................................................................... 29
ENPM 643 – Fall ’06
Parking Lot Occupancy Tracking System
3
1 OVERVIEW OF THE PROJECT
1.1 Purpose
The goal of this project was to take a parking lot control system from requirement generation,
through model generation and validation. This document describes the process taken a presents the
resulting data.
1.2 Roles and Responsibilities
The project team is formed by the following students: Atul Mehta and Felipe Leite. Since
all team members have the same experience and expertise designing systems, the work was
divided equally and assigned arbitrarily.
1.3 Introduction
For our project, we have decided to design a system that can be deployed in existing
parking structures which would provide information about available parking spaces to drivers
trying to access the facility. The system will include software, sensors and the networking
components.
The installation of permanent sensors in each parking space will provide lot owners with
constant and accurate information on parking lot occupancy. This allows them to keep the lot at
full capacity and serve customers better. Figure 1 shows the building parking lot that we will be
designing for. It has 72 parking spaces where 8 are handicap, 4 are for the building staff and the
remaining 60 are available for regular lot users. In addition, a list of members provided to the
system by the building owner will be used to grant or not access to the facility.
Figure 1 - Parking Lot Layout
ENPM 643 – Fall ’06
Parking Lot Occupancy Tracking System
4
The system will make use of electronic signs to give drivers, information regarding
parking availability before they enter the facility. Once inside, color coded LED displays will
lead motorists to the vacant spaces. Parking spaces can be made unavailable by the building
manager bypassing the sensors. This and other configuration options will be made available
through a GUI interface.
1.4 Definitions
1.4.1 Parking Lot
The parking lot consists of one entrance and 1 exit. There are 72 parking spaces with 8
being handicap and 4 being reserved for building staff.
1.4.2 Entrance
The entrance consists of a gate, a display showing the precise number of available
parking spaces, a tag reader. The tag reader is activated as soon as the car is within range.
1.4.3 Exit
The exit consists of a gate and an induction loop that is behind the gate to detect when a
car approaches the gate.
1.5 Assumptions and Limitations
Every parking space can be reached from any entrance.
Every exit can be reached from each parking space.
No entrances are convertible to exits and vice versa.
Building manager assigns a unique tag to each authorized car.
Tag number and vehicle information is stored in a database maintained by the building
manager.
Emergency situations (e.g. fire) will not be considered here.
1.6 Reference Material
[1] J Magee and J Kramer, “Concurrency State Models and JAVA Programming,” John
Wiley & Sons Ltd., 2nd
Edition, 2006
ENPM 643 – Fall ’06
Parking Lot Occupancy Tracking System
5
2 UML MODELS
2.1 Deployment Diagram
The Parking Lot Occupancy Tracking system can be divided into sub-components as seen in the
deployment diagram shown above. The Parking Lot Occupancy Tracking system consists of a parking
gate interface, manager interface, parking lot controller system interface, parking sensor system interface,
display interface and network interface.
Parking Gate Interface
This subsystem is triggered as soon as a commuter/car arrives near the parking gate. The scanner
scans the tag. The unit controller in the interface checks the authorization of the commuter with the
database of the system. If authorization confirmed the unit controller triggers the gate to open and let the
commuter in the parking lot. If authorization fails, the gate is not opened.
ENPM 643 – Fall ’06
Parking Lot Occupancy Tracking System
6
Manager Interface
Manager interface system is an indirect component to the system. The owner/manager of the
system plays the role of the manager interface. The system is automated and hence the only role of the
manager during the running system is to start/stop, add/delete/edit details of commuters and generates
report from the system database. The manager however has the privileges of changing the system
configuration and display manually entered messages on the display board during maintenance or system
troubleshooting.
Parking Lot Controller Interface
Parking lot controller interface consist of servers and a database that records all the events the
system goes through the day. The controller receives and sends information to the unit controllers as well
as displays the information on the main display board.
Parking Sensor System Interface
Parking sensor system interface consist of sensors, unit controllers, unit display boards and back-
up battery for the system. This system is triggered when a car parks or leaves the parking lot. When a
commuter parks the car in the parking lot, the sensor detects the action and sends information to the unit
controller. The unit controller receives the information and triggers the unit display board to record the
action and also send the information to the main controller interface to display the action on the main
display board.
Display Interface
Display interface displays the status of the system. It has a unit controller, which records the
information and displays the message through the display board. It also consists of a backup battery for
the smooth running of the system.
2.2 Use Case Summary
ENPM 643 – Fall ’06
Parking Lot Occupancy Tracking System
7
2.3 Car Arriving
Use Case Narrative
Use-Case Name: Car Arriving
Primary Actor: Car/Driver
Other Actors: None
Description: This use case describes the event of the system tracking when a car arrives at
the parking lot
Assumptions: Parking Lot Open
Precondition: Car must have a parking lot tag
Initiation/Trigger: The use case is initiated when the car approaches the entrance gate
Typical Course Of
Events /Dialog:
Actor Action System Response
Step 1: Car approaches gate Step 2: The system detects the car tag
and checks with may database for
authorization.
Step 3: The car is authorized and the
system responds by opening the gate.
Step 4: The car drives
through the gate.
Step 5: The system closes the gate
once the car is through.
Step 6: The car parks in an
available space.
Step 7: The system detects car.
Step 8: The space status is updated
within the system.
Alternate Courses: Alt-Step 3: If the car access is not authorized, an error message is
displayed to inform the outcome that the access has been denied
Conclusion: This use case concludes when the parking space status is updated
Post Condition: Parking space status is updated from vacant to occupied
ENPM 643 – Fall ’06
Parking Lot Occupancy Tracking System
8
Activity Diagram
ENPM 643 – Fall ’06
Parking Lot Occupancy Tracking System
9
Sequence Diagram
ENPM 643 – Fall ’06
Parking Lot Occupancy Tracking System
10
2.4 Car Leaving
Use Case Narrative
Use-Case Name: Car Leaving
Primary Actor: Car/Driver
Other Actors: None
Description: This use case describes the event of the system tracking when a car leaves the
parking lot
Assumptions: Parking Lot Open
Precondition: Car is inside the parking lot
Initiation/Trigger: The use case is initiated when the car approaches the exit gate
Typical Course Of
Events /Dialog:
Actor Action System Response
Step 1: Car approaches the
exit gate
Step 2: The system detects the car by
the exit gate
Step 3: The system sends a signal for
the exit gate to open
Step 4: The exit gate opens
Step 5: The car leaves the
parking lot premises
Step 6: The exit gate closes
Alternate Courses: N/A
Conclusion: This use case concludes when the exit gate closes
Post Condition: The car is no longer within the parking lot limits
ENPM 643 – Fall ’06
Parking Lot Occupancy Tracking System
11
Activity& Sequence Diagrams
ENPM 643 – Fall ’06
Parking Lot Occupancy Tracking System
12
2.5 Display Parking Space Availability
Use Case Narrative
Activity Diagram
Use-Case Name: Display Parking Space Availability
Primary Actor: Display
Other Actors: None
Description: This use case describes the event of the system updating the information
displayed by the parking lot entrance
Assumptions: Parking lot open and display on
Precondition: None
Initiation/Trigger: The use case is initiated when the parking lot opens
Typical Course Of
Events /Dialog:
Actor Action System Response
Step 1: The system initializes the
display
Step 2: Display
acknowledges initialization
Step 3: The system sends information
to the display
Step 4: Information is
displayed
Step 5: The system waits a preset
amount of time and goes back to Step
3
Alternate Courses: Alt Step 5 If system disable the loop is terminated
Conclusion: This use case concludes when the system is disabled
Post Condition: The up-to-date information on available parking spaces is displayed
ENPM 643 – Fall ’06
Parking Lot Occupancy Tracking System
13
2.6 System Privileges/Utilities
Use Case Narrative
Use-Case Name: System Privileges/Utilities
Primary Actor: Manager/Owner
Other Actors: None
Description: This use case describes the possible system priveleges available to the
parking lot owner.
Assumptions: NA
Precondition: Manager must have the access password to the system
Initiation/Trigger: The manager enters the password to get access to the system.
Typical Course Of
Events /Dialog:
Actor Action
Step 1: Owner enters password to get access to the system.
Step 2: Owner is authorized and has a choice of three options. (a/b/c)
Step 3: The Owner selects the option. (a/b/c)
Step 4.a: Owner
selects system on/off.
Step 4.b: Owner
selects parking space
to be altered, made
available/unavailable
Step 4.c: Owner
enters message
manually for the
display board.
Step 5.a: System
turned on/off
Step 5.b: Parking
space is altered.
Step 5.c: Only the
entered message is
displayed on the
board.
Alternate Courses: Alt-Step 2: Owner is not authorized and is unable to take any action on
the system.
Conclusion: This use case concluded when system turned on/off or space altered or
message is displayed.
Post Condition: System on/off or Space altered or Message displayed.
ENPM 643 – Fall ’06
Parking Lot Occupancy Tracking System
14
Activity Diagram
ENPM 643 – Fall ’06
Parking Lot Occupancy Tracking System
15
2.7 Update/New user database
Use-Case Name: Update/New member table
Primary Actor: Manager
Other Actors: None
Description: This use case describes the event of adding/removing/editing the access
permission of a parking lot member.
Assumptions: System on.
Precondition: Manager authorized to access database.
Initiation/Trigger: Manager enters details to be searched.
Typical Course Of
Events /Dialog:
Actor Action
Step 1: Manager gets access to the database.
Step 2: Manager enters commuter details to search in the database.
Step 3: Database shows the result in the form of commuter details
present/absent.
Step 4.a: Manager
enters details for the
new commuter in the
database.
Step 4.b: Manager selects the commuter
details to delete/update.
Step 5a: Database is
updated by the new
details entered.
Step 5.b.1: The
selected commuter
gets deleted from the
system database.
Step 5.b.2: Manager
selects details to be
updated for the
commuter.
Step 6: Manager
issues a new tag for
the new commuter.
Step 6.b.1The
associated tag gets
deactivated.
Step 6.b.2: Details of
the commuter gets
updated in system
database.
Conclusion: This use case concluded when system database is updated in the form
of new- edited or deleted details of the commuter.
Post Condition: Database is updated by the action.
ENPM 643 – Fall ’06
Parking Lot Occupancy Tracking System
16
Activity Diagram
ENPM 643 – Fall ’06
Parking Lot Occupancy Tracking System
17
2.8 Generate Report
Use-Case Name: Generate Report
Primary Actor: Manager
Other Actors: None
Description: This use case describes the event of creating a report based on the
information collected by the system.
Assumptions: System on.
Precondition: Manager authorized to access database.
Initiation/Trigger: Manager enters details to be searched.
Typical Course Of
Events /Dialog:
Actor Action
Step 1: Manager gets access to the database.
Step 2: Manager selects information to generate the report.
Step 3.a: Manager selects
information of commuter for
report.
Step 3.b: Manager selects system
information for report.
Step 4.a: Report generated
on the basis of the
information in the database.
Step 4.b.1:
Manager opts for
maintenance
report.
Step 4.b.2:
Manager opts for
system
performance report
Step 6: Manager issues a
new tag for the new
commuter.
Step 6.b.1:
Maintenance
report generated.
Step 6.b.2:
Performance report
generated
Conclusion: This use case concluded when system creates a report on the
requested option by the manager.
Post Condition: Report from the database is generated.
ENPM 643 – Fall ’06
Parking Lot Occupancy Tracking System
18
Activity Diagram
ENPM 643 – Fall ’06
Parking Lot Occupancy Tracking System
19
3 REQUIREMENTS/ GOALS & SCENARIOS
.
3.1 Goals and Scenarios
The use case describes all that can happen in the achievement of the system objective. Use Cases
drive the requirements engineering phase of development. The various Goals and Scenarios
critical to the system are depicted below ‘
Goal 1: Operators must be able to edit and send messages to Display Boards
Scenario 1.1: Operator will send messages from the system to the display board.
Scenario 1.2: Operator wants to compose a new message that is not available in the list.
Goal 2: There must be an on/off button at the control center
Scenario 2.1: Emergency shut down required for maintenance.
Scenario 2.2: Control center to be evacuated in case of fire etc
Goal 3: Operators must be able to stop displaying current message on Display Boards.
Scenario 3.1: A higher priority message or warning could be waiting to be displayed.
Scenario 3.2: Displayed signs would no longer be valid.
Goal 4: The Display Board must be “all weather proof”
Scenario 4.1: Display board will be installed in outdoors as well as indoors.
Scenario 4.2: Display board will be installed in far south as well as far north
Scenario 4.3: There is likelihood of snow, rain; heavy winds etc (should be sturdy enough to
withstand adverse conditions)
Goal 5: There must be an indicator showing the status of the active Display Board
Scenario 5.1: System sends a message to the display board but the display board was
disconnected.
ENPM 643 – Fall ’06
Parking Lot Occupancy Tracking System
20
Scenario 5.2: Display board out of service for maintenance.
Scenario 5.3: Network or hardware failure on remote site.
Goal 6: The system must store all information about every activity performed at each
workstation.
Scenario 6.1: Administrator wants to check the logs for specific information.
Scenario 6.2: Periodic reports to be generated to check system performance.
Goal 7: The system must be secure
Scenario 7.1: Unauthorized person tries to login.
Scenario 7.2: Operator tries to change system settings, which he is not authorized to.
Goal 8: The display board/sensor system must have backup power
Scenario 8.1: Power failure occurs.
Scenario 8.2: Power cable is broken due to accident.
Goal 9: The sensor must be capable of detecting any vehicle
Scenario 9.1: Vehicle might be small in dimensions.
Scenario 9.2: Vehicle might be parked wrong.
Goal 12: The system must be capable of reporting any system failure to the manager.
Scenario 12.1: The system is not displaying information.
Scenario 12.2: The sensor is unable to recognize vehicles parked.
ENPM 643 – Fall ’06
Parking Lot Occupancy Tracking System
21
3.2 Requirements:
1. The system must contain a database.
1.1. The database should contain all the information about the commuters.
1.2 The database must allow retrieval and addition of information.
2. The system must allow only the authorized users to enter the parking lot.
2.1 The entrance gate control unit should open after the authorization of the commuter.
2.2 The entrance sensor should verify the authorization through the database.
3. The system must display parking space availability.
3.1 The system should display the number of occupied spaces.
3.2 The system should display the number of vacant spaces.
3.3 The system should display messages from the manager during special instances.
3.4 The message should take less than 10 seconds from the control center to the display
boards.
3.5 The system should display message on the display board for 3 minutes unless and
until stated otherwise.
4. The system must receive a confirmation message for every message sent on the display screen.
5. The system must have three parking spaces available.
5.1 The system should have open parking spaces.
5.2 The system should have handicap parking spaces.
5.3 The system should security/service parking spaces.
6. The system should have individual display boards for all parking spaces.
6.1 The display boards must display green light for available spaces.
ENPM 643 – Fall ’06
Parking Lot Occupancy Tracking System
22
6.2 The display boards must display red light for unavailable spaces.
6.2 The display boards must display blue light for handicap parking spaces.
7. The system must receive and send information to and from the unit controllers.
7.1 The unit controller must receive information from sensors.
7.2 The unit controller must display information on individual display boards.
7.3 The unit controller must send information to control system.
8. The system should have an indicator to indicate the status of display boards.
8.1 The system must have red color indicator for inactive display, green color indicator as
active display board, and orange color to indicate a hardware failure of the display
board.
8.2 Every display board must send feedback to the control center every 5 seconds to
display it as alive.
9. The system should recognize the parked vehicle.
9.1 The system sensor must recognize the parked vehicle irrespective of its size.
9.2 The system sensor must recognize and report wrongly parked vehicle.
10. The system should allow for redefining the parking spaces.
10.1 The system must allow altering the parking spaces in case of maintenance.
11. The system should allow the user to take over during troubleshooting
11.1 The system must allow user to take over during system/sub-system failure.
11.2 The system must allow user to create/edit messages on main display board.
11.3 The system must allow user control while maintenance process.
12. The control center shall have a single button to turn off the system.
12.1 The button shall be a physical button present on the computer of the operator.
ENPM 643 – Fall ’06
Parking Lot Occupancy Tracking System
23
12.2 The button shall have an LED on its side indicating the status of the system.
12.3 The button shall have a clearly marked sign of system shut down.
13. The control center shall have security.
13.1 The control center shall have role based security system.
13.2 Role in the control center shall include supervisor, maintenance and operator.
13.3 The system shall have a counter for number of attempts.
3.3 Requirements Mapping:
SUBCOMPONENTS:
1. Parking Gate
2. Parking Space
3. Manager Interface
4. Display
5. Controller
UML DIAGRAMS
1. 2.3- Car Arriving
2. 2.4- Car Leaving
3. 2.5- Display Parking Space Availability
4. 2.6- System Privileges/Utilities
5. 2.7- Update/New user database
6. 2.8- Generate Report
ENPM 643 – Fall ’06
Parking Lot Occupancy Tracking System
24
RREEQQUUIIRREEMMEENNTTSS AASSSSOOCCIIAATTEEDD CCOOMMPPOONNEENNTT UUMMLL DDIIAAGGRRAAMMSS
REQ 1.0 Controller, Parking gate, 2.3, 2.7, 2.8
REQ 2.0 Controller, Parking gate 2.3, 2.7
REQ 3.0 Manager interface, Display 2.6
REQ 4.0 Controller, Display 2.5
REQ 5.0 Display, Parking space 2.3, 2.5,2.6
REQ 6.0 Parking space 2.3, 2.4
REQ 7.0 Controller, Parking space, Display 2.3, 2.5
REQ 8.0 Controller 2.3
REQ 9.0 Parking space 2.3, 2.5
REQ 10.0 Manager interface, Parking space 2.6
REQ 11.0 Manager interface, Display 2.6
REQ 12.0 Manager interface, Controller 2.6
REQ 13.0 Manager interface 2.6
ENPM 643 – Fall ’06
Parking Lot Occupancy Tracking System
25
4 DESIGN ANALYSIS & VALIDATION
The UML models are very helpful at hashing out all the different subcomponents of the
system and their interaction. However, when creating the UML diagrams, the system designer
may inadvertently create states that are never reached or legal transitions that if taken would put
the system in a deadlock. These design mistakes are not usually identified and corrected until the
software is being implemented or out on the field making the mistakes hard and costly to fix.
With that situation in mind, we decided
to implement the design flow shown in Figure 2
- Verification & Validation Flow. First the UML
was created as described in section 2. Based on
the UML sequence diagram an LTSA model is
created to check for potential deadlock or
unreachable states. Once the parking lot
controller design is complete, it was then
implemented using Java to further verify its
coherence and to validate the interaction with
the external actors (e.g. car/driver).
The car arriving sequence diagram
(Figure 3 - Car Arriving Sequence Diagram) was
created using the Argo shareware. Using that as
a starting point and making use of LTSA-MSC
plug-in, we came up with the high level
sequence of messages (Figure 4 - hSMC View)
and the subcomponents interaction (Figure 5 -
Trace View).
Figure 3 - Car Arriving Sequence Diagram
UML LTSA Java
Figure 2 - Verification & Validation Flow
ENPM 643 – Fall ’06
Parking Lot Occupancy Tracking System
26
With the views above generated, the LTSA tool was able to create a textual notation of
the system also known as FSP or Finite State Process. Once the FSP is created, we were able to
check our model for safety and progress. The safety check looks for states with no outgoing
transitions, which are potential deadlocks in the system. The progress check, also called liveness,
this check verifies that whatever state a system is in, it is always the case that a specified action
will eventually be executed. Both checks passed for our design. The resulting FSP model for
subcomponents as well as the architecture is shown below.
Figure 4 - hSMC View Figure 5 - Trace View
Figure 6 - Parking Space Sensor Model
Figure 7 - Car Model
ENPM 643 – Fall ’06
Parking Lot Occupancy Tracking System
27
The architecture model above was used to animate and check the behavior of the overall
system. Figure 10 - Animation of Parking Lot Controller shows a captured image of the LTSA tool
animator window. The list on the right presents all possible transitions. However, the green
check mark indicates the valid transitions from the state the system is in. That way the model can
be traversed from state to state to make sure the model behaves as expected. The animator was
used to test a group of scenarios against the model and the outcome was verified.
Figure 8 - Gate Model
Figure 9 - System Behavior Model
Figure 10 - Animation of Parking Lot Controller
ENPM 643 – Fall ’06
Parking Lot Occupancy Tracking System
28
The last step in our flow was to validate the interaction between the parking lot controller and the
actors external to the system. To do that, a Java applet was created where classes were created to emulate
each actor and the parking lot controller was implemented in a class of itself. The screenshot, Figure 11 -
Parking Lot Java Applet, is of the resulting applet.
Figure 11 - Parking Lot Java Applet
ENPM 643 – Fall ’06
Parking Lot Occupancy Tracking System
29
5 CONCLUSION
For this project, the goal was to take the idea of an occupancy aware parking lot
through the design process as far as possible given the time and resources. At first the system
details were hashed out through the use of use case scenarios. These scenarios were then further
refined and modeled using UML diagrams. These first steps are widely applied during the design
process of systems. For this project however, we decided to validate the UML models using a
well defined and repeatable process rather than the usual model review meetings with team
members approach. The method used was based on composing joint sets of transition state
machines using the FSP language and then check for unexpected behavior using a set of tools.
Due to time constraints, we decided to go through the validation and verification flow
with the Car Arriving use case only. The exercise was successful and we were able to actually
implement part of the system at a higher level, using Java, to simulate its behavior. The available
tools out there, such as LTSA, are very helpful at discovering hidden potential paths within the
models and verifying that they work as intended. However, it is best suited for small size systems
at the present moment and need to be further developed before mainstream adoption is possible.
One important feature would be the support for creating a library of low level models that could
be reused over and over as building blocks for creating models of larger systems.

Contenu connexe

Tendances

SRS for Railways Reservation System
SRS for Railways Reservation System SRS for Railways Reservation System
SRS for Railways Reservation System Vignesh Arun
 
Smart parking System
Smart parking SystemSmart parking System
Smart parking Systemnavrajneupane
 
automatic number plate recognition
automatic number plate recognitionautomatic number plate recognition
automatic number plate recognitionSairam Taduvai
 
Automatic Number Plate Recognition
Automatic Number Plate RecognitionAutomatic Number Plate Recognition
Automatic Number Plate RecognitionSajan CK
 
Smart parking system
Smart parking systemSmart parking system
Smart parking systemslmnsvn
 
car showroom management project SE_!
car showroom management project SE_!car showroom management project SE_!
car showroom management project SE_!Shoaib Ch
 
Driver drowsinees detection and alert.pptx slide
Driver drowsinees detection and alert.pptx slideDriver drowsinees detection and alert.pptx slide
Driver drowsinees detection and alert.pptx slidekavinakshi
 
TRAIN TICKETING SYSTEM
TRAIN TICKETING SYSTEMTRAIN TICKETING SYSTEM
TRAIN TICKETING SYSTEMNimRaH NaZaR
 
Vehicles Parking Management System project presentation 2020
Vehicles Parking Management System project presentation 2020Vehicles Parking Management System project presentation 2020
Vehicles Parking Management System project presentation 2020Vikram Singh
 
Implementation of Drunk drive prevention techniques by engine locking
Implementation of Drunk drive prevention techniques by engine lockingImplementation of Drunk drive prevention techniques by engine locking
Implementation of Drunk drive prevention techniques by engine lockingAkhil Vamaraju
 
JUSTCABS - an Online Cab Reservation System (Final Year Project)
JUSTCABS - an Online Cab Reservation System (Final Year Project)JUSTCABS - an Online Cab Reservation System (Final Year Project)
JUSTCABS - an Online Cab Reservation System (Final Year Project)Amartya .
 
Microcontroller based automatic engine locking system for drunken drivers
Microcontroller based automatic engine locking system for drunken driversMicrocontroller based automatic engine locking system for drunken drivers
Microcontroller based automatic engine locking system for drunken driversVinny Chweety
 
Automatic Toll Collection
Automatic Toll Collection Automatic Toll Collection
Automatic Toll Collection Ritesh Kumawat
 
SMART CAR-PARKING SYSTEM USING IOT
SMART CAR-PARKING SYSTEM USING IOTSMART CAR-PARKING SYSTEM USING IOT
SMART CAR-PARKING SYSTEM USING IOTSaipandu143
 

Tendances (20)

SRS for Railways Reservation System
SRS for Railways Reservation System SRS for Railways Reservation System
SRS for Railways Reservation System
 
Smart parking System
Smart parking SystemSmart parking System
Smart parking System
 
Electronic toll system
Electronic toll systemElectronic toll system
Electronic toll system
 
automatic number plate recognition
automatic number plate recognitionautomatic number plate recognition
automatic number plate recognition
 
Online parking
Online parkingOnline parking
Online parking
 
Vehicle security system final report
Vehicle security system final reportVehicle security system final report
Vehicle security system final report
 
Automatic Number Plate Recognition
Automatic Number Plate RecognitionAutomatic Number Plate Recognition
Automatic Number Plate Recognition
 
Atumatic toll tax system
Atumatic toll tax systemAtumatic toll tax system
Atumatic toll tax system
 
Smart parking system
Smart parking systemSmart parking system
Smart parking system
 
car showroom management project SE_!
car showroom management project SE_!car showroom management project SE_!
car showroom management project SE_!
 
Driver drowsinees detection and alert.pptx slide
Driver drowsinees detection and alert.pptx slideDriver drowsinees detection and alert.pptx slide
Driver drowsinees detection and alert.pptx slide
 
TRAIN TICKETING SYSTEM
TRAIN TICKETING SYSTEMTRAIN TICKETING SYSTEM
TRAIN TICKETING SYSTEM
 
Smart Parking
Smart Parking Smart Parking
Smart Parking
 
Vehicles Parking Management System project presentation 2020
Vehicles Parking Management System project presentation 2020Vehicles Parking Management System project presentation 2020
Vehicles Parking Management System project presentation 2020
 
Implementation of Drunk drive prevention techniques by engine locking
Implementation of Drunk drive prevention techniques by engine lockingImplementation of Drunk drive prevention techniques by engine locking
Implementation of Drunk drive prevention techniques by engine locking
 
JUSTCABS - an Online Cab Reservation System (Final Year Project)
JUSTCABS - an Online Cab Reservation System (Final Year Project)JUSTCABS - an Online Cab Reservation System (Final Year Project)
JUSTCABS - an Online Cab Reservation System (Final Year Project)
 
Microcontroller based automatic engine locking system for drunken drivers
Microcontroller based automatic engine locking system for drunken driversMicrocontroller based automatic engine locking system for drunken drivers
Microcontroller based automatic engine locking system for drunken drivers
 
Automatic Toll Collection
Automatic Toll Collection Automatic Toll Collection
Automatic Toll Collection
 
eCall
eCalleCall
eCall
 
SMART CAR-PARKING SYSTEM USING IOT
SMART CAR-PARKING SYSTEM USING IOTSMART CAR-PARKING SYSTEM USING IOT
SMART CAR-PARKING SYSTEM USING IOT
 

En vedette

Parking Reservation Management Systems
Parking Reservation Management SystemsParking Reservation Management Systems
Parking Reservation Management SystemsIshanka Madushan
 
Lecture 12b Use Case Example
Lecture 12b  Use  Case  ExampleLecture 12b  Use  Case  Example
Lecture 12b Use Case ExampleZeeshan Javaid
 
Restaurant automation analysis&designdoc_v3.1
Restaurant automation analysis&designdoc_v3.1Restaurant automation analysis&designdoc_v3.1
Restaurant automation analysis&designdoc_v3.1Prabhakar Ganesamurthy
 
Finaldocumentation
FinaldocumentationFinaldocumentation
Finaldocumentationasuadma
 
Smart parking reservation system using SMS
Smart parking reservation system using SMSSmart parking reservation system using SMS
Smart parking reservation system using SMSJithin Prasad
 
Software requirement specification
Software requirement specificationSoftware requirement specification
Software requirement specificationRavi Yasas
 
Lecture04- Use Case Diagrams
Lecture04- Use Case DiagramsLecture04- Use Case Diagrams
Lecture04- Use Case Diagramsartgreen
 
Vehicle Parking System Project
Vehicle Parking System ProjectVehicle Parking System Project
Vehicle Parking System ProjectFarooq Mian
 
5.state diagrams
5.state diagrams5.state diagrams
5.state diagramsAPU
 
automatic car parking system
automatic car parking systemautomatic car parking system
automatic car parking systemsowmya Sowmya
 
AUTOMATIC CAR PARKING SYSTEM
AUTOMATIC CAR PARKING SYSTEMAUTOMATIC CAR PARKING SYSTEM
AUTOMATIC CAR PARKING SYSTEMsowmya Sowmya
 
Use Case Diagram
Use Case DiagramUse Case Diagram
Use Case DiagramAshesh R
 

En vedette (15)

Birdie Analysis Report
Birdie Analysis ReportBirdie Analysis Report
Birdie Analysis Report
 
Parking Reservation Management Systems
Parking Reservation Management SystemsParking Reservation Management Systems
Parking Reservation Management Systems
 
Software specification for
Software specification forSoftware specification for
Software specification for
 
Lecture 12b Use Case Example
Lecture 12b  Use  Case  ExampleLecture 12b  Use  Case  Example
Lecture 12b Use Case Example
 
Restaurant automation analysis&designdoc_v3.1
Restaurant automation analysis&designdoc_v3.1Restaurant automation analysis&designdoc_v3.1
Restaurant automation analysis&designdoc_v3.1
 
Finaldocumentation
FinaldocumentationFinaldocumentation
Finaldocumentation
 
baabtra, First Programming School in India SRS, stock management system
baabtra, First Programming School in India SRS, stock management systembaabtra, First Programming School in India SRS, stock management system
baabtra, First Programming School in India SRS, stock management system
 
Smart parking reservation system using SMS
Smart parking reservation system using SMSSmart parking reservation system using SMS
Smart parking reservation system using SMS
 
Software requirement specification
Software requirement specificationSoftware requirement specification
Software requirement specification
 
Lecture04- Use Case Diagrams
Lecture04- Use Case DiagramsLecture04- Use Case Diagrams
Lecture04- Use Case Diagrams
 
Vehicle Parking System Project
Vehicle Parking System ProjectVehicle Parking System Project
Vehicle Parking System Project
 
5.state diagrams
5.state diagrams5.state diagrams
5.state diagrams
 
automatic car parking system
automatic car parking systemautomatic car parking system
automatic car parking system
 
AUTOMATIC CAR PARKING SYSTEM
AUTOMATIC CAR PARKING SYSTEMAUTOMATIC CAR PARKING SYSTEM
AUTOMATIC CAR PARKING SYSTEM
 
Use Case Diagram
Use Case DiagramUse Case Diagram
Use Case Diagram
 

Similaire à Parking lotproject

AN AUTOMATED CAR PARKING SYSTEM BY USING PROGAMMABLE LOGIC CONTROLLER
AN AUTOMATED CAR PARKING SYSTEM BY USING PROGAMMABLE LOGIC CONTROLLERAN AUTOMATED CAR PARKING SYSTEM BY USING PROGAMMABLE LOGIC CONTROLLER
AN AUTOMATED CAR PARKING SYSTEM BY USING PROGAMMABLE LOGIC CONTROLLERIRJET Journal
 
Ieeepro techno solutions ieee 2013 embedded project autonomous self parkin...
Ieeepro techno solutions    ieee 2013 embedded project autonomous self parkin...Ieeepro techno solutions    ieee 2013 embedded project autonomous self parkin...
Ieeepro techno solutions ieee 2013 embedded project autonomous self parkin...srinivasanece7
 
C03502014017
C03502014017C03502014017
C03502014017theijes
 
Online car parking reservation system 9160262550 dinesh
Online car parking reservation system   9160262550 dineshOnline car parking reservation system   9160262550 dinesh
Online car parking reservation system 9160262550 dineshDinesh Nalluri
 
IRJET- Automatic Toll Collection System based on Embedded System LINUX
IRJET-  	  Automatic Toll Collection System based on Embedded System LINUXIRJET-  	  Automatic Toll Collection System based on Embedded System LINUX
IRJET- Automatic Toll Collection System based on Embedded System LINUXIRJET Journal
 
A Pothole Detection System M. Tech Project Report II Nd Stage
A Pothole Detection System M. Tech Project Report   II Nd StageA Pothole Detection System M. Tech Project Report   II Nd Stage
A Pothole Detection System M. Tech Project Report II Nd StageRick Vogel
 
IRJET- Improvising Reliability of Autonomous Car using Risk Detection
IRJET-  	  Improvising Reliability of Autonomous Car using Risk DetectionIRJET-  	  Improvising Reliability of Autonomous Car using Risk Detection
IRJET- Improvising Reliability of Autonomous Car using Risk DetectionIRJET Journal
 
IRJET- Car Black Box System for Accidental Evidence Collection
IRJET- Car Black Box System for Accidental Evidence CollectionIRJET- Car Black Box System for Accidental Evidence Collection
IRJET- Car Black Box System for Accidental Evidence CollectionIRJET Journal
 
Vehicle Related Prevention Techniques: Pothole/Speedbreaker Detection and Ant...
Vehicle Related Prevention Techniques: Pothole/Speedbreaker Detection and Ant...Vehicle Related Prevention Techniques: Pothole/Speedbreaker Detection and Ant...
Vehicle Related Prevention Techniques: Pothole/Speedbreaker Detection and Ant...IRJET Journal
 
The International Journal of Engineering and Science (IJES)
The International Journal of Engineering and Science (IJES)The International Journal of Engineering and Science (IJES)
The International Journal of Engineering and Science (IJES)theijes
 
IRJET - Android based M-Application for Car Parking using QR Code
IRJET - Android based M-Application for Car Parking using QR CodeIRJET - Android based M-Application for Car Parking using QR Code
IRJET - Android based M-Application for Car Parking using QR CodeIRJET Journal
 
Design and Implementation of Car Black box for Evidence Collection System to ...
Design and Implementation of Car Black box for Evidence Collection System to ...Design and Implementation of Car Black box for Evidence Collection System to ...
Design and Implementation of Car Black box for Evidence Collection System to ...IJMTST Journal
 
IRJET- Intelligent Vehicle Control System
IRJET-  	  Intelligent Vehicle Control SystemIRJET-  	  Intelligent Vehicle Control System
IRJET- Intelligent Vehicle Control SystemIRJET Journal
 
AUTOMATIC SOLAR VERTICAL CAR PARKING SYSTEM
      AUTOMATIC  SOLAR VERTICAL CAR PARKING SYSTEM      AUTOMATIC  SOLAR VERTICAL CAR PARKING SYSTEM
AUTOMATIC SOLAR VERTICAL CAR PARKING SYSTEMMirza Baig
 
Automatic collision detection for an autonomous robot using proximity sensing...
Automatic collision detection for an autonomous robot using proximity sensing...Automatic collision detection for an autonomous robot using proximity sensing...
Automatic collision detection for an autonomous robot using proximity sensing...eSAT Publishing House
 

Similaire à Parking lotproject (20)

AN AUTOMATED CAR PARKING SYSTEM BY USING PROGAMMABLE LOGIC CONTROLLER
AN AUTOMATED CAR PARKING SYSTEM BY USING PROGAMMABLE LOGIC CONTROLLERAN AUTOMATED CAR PARKING SYSTEM BY USING PROGAMMABLE LOGIC CONTROLLER
AN AUTOMATED CAR PARKING SYSTEM BY USING PROGAMMABLE LOGIC CONTROLLER
 
Ieeepro techno solutions ieee 2013 embedded project autonomous self parkin...
Ieeepro techno solutions    ieee 2013 embedded project autonomous self parkin...Ieeepro techno solutions    ieee 2013 embedded project autonomous self parkin...
Ieeepro techno solutions ieee 2013 embedded project autonomous self parkin...
 
C03502014017
C03502014017C03502014017
C03502014017
 
Online car parking reservation system 9160262550 dinesh
Online car parking reservation system   9160262550 dineshOnline car parking reservation system   9160262550 dinesh
Online car parking reservation system 9160262550 dinesh
 
IRJET- Automatic Toll Collection System based on Embedded System LINUX
IRJET-  	  Automatic Toll Collection System based on Embedded System LINUXIRJET-  	  Automatic Toll Collection System based on Embedded System LINUX
IRJET- Automatic Toll Collection System based on Embedded System LINUX
 
Smart parking - Happiestminds !
Smart parking - Happiestminds !Smart parking - Happiestminds !
Smart parking - Happiestminds !
 
Smart Parking
Smart ParkingSmart Parking
Smart Parking
 
Smart Parking
Smart ParkingSmart Parking
Smart Parking
 
A Pothole Detection System M. Tech Project Report II Nd Stage
A Pothole Detection System M. Tech Project Report   II Nd StageA Pothole Detection System M. Tech Project Report   II Nd Stage
A Pothole Detection System M. Tech Project Report II Nd Stage
 
IRJET- Improvising Reliability of Autonomous Car using Risk Detection
IRJET-  	  Improvising Reliability of Autonomous Car using Risk DetectionIRJET-  	  Improvising Reliability of Autonomous Car using Risk Detection
IRJET- Improvising Reliability of Autonomous Car using Risk Detection
 
IRJET- Car Black Box System for Accidental Evidence Collection
IRJET- Car Black Box System for Accidental Evidence CollectionIRJET- Car Black Box System for Accidental Evidence Collection
IRJET- Car Black Box System for Accidental Evidence Collection
 
Vehicle Related Prevention Techniques: Pothole/Speedbreaker Detection and Ant...
Vehicle Related Prevention Techniques: Pothole/Speedbreaker Detection and Ant...Vehicle Related Prevention Techniques: Pothole/Speedbreaker Detection and Ant...
Vehicle Related Prevention Techniques: Pothole/Speedbreaker Detection and Ant...
 
The International Journal of Engineering and Science (IJES)
The International Journal of Engineering and Science (IJES)The International Journal of Engineering and Science (IJES)
The International Journal of Engineering and Science (IJES)
 
IRJET - Android based M-Application for Car Parking using QR Code
IRJET - Android based M-Application for Car Parking using QR CodeIRJET - Android based M-Application for Car Parking using QR Code
IRJET - Android based M-Application for Car Parking using QR Code
 
Design and Implementation of Car Black box for Evidence Collection System to ...
Design and Implementation of Car Black box for Evidence Collection System to ...Design and Implementation of Car Black box for Evidence Collection System to ...
Design and Implementation of Car Black box for Evidence Collection System to ...
 
Ijetcas14 395
Ijetcas14 395Ijetcas14 395
Ijetcas14 395
 
car parking
car parkingcar parking
car parking
 
IRJET- Intelligent Vehicle Control System
IRJET-  	  Intelligent Vehicle Control SystemIRJET-  	  Intelligent Vehicle Control System
IRJET- Intelligent Vehicle Control System
 
AUTOMATIC SOLAR VERTICAL CAR PARKING SYSTEM
      AUTOMATIC  SOLAR VERTICAL CAR PARKING SYSTEM      AUTOMATIC  SOLAR VERTICAL CAR PARKING SYSTEM
AUTOMATIC SOLAR VERTICAL CAR PARKING SYSTEM
 
Automatic collision detection for an autonomous robot using proximity sensing...
Automatic collision detection for an autonomous robot using proximity sensing...Automatic collision detection for an autonomous robot using proximity sensing...
Automatic collision detection for an autonomous robot using proximity sensing...
 

Dernier

Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Sapana Sha
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docxPoojaSen20
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxpboyjonauth
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfchloefrazer622
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfciinovamais
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdfQucHHunhnh
 
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxContemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxRoyAbrique
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformChameera Dedduwage
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxGaneshChakor2
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphThiyagu K
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Educationpboyjonauth
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdfQucHHunhnh
 
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991RKavithamani
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdfssuser54595a
 
URLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppURLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppCeline George
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdfSoniaTolstoy
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactPECB
 

Dernier (20)

Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
 
Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docx
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptx
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdf
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxContemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy Reform
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptx
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot Graph
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Education
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
 
URLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppURLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website App
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
 
Staff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSDStaff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSD
 
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdfTataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
 

Parking lotproject

  • 1. SSYYSSTTEEMMSS EENNGGIINNEEEERRIINNGG DDEESSIIGGNN PPRROOJJEECCTT EENNPPMM 664433,, FFaallll 22000066 Instructor Authors ENPM643 Dr. M Austin Atul Mehta & Felipe Leite Fall 2006
  • 2. ENPM 643 – Fall ’06 Parking Lot Occupancy Tracking System 2 TABLE OF CONTENTS Section Page 1 OVERVIEW OF THE PROJECT....................................................................................... 3 1.1 PURPOSE ........................................................................................................................... 3 1.2 ROLES AND RESPONSIBILITIES .......................................................................................... 3 1.3 INTRODUCTION.................................................................................................................. 3 1.4 DEFINITIONS...................................................................................................................... 4 1.5 ASSUMPTIONS AND LIMITATIONS...................................................................................... 4 1.6 REFERENCE MATERIAL ..................................................................................................... 4 2 UML MODELS...................................................................................................................... 5 2.1 DEPLOYMENT DIAGRAM ................................................................................................... 5 2.2 USE CASE SUMMARY ........................................................................................................ 6 2.3 CAR ARRIVING.................................................................................................................. 7 2.4 CAR LEAVING ................................................................................................................. 10 2.5 DISPLAY PARKING SPACE AVAILABILITY........................................................................ 12 2.6 SYSTEM PRIVILEGES/UTILITIES....................................................................................... 13 2.7 UPDATE/NEW USER DATABASE ....................................................................................... 15 2.8 GENERATE REPORT ......................................................................................................... 17 3 REQUIREMENTS/ GOALS & SCENARIOS.................................................................. 19 4 DESIGN ANALYSIS & VALIDATION ........................................................................... 25 5 CONCLUSION.................................................................................................................... 29
  • 3. ENPM 643 – Fall ’06 Parking Lot Occupancy Tracking System 3 1 OVERVIEW OF THE PROJECT 1.1 Purpose The goal of this project was to take a parking lot control system from requirement generation, through model generation and validation. This document describes the process taken a presents the resulting data. 1.2 Roles and Responsibilities The project team is formed by the following students: Atul Mehta and Felipe Leite. Since all team members have the same experience and expertise designing systems, the work was divided equally and assigned arbitrarily. 1.3 Introduction For our project, we have decided to design a system that can be deployed in existing parking structures which would provide information about available parking spaces to drivers trying to access the facility. The system will include software, sensors and the networking components. The installation of permanent sensors in each parking space will provide lot owners with constant and accurate information on parking lot occupancy. This allows them to keep the lot at full capacity and serve customers better. Figure 1 shows the building parking lot that we will be designing for. It has 72 parking spaces where 8 are handicap, 4 are for the building staff and the remaining 60 are available for regular lot users. In addition, a list of members provided to the system by the building owner will be used to grant or not access to the facility. Figure 1 - Parking Lot Layout
  • 4. ENPM 643 – Fall ’06 Parking Lot Occupancy Tracking System 4 The system will make use of electronic signs to give drivers, information regarding parking availability before they enter the facility. Once inside, color coded LED displays will lead motorists to the vacant spaces. Parking spaces can be made unavailable by the building manager bypassing the sensors. This and other configuration options will be made available through a GUI interface. 1.4 Definitions 1.4.1 Parking Lot The parking lot consists of one entrance and 1 exit. There are 72 parking spaces with 8 being handicap and 4 being reserved for building staff. 1.4.2 Entrance The entrance consists of a gate, a display showing the precise number of available parking spaces, a tag reader. The tag reader is activated as soon as the car is within range. 1.4.3 Exit The exit consists of a gate and an induction loop that is behind the gate to detect when a car approaches the gate. 1.5 Assumptions and Limitations Every parking space can be reached from any entrance. Every exit can be reached from each parking space. No entrances are convertible to exits and vice versa. Building manager assigns a unique tag to each authorized car. Tag number and vehicle information is stored in a database maintained by the building manager. Emergency situations (e.g. fire) will not be considered here. 1.6 Reference Material [1] J Magee and J Kramer, “Concurrency State Models and JAVA Programming,” John Wiley & Sons Ltd., 2nd Edition, 2006
  • 5. ENPM 643 – Fall ’06 Parking Lot Occupancy Tracking System 5 2 UML MODELS 2.1 Deployment Diagram The Parking Lot Occupancy Tracking system can be divided into sub-components as seen in the deployment diagram shown above. The Parking Lot Occupancy Tracking system consists of a parking gate interface, manager interface, parking lot controller system interface, parking sensor system interface, display interface and network interface. Parking Gate Interface This subsystem is triggered as soon as a commuter/car arrives near the parking gate. The scanner scans the tag. The unit controller in the interface checks the authorization of the commuter with the database of the system. If authorization confirmed the unit controller triggers the gate to open and let the commuter in the parking lot. If authorization fails, the gate is not opened.
  • 6. ENPM 643 – Fall ’06 Parking Lot Occupancy Tracking System 6 Manager Interface Manager interface system is an indirect component to the system. The owner/manager of the system plays the role of the manager interface. The system is automated and hence the only role of the manager during the running system is to start/stop, add/delete/edit details of commuters and generates report from the system database. The manager however has the privileges of changing the system configuration and display manually entered messages on the display board during maintenance or system troubleshooting. Parking Lot Controller Interface Parking lot controller interface consist of servers and a database that records all the events the system goes through the day. The controller receives and sends information to the unit controllers as well as displays the information on the main display board. Parking Sensor System Interface Parking sensor system interface consist of sensors, unit controllers, unit display boards and back- up battery for the system. This system is triggered when a car parks or leaves the parking lot. When a commuter parks the car in the parking lot, the sensor detects the action and sends information to the unit controller. The unit controller receives the information and triggers the unit display board to record the action and also send the information to the main controller interface to display the action on the main display board. Display Interface Display interface displays the status of the system. It has a unit controller, which records the information and displays the message through the display board. It also consists of a backup battery for the smooth running of the system. 2.2 Use Case Summary
  • 7. ENPM 643 – Fall ’06 Parking Lot Occupancy Tracking System 7 2.3 Car Arriving Use Case Narrative Use-Case Name: Car Arriving Primary Actor: Car/Driver Other Actors: None Description: This use case describes the event of the system tracking when a car arrives at the parking lot Assumptions: Parking Lot Open Precondition: Car must have a parking lot tag Initiation/Trigger: The use case is initiated when the car approaches the entrance gate Typical Course Of Events /Dialog: Actor Action System Response Step 1: Car approaches gate Step 2: The system detects the car tag and checks with may database for authorization. Step 3: The car is authorized and the system responds by opening the gate. Step 4: The car drives through the gate. Step 5: The system closes the gate once the car is through. Step 6: The car parks in an available space. Step 7: The system detects car. Step 8: The space status is updated within the system. Alternate Courses: Alt-Step 3: If the car access is not authorized, an error message is displayed to inform the outcome that the access has been denied Conclusion: This use case concludes when the parking space status is updated Post Condition: Parking space status is updated from vacant to occupied
  • 8. ENPM 643 – Fall ’06 Parking Lot Occupancy Tracking System 8 Activity Diagram
  • 9. ENPM 643 – Fall ’06 Parking Lot Occupancy Tracking System 9 Sequence Diagram
  • 10. ENPM 643 – Fall ’06 Parking Lot Occupancy Tracking System 10 2.4 Car Leaving Use Case Narrative Use-Case Name: Car Leaving Primary Actor: Car/Driver Other Actors: None Description: This use case describes the event of the system tracking when a car leaves the parking lot Assumptions: Parking Lot Open Precondition: Car is inside the parking lot Initiation/Trigger: The use case is initiated when the car approaches the exit gate Typical Course Of Events /Dialog: Actor Action System Response Step 1: Car approaches the exit gate Step 2: The system detects the car by the exit gate Step 3: The system sends a signal for the exit gate to open Step 4: The exit gate opens Step 5: The car leaves the parking lot premises Step 6: The exit gate closes Alternate Courses: N/A Conclusion: This use case concludes when the exit gate closes Post Condition: The car is no longer within the parking lot limits
  • 11. ENPM 643 – Fall ’06 Parking Lot Occupancy Tracking System 11 Activity& Sequence Diagrams
  • 12. ENPM 643 – Fall ’06 Parking Lot Occupancy Tracking System 12 2.5 Display Parking Space Availability Use Case Narrative Activity Diagram Use-Case Name: Display Parking Space Availability Primary Actor: Display Other Actors: None Description: This use case describes the event of the system updating the information displayed by the parking lot entrance Assumptions: Parking lot open and display on Precondition: None Initiation/Trigger: The use case is initiated when the parking lot opens Typical Course Of Events /Dialog: Actor Action System Response Step 1: The system initializes the display Step 2: Display acknowledges initialization Step 3: The system sends information to the display Step 4: Information is displayed Step 5: The system waits a preset amount of time and goes back to Step 3 Alternate Courses: Alt Step 5 If system disable the loop is terminated Conclusion: This use case concludes when the system is disabled Post Condition: The up-to-date information on available parking spaces is displayed
  • 13. ENPM 643 – Fall ’06 Parking Lot Occupancy Tracking System 13 2.6 System Privileges/Utilities Use Case Narrative Use-Case Name: System Privileges/Utilities Primary Actor: Manager/Owner Other Actors: None Description: This use case describes the possible system priveleges available to the parking lot owner. Assumptions: NA Precondition: Manager must have the access password to the system Initiation/Trigger: The manager enters the password to get access to the system. Typical Course Of Events /Dialog: Actor Action Step 1: Owner enters password to get access to the system. Step 2: Owner is authorized and has a choice of three options. (a/b/c) Step 3: The Owner selects the option. (a/b/c) Step 4.a: Owner selects system on/off. Step 4.b: Owner selects parking space to be altered, made available/unavailable Step 4.c: Owner enters message manually for the display board. Step 5.a: System turned on/off Step 5.b: Parking space is altered. Step 5.c: Only the entered message is displayed on the board. Alternate Courses: Alt-Step 2: Owner is not authorized and is unable to take any action on the system. Conclusion: This use case concluded when system turned on/off or space altered or message is displayed. Post Condition: System on/off or Space altered or Message displayed.
  • 14. ENPM 643 – Fall ’06 Parking Lot Occupancy Tracking System 14 Activity Diagram
  • 15. ENPM 643 – Fall ’06 Parking Lot Occupancy Tracking System 15 2.7 Update/New user database Use-Case Name: Update/New member table Primary Actor: Manager Other Actors: None Description: This use case describes the event of adding/removing/editing the access permission of a parking lot member. Assumptions: System on. Precondition: Manager authorized to access database. Initiation/Trigger: Manager enters details to be searched. Typical Course Of Events /Dialog: Actor Action Step 1: Manager gets access to the database. Step 2: Manager enters commuter details to search in the database. Step 3: Database shows the result in the form of commuter details present/absent. Step 4.a: Manager enters details for the new commuter in the database. Step 4.b: Manager selects the commuter details to delete/update. Step 5a: Database is updated by the new details entered. Step 5.b.1: The selected commuter gets deleted from the system database. Step 5.b.2: Manager selects details to be updated for the commuter. Step 6: Manager issues a new tag for the new commuter. Step 6.b.1The associated tag gets deactivated. Step 6.b.2: Details of the commuter gets updated in system database. Conclusion: This use case concluded when system database is updated in the form of new- edited or deleted details of the commuter. Post Condition: Database is updated by the action.
  • 16. ENPM 643 – Fall ’06 Parking Lot Occupancy Tracking System 16 Activity Diagram
  • 17. ENPM 643 – Fall ’06 Parking Lot Occupancy Tracking System 17 2.8 Generate Report Use-Case Name: Generate Report Primary Actor: Manager Other Actors: None Description: This use case describes the event of creating a report based on the information collected by the system. Assumptions: System on. Precondition: Manager authorized to access database. Initiation/Trigger: Manager enters details to be searched. Typical Course Of Events /Dialog: Actor Action Step 1: Manager gets access to the database. Step 2: Manager selects information to generate the report. Step 3.a: Manager selects information of commuter for report. Step 3.b: Manager selects system information for report. Step 4.a: Report generated on the basis of the information in the database. Step 4.b.1: Manager opts for maintenance report. Step 4.b.2: Manager opts for system performance report Step 6: Manager issues a new tag for the new commuter. Step 6.b.1: Maintenance report generated. Step 6.b.2: Performance report generated Conclusion: This use case concluded when system creates a report on the requested option by the manager. Post Condition: Report from the database is generated.
  • 18. ENPM 643 – Fall ’06 Parking Lot Occupancy Tracking System 18 Activity Diagram
  • 19. ENPM 643 – Fall ’06 Parking Lot Occupancy Tracking System 19 3 REQUIREMENTS/ GOALS & SCENARIOS . 3.1 Goals and Scenarios The use case describes all that can happen in the achievement of the system objective. Use Cases drive the requirements engineering phase of development. The various Goals and Scenarios critical to the system are depicted below ‘ Goal 1: Operators must be able to edit and send messages to Display Boards Scenario 1.1: Operator will send messages from the system to the display board. Scenario 1.2: Operator wants to compose a new message that is not available in the list. Goal 2: There must be an on/off button at the control center Scenario 2.1: Emergency shut down required for maintenance. Scenario 2.2: Control center to be evacuated in case of fire etc Goal 3: Operators must be able to stop displaying current message on Display Boards. Scenario 3.1: A higher priority message or warning could be waiting to be displayed. Scenario 3.2: Displayed signs would no longer be valid. Goal 4: The Display Board must be “all weather proof” Scenario 4.1: Display board will be installed in outdoors as well as indoors. Scenario 4.2: Display board will be installed in far south as well as far north Scenario 4.3: There is likelihood of snow, rain; heavy winds etc (should be sturdy enough to withstand adverse conditions) Goal 5: There must be an indicator showing the status of the active Display Board Scenario 5.1: System sends a message to the display board but the display board was disconnected.
  • 20. ENPM 643 – Fall ’06 Parking Lot Occupancy Tracking System 20 Scenario 5.2: Display board out of service for maintenance. Scenario 5.3: Network or hardware failure on remote site. Goal 6: The system must store all information about every activity performed at each workstation. Scenario 6.1: Administrator wants to check the logs for specific information. Scenario 6.2: Periodic reports to be generated to check system performance. Goal 7: The system must be secure Scenario 7.1: Unauthorized person tries to login. Scenario 7.2: Operator tries to change system settings, which he is not authorized to. Goal 8: The display board/sensor system must have backup power Scenario 8.1: Power failure occurs. Scenario 8.2: Power cable is broken due to accident. Goal 9: The sensor must be capable of detecting any vehicle Scenario 9.1: Vehicle might be small in dimensions. Scenario 9.2: Vehicle might be parked wrong. Goal 12: The system must be capable of reporting any system failure to the manager. Scenario 12.1: The system is not displaying information. Scenario 12.2: The sensor is unable to recognize vehicles parked.
  • 21. ENPM 643 – Fall ’06 Parking Lot Occupancy Tracking System 21 3.2 Requirements: 1. The system must contain a database. 1.1. The database should contain all the information about the commuters. 1.2 The database must allow retrieval and addition of information. 2. The system must allow only the authorized users to enter the parking lot. 2.1 The entrance gate control unit should open after the authorization of the commuter. 2.2 The entrance sensor should verify the authorization through the database. 3. The system must display parking space availability. 3.1 The system should display the number of occupied spaces. 3.2 The system should display the number of vacant spaces. 3.3 The system should display messages from the manager during special instances. 3.4 The message should take less than 10 seconds from the control center to the display boards. 3.5 The system should display message on the display board for 3 minutes unless and until stated otherwise. 4. The system must receive a confirmation message for every message sent on the display screen. 5. The system must have three parking spaces available. 5.1 The system should have open parking spaces. 5.2 The system should have handicap parking spaces. 5.3 The system should security/service parking spaces. 6. The system should have individual display boards for all parking spaces. 6.1 The display boards must display green light for available spaces.
  • 22. ENPM 643 – Fall ’06 Parking Lot Occupancy Tracking System 22 6.2 The display boards must display red light for unavailable spaces. 6.2 The display boards must display blue light for handicap parking spaces. 7. The system must receive and send information to and from the unit controllers. 7.1 The unit controller must receive information from sensors. 7.2 The unit controller must display information on individual display boards. 7.3 The unit controller must send information to control system. 8. The system should have an indicator to indicate the status of display boards. 8.1 The system must have red color indicator for inactive display, green color indicator as active display board, and orange color to indicate a hardware failure of the display board. 8.2 Every display board must send feedback to the control center every 5 seconds to display it as alive. 9. The system should recognize the parked vehicle. 9.1 The system sensor must recognize the parked vehicle irrespective of its size. 9.2 The system sensor must recognize and report wrongly parked vehicle. 10. The system should allow for redefining the parking spaces. 10.1 The system must allow altering the parking spaces in case of maintenance. 11. The system should allow the user to take over during troubleshooting 11.1 The system must allow user to take over during system/sub-system failure. 11.2 The system must allow user to create/edit messages on main display board. 11.3 The system must allow user control while maintenance process. 12. The control center shall have a single button to turn off the system. 12.1 The button shall be a physical button present on the computer of the operator.
  • 23. ENPM 643 – Fall ’06 Parking Lot Occupancy Tracking System 23 12.2 The button shall have an LED on its side indicating the status of the system. 12.3 The button shall have a clearly marked sign of system shut down. 13. The control center shall have security. 13.1 The control center shall have role based security system. 13.2 Role in the control center shall include supervisor, maintenance and operator. 13.3 The system shall have a counter for number of attempts. 3.3 Requirements Mapping: SUBCOMPONENTS: 1. Parking Gate 2. Parking Space 3. Manager Interface 4. Display 5. Controller UML DIAGRAMS 1. 2.3- Car Arriving 2. 2.4- Car Leaving 3. 2.5- Display Parking Space Availability 4. 2.6- System Privileges/Utilities 5. 2.7- Update/New user database 6. 2.8- Generate Report
  • 24. ENPM 643 – Fall ’06 Parking Lot Occupancy Tracking System 24 RREEQQUUIIRREEMMEENNTTSS AASSSSOOCCIIAATTEEDD CCOOMMPPOONNEENNTT UUMMLL DDIIAAGGRRAAMMSS REQ 1.0 Controller, Parking gate, 2.3, 2.7, 2.8 REQ 2.0 Controller, Parking gate 2.3, 2.7 REQ 3.0 Manager interface, Display 2.6 REQ 4.0 Controller, Display 2.5 REQ 5.0 Display, Parking space 2.3, 2.5,2.6 REQ 6.0 Parking space 2.3, 2.4 REQ 7.0 Controller, Parking space, Display 2.3, 2.5 REQ 8.0 Controller 2.3 REQ 9.0 Parking space 2.3, 2.5 REQ 10.0 Manager interface, Parking space 2.6 REQ 11.0 Manager interface, Display 2.6 REQ 12.0 Manager interface, Controller 2.6 REQ 13.0 Manager interface 2.6
  • 25. ENPM 643 – Fall ’06 Parking Lot Occupancy Tracking System 25 4 DESIGN ANALYSIS & VALIDATION The UML models are very helpful at hashing out all the different subcomponents of the system and their interaction. However, when creating the UML diagrams, the system designer may inadvertently create states that are never reached or legal transitions that if taken would put the system in a deadlock. These design mistakes are not usually identified and corrected until the software is being implemented or out on the field making the mistakes hard and costly to fix. With that situation in mind, we decided to implement the design flow shown in Figure 2 - Verification & Validation Flow. First the UML was created as described in section 2. Based on the UML sequence diagram an LTSA model is created to check for potential deadlock or unreachable states. Once the parking lot controller design is complete, it was then implemented using Java to further verify its coherence and to validate the interaction with the external actors (e.g. car/driver). The car arriving sequence diagram (Figure 3 - Car Arriving Sequence Diagram) was created using the Argo shareware. Using that as a starting point and making use of LTSA-MSC plug-in, we came up with the high level sequence of messages (Figure 4 - hSMC View) and the subcomponents interaction (Figure 5 - Trace View). Figure 3 - Car Arriving Sequence Diagram UML LTSA Java Figure 2 - Verification & Validation Flow
  • 26. ENPM 643 – Fall ’06 Parking Lot Occupancy Tracking System 26 With the views above generated, the LTSA tool was able to create a textual notation of the system also known as FSP or Finite State Process. Once the FSP is created, we were able to check our model for safety and progress. The safety check looks for states with no outgoing transitions, which are potential deadlocks in the system. The progress check, also called liveness, this check verifies that whatever state a system is in, it is always the case that a specified action will eventually be executed. Both checks passed for our design. The resulting FSP model for subcomponents as well as the architecture is shown below. Figure 4 - hSMC View Figure 5 - Trace View Figure 6 - Parking Space Sensor Model Figure 7 - Car Model
  • 27. ENPM 643 – Fall ’06 Parking Lot Occupancy Tracking System 27 The architecture model above was used to animate and check the behavior of the overall system. Figure 10 - Animation of Parking Lot Controller shows a captured image of the LTSA tool animator window. The list on the right presents all possible transitions. However, the green check mark indicates the valid transitions from the state the system is in. That way the model can be traversed from state to state to make sure the model behaves as expected. The animator was used to test a group of scenarios against the model and the outcome was verified. Figure 8 - Gate Model Figure 9 - System Behavior Model Figure 10 - Animation of Parking Lot Controller
  • 28. ENPM 643 – Fall ’06 Parking Lot Occupancy Tracking System 28 The last step in our flow was to validate the interaction between the parking lot controller and the actors external to the system. To do that, a Java applet was created where classes were created to emulate each actor and the parking lot controller was implemented in a class of itself. The screenshot, Figure 11 - Parking Lot Java Applet, is of the resulting applet. Figure 11 - Parking Lot Java Applet
  • 29. ENPM 643 – Fall ’06 Parking Lot Occupancy Tracking System 29 5 CONCLUSION For this project, the goal was to take the idea of an occupancy aware parking lot through the design process as far as possible given the time and resources. At first the system details were hashed out through the use of use case scenarios. These scenarios were then further refined and modeled using UML diagrams. These first steps are widely applied during the design process of systems. For this project however, we decided to validate the UML models using a well defined and repeatable process rather than the usual model review meetings with team members approach. The method used was based on composing joint sets of transition state machines using the FSP language and then check for unexpected behavior using a set of tools. Due to time constraints, we decided to go through the validation and verification flow with the Car Arriving use case only. The exercise was successful and we were able to actually implement part of the system at a higher level, using Java, to simulate its behavior. The available tools out there, such as LTSA, are very helpful at discovering hidden potential paths within the models and verifying that they work as intended. However, it is best suited for small size systems at the present moment and need to be further developed before mainstream adoption is possible. One important feature would be the support for creating a library of low level models that could be reused over and over as building blocks for creating models of larger systems.