Flight management system , CS ,Class 12
Flight management system , CS ,Class 12
NAME:
ROLL NO:
CERTIFICATE
SOFTWARE REQUIREMENT
*MySQL
* Python IDLE
*Pip matplotlib
*Pip python
FLIGHT
The following are the main advantages:
Minimum Cost:
Strategic Importance:...
FLIGHT MANAGEMENT
SYSTEM(FMS)
A flight management system (FMS) is a
fundamental component of a modern airliner's
avionics, An FMS is a specialized computer
system that automates a wide variety of
in-flight tasks, reducing the workload on the
flight crew to the point that modem civilian
aircraft no longer carry fight or A primary
function is in-flight management of the flight
plan. Using various sensors (such as and I
often backed up by radio navgation) to
determine the aircraft's position, the FMS can
guide the aircraft along the flight plan. From
the cockpit, the FMS is normally controlled
through a Control Diuplary Unit (CDU) which
incorporates a small screen and keyboard or
touchscreen. The FMS sends the flight plan for
display to the Electronic Flight Instrumiini Se
(EFIS), Navigation Display (ND), or
Multifunction Display (MFD) The FMS can be
summarised as being a dual system consisting
of the Flight Management Computer (FMC),
CDU and a cross talk bus
2. Reduced paperwork.
obj.commit()
else:
print(" **************** PLEASE ENTER A VALID OPTION
**************************** ")
food()
obj.commit()
#TO UPDATE THE INFORMATION OF FOOD
DETAILS
def food():
print("what do you want to do?")
print("1. add new items")
print("2. update price")
print("3. delete items")
x=int(input("enter your choice: "))
if x==1:
fname=input("enter food name: ")
fprice=int(input("enter food price: "))
mycursor.execute("insert into food_items
values({},'{}',{}".format('null',fname,fprice))
elif x==2:
fid=int(input("enter food id: "))
fprice=int(input("enter new price: "))
mycursor.execute("update food_items set price={}
where food_id={}".format(fid,fprice))
elif x==3:
fid=int(input("enter food id: "))
mycursor.execute("delete from food_items where
where food_id={}".format(fid))
else:
print(" **************** PLEASE ENTER A
VALID OPTION **************************** ")
food()
obj.commit()
#ADMIN INTERFACES AFTER VERIFYING
PASSWORD
#ADMIN INTERFACE
#TO SEE THE AVAILABLE FLIGHTS
#USER INTERFACE
#MAIN INTERFACE
#MY SQL TABLES:
*TABLES IN DATABASE AIRLINES:
#CONTRIBUTORS:
*SHREYA PANDEY(21675388): CODE FOR
CREATING DATABASE AND TABLE AND
ENTER DETAILS OF LUGGAGE
*HIMANSHU SHISHODIA(21675381): CODE
FOR UPDATING INFORMATION OF FOOD AND
CLASS TYPE AND ADMIN INTERFACE
*VISHU CHOUDHARY(21675391) : CODE TO
SEE AVAILABLE FLIGHTS AND USER-MAIN
INTERFACE
*TANISHQ TATLE(21675435) :
CODE TO SEE RECORDS OF CUSTOMER AND
BOOK TICKETS
*HARDIK KUMAR(21675436) :SQL TABLE
DESIGN
INDEX
CONTENTS PAGE NO.
DECLARATION
CERTIFICATE
ACKNOWLEDGEMENT
PREFACE
NEED OF FMS
CODING
MY SQL TABLES