Write a program for simulating jet-powered car acceleration, C/C++ Programming

Assignment Help:

The absolute land-speed record of 763.035 MPH (Mach 1.02) was set in October 15 1997 by a jet-powered car called Thrust SSC in the Black Rock Desert of northern Nevada. The team that developed Thrust SSC is developing a new vehicle, Bloodhound SSC that is designed to achieve a top speed of 1050 MPH (Mach 1.4). This vehicle has a design weight of 14,200 lbs and a total installed thrust (both jet and rocket engines) of 47,600 lbs. The world record speed run must take place over a measured mile course. The course is run in both directions and the speed achieved is averaged over both runs. The speed measurement is taken only over the one-mile course. Obviously, the vehicle must accelerate to the target speed before reaching the one-mile course. Determining how much time and distance the vehicle needs to accelerate to the target speed is critical. Starting too close to the beginning of the course would result in the vehicle going too slow through the course. Starting too far from the course subjects the vehicle to extra stress by forcing it to maintain top speed for a longer period of time. 1) Write a C program to simulate the acceleration of the Bloodhound SSC car. The program should ask for the weight of the vehicle and the thrust of the vehicle. The output of the program should be the time for the vehicle to accelerate to the target speed of 1050 MPH and the distance covered while accelerating, in both feet and miles. Your program should use Euler's method to numerically solve the differential equations describing the motion of an accelerating object. In Euler's method, the state of the object at some small future time is calculated using the values at the present time. This small future time step is typically called delta time, or dt. Thus the position (p) and speed (v) of the object in the next time step t + dt is written as a simple function of the position and speed at the current time step t (a is the acceleration due to thrust):

V (t+dt) = v(t) + a * dt

P (t+dt) = p(t) + v(t+dt) * dt

You should start out with the velocity and position as zero and integrate until the velocity becomes equal to or greater than 1050 MPH.  

There are a number of factors that determine the acceleration of the vehicle, but for this simulation, we will use a simplified version of Newton's Second Law of motion, F=ma (or a=F/m):

 

684_Write a Program for Simulating Jet-Powered Car Acceleration.png

The constant DRAG_FACTOR is an empirical value that accounts for the effects of friction and air drag on the acceleration of the vehicle. For this program, you should use a value of 3.2 for DRAG_FACTOR.  

An execution of your program should look like this:  

C:\Temp\egre245\hw_solutions>hw4

Program to calculate the time and distance covered by a jet-powered land-speed record car given its weight and total thrust  

Enter vehicle weight in pounds?14200

Enter vehicle thrust in pounds?47600

Acceleration = 33.7306 ft/sec^2  

Time and distance to accelerate to 1050.00 MPH

Acceleration time = 45.656 seconds

Acceleration distance = 35156 feet

Acceleration distance = 6.66 miles  

C:\Temp\egre245\hw_solutions>  

Clearly, the value of the time step that you use in the simulation will be important. If the time step (dt) is to large, then the results will not be accurate. However, if the time step is too small, then the program run time will be excessive. For this assignment, you must determine the value of delta time that is as large as possible but at the same time, results in a final velocity that is accurate to 6 significant figures -  i.e., further decreases in  the time step no longer change the  final value past 1050.00 MPH. Turn in your program configured with this value of dt.  

2) Once your program is working correctly, use it to find the value of installed thrust that the  vehicle must have in order to accelerate to the target speed within a maximum distance of 5 miles - i.e., Acceleration distance is just less than 5.00.  

Remember the class policy on late submissions - no late submissions are allowed unless prior arrangement is made with the instructor. 

For this assignment, turn in the C source code file for your program by attaching it to the assignment submission page. Write the value of installed thrust that you found for part 2 in the submission window of the assignment page. Failure to include that value in your submission will result in a 2-point deduction.


Related Discussions:- Write a program for simulating jet-powered car acceleration

Strings, write a c program to find input string using strlen(), strcpy(), s...

write a c program to find input string using strlen(), strcpy(), strcat(),strncat(), strcmp().

What happens if you write following code?, What happens if you write follow...

What happens if you write following code? string& foo()

Assignment, Design a black box suit for function whether a character or st...

Design a black box suit for function whether a character or string up to 25 characters

Cross platform clinet app for a vpn, Cross Platform Clinet app for a vpn ...

Cross Platform Clinet app for a vpn Project Description: We want a cross platform client app for VPN. The app must have the subsequent options below: 1. Must be an open

Explain the ways of initializing the arrays, Various ways of initializing t...

Various ways of initializing the Arrays. - The for loop initializes 10 elements with the value of their index.      void main()     {                 const in

Define the object-oriented terms, Question : (a) Define the following O...

Question : (a) Define the following Object-Oriented terms: (i) Encapsulation (ii) Inheritance (iii) Abstraction (iv) Polymorphism. (b) What are objects in Lingo progra

C++, superposition of two waves

superposition of two waves

Write Your Message!

Captcha
Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd