For this homework assignment, you will write a simplified model of a bouncing ball using numpy. Assume the ball is dropped on Venus under constant acceleration g = 8.87 from the limit of its atmosphere, a height of 250km. Model the ball's motion for one hour and 15 minutes (include second 0 and second 4, 500 in your data points). After the initial state, simulate 5,000 updates to the state (for a total of 5, 001 points.) Your simulation should use float64 numpy arrays for time (t) and height (y). Time should be represented in seconds and height should be represented in meters. Bouncing To simulate bouncing, we'll make some simplifying assumptions (since collision detection can be complicated). If the ball's height is ever less than or equal to 0, we will assume that the ball hit the ground before the time step we are simulating and already started bouncing. You should: • instantly set its height to • update its velocity to 90% (0.9) of its velocity and reverse the direction of travel-in this case, please use the now-current velocity, i.e., vc[i] = -0.9 * vc[i] Count the number of times the ball bounces in an integer variable named bounces. Plotting y v. t may be useful for you to understand what results your code is producing. DO NOT try to write your code here. Debugging it via RELATE will be very difficult. You should write and test your code on your own computer. Write a program to calculate the problem as specified above. Your submission should include arrays t and y of the proper dimensions and values, and an int named bounces. Your code snippet should define the following variables: Name t y bounces Type np array np array int Description time array y positions number of bounces

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
icon
Related questions
Question

last attempt. will give like if correct. please help

For this homework assignment, you will write a simplified model of a bouncing ball using numpy. Assume the
ball is dropped on Venus under constant acceleration g = 8.87 from the limit of its atmosphere, a height
of 250km. Model the ball's motion for one hour and 15 minutes (include second 0 and second 4, 500 in your
data points). After the initial state, simulate 5,000 updates to the state (for a total of 5, 001 points.) Your
simulation should use float64 numpy arrays for time (t) and height (y). Time should be represented in
seconds and height should be represented in meters.
Bouncing
To simulate bouncing, we'll make some simplifying assumptions (since collision detection can be
complicated). If the ball's height is ever less than or equal to 0, we will assume that the ball hit the ground
before the time step we are simulating and already started bouncing. You should:
• instantly set its height to
• update its velocity to 90% (0.9) of its velocity and reverse the direction of travel in this case, please
use the now-current velocity, i.e., vc[i] = -0.9 * vc[i]
Count the number of times the ball bounces in an integer variable named bounces.
Plotting y v. t may be useful for you to understand what results your code is producing.
DO NOT try to write your code here. Debugging it via RELATE will be very difficult. You should write
and test your code on your own computer.
Write a program to calculate the problem as specified above.
Your submission should include arrays t and y of the proper dimensions and values, and an int
named bounces.
Your code snippet should define the following variables:
Name
t
y
bounces
Type
np array
np array
int
Description
time array
y positions
number of bounces
Transcribed Image Text:For this homework assignment, you will write a simplified model of a bouncing ball using numpy. Assume the ball is dropped on Venus under constant acceleration g = 8.87 from the limit of its atmosphere, a height of 250km. Model the ball's motion for one hour and 15 minutes (include second 0 and second 4, 500 in your data points). After the initial state, simulate 5,000 updates to the state (for a total of 5, 001 points.) Your simulation should use float64 numpy arrays for time (t) and height (y). Time should be represented in seconds and height should be represented in meters. Bouncing To simulate bouncing, we'll make some simplifying assumptions (since collision detection can be complicated). If the ball's height is ever less than or equal to 0, we will assume that the ball hit the ground before the time step we are simulating and already started bouncing. You should: • instantly set its height to • update its velocity to 90% (0.9) of its velocity and reverse the direction of travel in this case, please use the now-current velocity, i.e., vc[i] = -0.9 * vc[i] Count the number of times the ball bounces in an integer variable named bounces. Plotting y v. t may be useful for you to understand what results your code is producing. DO NOT try to write your code here. Debugging it via RELATE will be very difficult. You should write and test your code on your own computer. Write a program to calculate the problem as specified above. Your submission should include arrays t and y of the proper dimensions and values, and an int named bounces. Your code snippet should define the following variables: Name t y bounces Type np array np array int Description time array y positions number of bounces
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 3 images

Blurred answer
Knowledge Booster
Polynomial time
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.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
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)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education