Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

c++ Write two local classes named Pipe and Ellipsoid Container as described below. Then, write a main function that reads the flowSpeed and area of

c++ image text in transcribed
image text in transcribed
Write two local classes named Pipe and Ellipsoid Container as described below. Then, write a main function that reads the flowSpeed and area of a pipe object (p) both as double values. main will also read the axisA, the axisB, and the axis of a Ellipsoid Container object (wing Tank) all as double values. Finally, the inputPipe of wing Tank will be the p Pipe object. Finally, the program should calculate the time it takes the wing Tank to be completely filled with gas and prints it to the screen as a double value. Pipe Class A private double field named "flowSpeed" representing the flow speed of the pipe. A private double field named "area" representing the cross-section area (.e., kesit alan) of the pipe. A constructor that gets two double values and initializes the object. An empty constructor. A public function named calculateFlow Rate that does not get any parameter, multiplies the flowSpeed and area of the pipe, and returns it as a double value. EllipsoidContainerClass A private double field named "axisA" representing the A axis length of the ellipsoid. A private double field named "axisB" representing the Baxis length of the ellipsoid. A private double field named "axisC" representing the Caxis length of the ellipsoid. A private Pipe field named "inputPipe" representing the pipe that provides water to this EllipsoidContainer A constructor that gets three double values, a Pipe value, and initializes the object. A public function named calculateVolume that does not get any parameter, calculates the volume of the pool using the ellipsoid volume formula given below and returns it as a double value: 1024 Biti 2 B DE Maks A constructor that gets three double values, a Pipe value, and initializes the object. A public function named calculateVolume that does not get any parameter, calculates the volume of the pool using the ellipsoid volume formula given below and returns it as a double value: Volume = (4/3)*Pl*axisA * axisB* axisA A public function named calculate Time To Fill that does not get any parameter, calculates the time it takes for the Ellipsoid Container to be filled with gas from the pipe by dividing the volume of the EllipsoidContainer by the flow rate of the pipe and returns it as a double value. The main function will. Instantiate one pipe object called p and instantiate an EllipsoidContainer object called wing Tank as explained above. 2. Use the calculateTime To Fill method of the EllipsoidContainer class to print out the time it takes to fill the Ellipsoid Container and print it out. NOTE: NowSpeed and area will always be given as positive values. NOTE: All the functions MUST only do the tasks described above, nothing else. NOTE: Both classes MUST be written as described. NOTE: To calculate Pl, you MUST use the M_PI constant from the cmath library. 1536128 928710 351512 Input Output 53.6165 130,318 16.7552

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Objects And Databases International Symposium Sophia Antipolis France June 13 2000 Revised Papers Lncs 1944

Authors: Klaus R. Dittrich ,Giovanna Guerrini ,Isabella Merlo ,Marta Oliva ,M. Elena Rodriguez

2001st Edition

3540416641, 978-3540416647

More Books

Students also viewed these Databases questions

Question

What is the growth rate of GDP per capita?

Answered: 1 week ago