Task 2 - Flying.java The two forces acting on an aircraft in flight are lift (acting upwards) and weight (acting downwards). If the lift of the aircraft equals the weight of the aircraft, then the aircraft neither goes up nor down, it is in level flight. If the lift is greater than the weight, then the aircraft climbs (gains altitude). If the weight is greater than the lift, then the aircraft descends (loses altitude) Write a Java program named Flying that calculates whether an aircraft is flying level, climbing or descending. The basic equation to calculate this lift is known as the Flight Equation. The Flight Equation is: L = 1/2*p* v? * s *cl where L = lift (in Newtons), this must equal the weight of the aircraft for the aircraft to fly. To convert kilograms to Newtons multiply kilograms by 9.8 p = density of the air, in kg / m3 This value is a maximum of 1.2 at sea level and decreases as altitude (height) increases v = current speed, in metres / second of the aircraft. s = surface area of the wings, in m2 cl = lift co-efficient, a constant value (with no units) that describes how effective the aircraft wing is at generating lift. Your program will prompt (ask) the user to enter all the details for an aircraft, in the order as shown in the examples below, then, using the Flight Equation above, calculate a value for the lift figure. The lift figure must be converted to kilograms, or the weight figure converted to Newtons, either way, so long as they are in the same unit. The weight and the lift are compared. If the weight is the same as the lift + 250, then the aircraft is flying straight and level. If the weight is greater than lift + 250, then the aircraft is descending (losing altitude) and if the weight is less than lift - 250, then the aircraft is climbing (gaining altitude)
Task 2 - Flying.java The two forces acting on an aircraft in flight are lift (acting upwards) and weight (acting downwards). If the lift of the aircraft equals the weight of the aircraft, then the aircraft neither goes up nor down, it is in level flight. If the lift is greater than the weight, then the aircraft climbs (gains altitude). If the weight is greater than the lift, then the aircraft descends (loses altitude) Write a Java program named Flying that calculates whether an aircraft is flying level, climbing or descending. The basic equation to calculate this lift is known as the Flight Equation. The Flight Equation is: L = 1/2*p* v? * s *cl where L = lift (in Newtons), this must equal the weight of the aircraft for the aircraft to fly. To convert kilograms to Newtons multiply kilograms by 9.8 p = density of the air, in kg / m3 This value is a maximum of 1.2 at sea level and decreases as altitude (height) increases v = current speed, in metres / second of the aircraft. s = surface area of the wings, in m2 cl = lift co-efficient, a constant value (with no units) that describes how effective the aircraft wing is at generating lift. Your program will prompt (ask) the user to enter all the details for an aircraft, in the order as shown in the examples below, then, using the Flight Equation above, calculate a value for the lift figure. The lift figure must be converted to kilograms, or the weight figure converted to Newtons, either way, so long as they are in the same unit. The weight and the lift are compared. If the weight is the same as the lift + 250, then the aircraft is flying straight and level. If the weight is greater than lift + 250, then the aircraft is descending (losing altitude) and if the weight is less than lift - 250, then the aircraft is climbing (gaining altitude)
Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
Related questions
Concept explainers
Max Function
Statistical function is of many categories. One of them is a MAX function. The MAX function returns the largest value from the list of arguments passed to it. MAX function always ignores the empty cells when performing the calculation.
Power Function
A power function is a type of single-term function. Its definition states that it is a variable containing a base value raised to a constant value acting as an exponent. This variable may also have a coefficient. For instance, the area of a circle can be given as:
Question
I want the full output in a picture 3 examples
Expert Solution
This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
Step by step
Solved in 4 steps with 4 images
Knowledge Booster
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.Recommended textbooks for you
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education