|
| 1 | +# Gravity Simulation |
| 2 | + |
| 3 | +import math |
| 4 | +import numpy as np |
| 5 | + |
| 6 | +# Welcome |
| 7 | + |
| 8 | +print("Welcome to a 1D Free Fall Simulation. Please enter only in metric integers. ") |
| 9 | +print("You will enter the amount of time you want to simulate, it includes information about impact, \n" |
| 10 | + "even if the simulation stops before impact.") |
| 11 | + |
| 12 | +# Constants |
| 13 | + |
| 14 | +g = 9.81 |
| 15 | + |
| 16 | +# Variables |
| 17 | + |
| 18 | +height = int(input("Drop Height: ")) |
| 19 | +timeElapsed = 1 |
| 20 | +runTime = int(input("How long do you want to record data from the fall? ")) |
| 21 | +location = 0 |
| 22 | +mass = int((input("Mass: "))) |
| 23 | +timeToImpact = 0 |
| 24 | + |
| 25 | +# Simulation |
| 26 | + |
| 27 | +print("Second by second info of free fall in given time.") |
| 28 | +while timeElapsed <= runTime and timeToImpact >= 0 and location >= 0: |
| 29 | + |
| 30 | + # Equations |
| 31 | + |
| 32 | + distanceTraveled = (g * timeElapsed ** 2) / 2 |
| 33 | + velocity = distanceTraveled / timeElapsed |
| 34 | + location = height - distanceTraveled |
| 35 | + momentum = mass * velocity |
| 36 | + timeToImpact = math.sqrt((2 * height) / g) |
| 37 | + |
| 38 | + # Print Stats |
| 39 | + |
| 40 | + print("\nTime to simulation end: " + str(runTime - timeElapsed)) |
| 41 | + print('Y Location: ' + str(location) + 'M') |
| 42 | + print('Velocity: ' + str(velocity) + 'M/S') |
| 43 | + print('Distance Traveled: ' + str(distanceTraveled) + 'M') |
| 44 | + print('Momentum: ' + str(momentum) + 'N') |
| 45 | + print('Time Elapsed: ' + str(timeElapsed)) |
| 46 | + print('Rough time to impact: ' + str(timeToImpact - timeElapsed)) |
| 47 | + print() |
| 48 | + |
| 49 | + # Add to time elapsed |
| 50 | + |
| 51 | + timeElapsed = timeElapsed + 1 |
| 52 | + |
| 53 | +# Print impact results |
| 54 | + |
| 55 | +print("\n The Simulation is done. \n") |
| 56 | +print("*This is printed even if the object fell past the ground, or never hit it.* \n Info on impact: ") |
| 57 | +print('Y Location: 0M') |
| 58 | +print('Velocity: ' + str(height / runTime) + 'M/S') |
| 59 | +print('Distance Traveled: ' + str(height) + 'M') |
| 60 | +print('Momentum: ' + str(mass * (height / runTime)) + 'N') |
| 61 | +print('Time Spent in free fall: ' + str(timeToImpact)) |
| 62 | +print() |
0 commit comments