All about flooble | fun stuff | Get a free chatterbox | Free JavaScript | Avatars    
perplexus dot info

Home > Science
Rise of an object-Physics (Posted on 2003-04-01) Difficulty: 3 of 5
If a 7kg object is thrown straight upwards at a speed of 10m/s(meters per second)

To what height will it rise? note: gravitational constant = -9.8m/s

See The Solution Submitted by Lucifer    
Rating: 3.2308 (13 votes)

Comments: ( Back to comment list | You must be logged in to post comments.)
re: In vacuum or in air... | Comment 3 of 16 |
(In reply to In vacuum or in air... by Charlie)

The numerical integration:
DEFDBL A-Z ' this version is for the larger object
CLS
pi = ATN(1) * 4
A = 1
V = 10
m = 7
p = 0
dt = .0001
DO
  acc1 = -9.8
  acc2 = -1.24 * A * V * ABS(V) / m
  acc = acc1 + acc2
  p = p + dt * (V + V + dt * acc) / 2
  IF p > pMax THEN pMax = p
  V = V + dt * acc
  t = tPrev + dt
  IF INT(t * 10) > INT(tPrev * 10) THEN
   PRINT USING "##.## ##.###"; t; p
  END IF
  IF p < pMax AND fl = 0 THEN
   PRINT USING "##.## ##.###"; tPrev; pMax
   fl = 1
  END IF
  tPrev = t
LOOP UNTIL p <= 0
PRINT USING "##.## ##.###"; t; p

For the bowling ball, we set
A= pi * (1 / 10) ^ 2 due to its size
and
acc2 = -.62*A*V*ABS(V)/m due to its spherical nature.
  Posted by Charlie on 2003-04-01 09:20:25

Please log in:
Login:
Password:
Remember me:
Sign up! | Forgot password


Search:
Search body:
Forums (1)
Newest Problems
Random Problem
FAQ | About This Site
Site Statistics
New Comments (16)
Unsolved Problems
Top Rated Problems
This month's top
Most Commented On

Chatterbox:
Copyright © 2002 - 2024 by Animus Pactum Consulting. All rights reserved. Privacy Information