Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
So I was in the shower today...
In other news, I made an approximation of the gravity using my formulas and the result shows gravity first increasing and then sharply decreasing as the point of measurement reaches a depth at the center of the earth.

Code:
defint A-Z
screen 9
DIM C as double, F1 as double, F2 as double, intF1 as double, intF2 as double, F as double
DIM bigR as double, r as double, x as double
dim g as double, pi as double


G = 6.67300 * 10^-11 'm^3 kg^-1 s^-2
pi = 3.14159265
r = 63.78 'hundreds of kilometers
m1 = 5.98 * 10^24 'kg
C = G*pi*r*m1
'C = 10: r = 1000

for n = 0 to r

F1 = 0: for x = 0 to n
bigR = (r^2 - x^2)^.5
if bigR <> 0 then
intF1 = 0
for b = 0 to bigR
if n^2+b^2 <> 0 then
intF1 = intF1 + b/(n^2+b^2)
end if
F1 = F1 + intF1
next b
end if
next x

F2 = 0: for x = 0 to 2*r-n
bigR = (r^2 - x^2)^.5
if bigR <> 0 then
intF2 = 0
for b = 0 to bigR
if (2*r-n)^2+b^2 <> 0 then
intF2 = intF2 + b/((2*r-n)^2+b^2)
end if
F2 = F2 + intF2
next b
end if
next x
F = F1 - F2

if n > 1 then
'print F2;F;F1
'line ((n-1)*2+50, 300-log(abs(lastF))*10)-(n*2+50, 300-log(abs(F))*10), 15
line ((n-1)*2+50, 300-abs(lastF)/5)-(n*2+50, 300-abs(F)/5), 1
line ((n-1)*2+50, 300-abs(lastF1)/5)-(n*2+50, 300-abs(F1)/5), 2
line ((n-1)*2+50, 300-abs(lastF2)/5)-(n*2+50, 300-abs(F2)/5), 4
line ((n-1)*2+50, 300)-(n*2+50, 300), 15
end if
lastF2 = F2
lastF1 = F1
lastF = F
next n
'print abs(F)

sleep
system
Peace cannot be obtained without war. Why? If there is already peace, it is unnecessary for war. If there is no peace, there is already war."

Visit www.neobasic.net to see rubbish in all its finest.
Reply


Messages In This Thread
So I was in the shower today... - by Agamemnus - 06-05-2006, 05:25 AM
So I was in the shower today... - by Mr Match - 06-05-2006, 05:47 AM
So I was in the shower today... - by thegrogen - 06-05-2006, 06:10 AM
So I was in the shower today... - by aetherfox - 06-05-2006, 08:32 AM
So I was in the shower today... - by Rattrapmax6 - 06-05-2006, 07:27 PM
So I was in the shower today... - by aetherfox - 06-05-2006, 09:28 PM
So I was in the shower today... - by aetherfox - 06-06-2006, 12:22 AM
So I was in the shower today... - by Agamemnus - 06-06-2006, 12:33 AM
So I was in the shower today... - by Zack - 06-06-2006, 12:34 AM
So I was in the shower today... - by Agamemnus - 06-06-2006, 12:46 AM
So I was in the shower today... - by aetherfox - 06-06-2006, 12:53 AM
So I was in the shower today... - by Agamemnus - 06-06-2006, 01:27 AM
So I was in the shower today... - by Zack - 06-06-2006, 06:25 AM
So I was in the shower today... - by Agamemnus - 06-06-2006, 07:14 AM
So I was in the shower today... - by Mr Match - 06-06-2006, 07:41 AM
So I was in the shower today... - by Agamemnus - 06-06-2006, 10:26 AM
So I was in the shower today... - by anarky - 06-06-2006, 11:43 AM
Re: So I was in the shower today... - by SJ Zero - 06-06-2006, 05:08 PM
So I was in the shower today... - by Rattrapmax6 - 06-06-2006, 05:21 PM
So I was in the shower today... - by aetherfox - 06-06-2006, 05:48 PM
So I was in the shower today... - by anarky - 06-06-2006, 06:05 PM
So I was in the shower today... - by aetherfox - 06-06-2006, 06:09 PM
So I was in the shower today... - by Zack - 06-06-2006, 06:55 PM
So I was in the shower today... - by relsoft - 06-06-2006, 07:09 PM
So I was in the shower today... - by Zack - 06-06-2006, 09:09 PM
So I was in the shower today... - by Agamemnus - 06-06-2006, 09:38 PM
So I was in the shower today... - by Zack - 06-06-2006, 10:20 PM
So I was in the shower today... - by thegrogen - 06-06-2006, 10:50 PM
So I was in the shower today... - by aetherfox - 06-06-2006, 10:58 PM
So I was in the shower today... - by Zack - 06-06-2006, 11:30 PM
So I was in the shower today... - by Zack - 06-07-2006, 12:03 AM
So I was in the shower today... - by thegrogen - 06-07-2006, 12:18 AM
So I was in the shower today... - by Zack - 06-07-2006, 12:57 AM
So I was in the shower today... - by red_Marvin - 06-07-2006, 02:31 AM
So I was in the shower today... - by red_Marvin - 06-07-2006, 03:53 AM
So I was in the shower today... - by LooseCaboose - 06-07-2006, 04:04 AM
So I was in the shower today... - by Zack - 06-07-2006, 04:28 AM
So I was in the shower today... - by Agamemnus - 06-07-2006, 07:33 AM
So I was in the shower today... - by Zack - 06-07-2006, 07:42 AM
So I was in the shower today... - by anarky - 06-07-2006, 10:09 AM
So I was in the shower today... - by red_Marvin - 06-07-2006, 04:18 PM
So I was in the shower today... - by anarky - 06-07-2006, 04:26 PM
So I was in the shower today... - by Zack - 06-07-2006, 07:21 PM
So I was in the shower today... - by Agamemnus - 06-07-2006, 09:16 PM
So I was in the shower today... - by Agamemnus - 06-07-2006, 11:41 PM
So I was in the shower today... - by Agamemnus - 06-08-2006, 05:31 AM
So I was in the shower today... - by Zack - 06-08-2006, 07:42 PM
So I was in the shower today... - by NecrosIhsan - 06-08-2006, 11:28 PM
So I was in the shower today... - by Agamemnus - 06-08-2006, 11:40 PM
So I was in the shower today... - by Zack - 06-09-2006, 01:53 AM
So I was in the shower today... - by aetherfox - 06-09-2006, 02:36 AM
So I was in the shower today... - by Agamemnus - 06-09-2006, 05:57 AM
So I was in the shower today... - by Polter - 06-09-2006, 02:22 PM
So I was in the shower today... - by SJ Zero - 06-09-2006, 06:21 PM
So I was in the shower today... - by Zack - 06-09-2006, 06:46 PM
So I was in the shower today... - by SJ Zero - 06-09-2006, 07:25 PM
So I was in the shower today... - by Zack - 06-09-2006, 08:17 PM
So I was in the shower today... - by Agamemnus - 06-09-2006, 08:49 PM
So I was in the shower today... - by Agamemnus - 06-10-2006, 02:35 AM
So I was in the shower today... - by Agamemnus - 06-10-2006, 07:10 AM
So I was in the shower today... - by SJ Zero - 06-10-2006, 09:14 AM
So I was in the shower today... - by Agamemnus - 06-10-2006, 10:56 AM
So I was in the shower today... - by SJ Zero - 06-10-2006, 11:58 AM
So I was in the shower today... - by SJ Zero - 06-10-2006, 01:15 PM
So I was in the shower today... - by Agamemnus - 06-10-2006, 09:21 PM
So I was in the shower today... - by SJ Zero - 06-10-2006, 09:50 PM
So I was in the shower today... - by NecrosIhsan - 06-10-2006, 11:15 PM
So I was in the shower today... - by Zack - 06-11-2006, 08:10 PM
So I was in the shower today... - by Agamemnus - 06-13-2006, 10:15 PM
So I was in the shower today... - by Zack - 06-14-2006, 07:08 PM
So I was in the shower today... - by Torahteen - 06-14-2006, 08:47 PM
So I was in the shower today... - by Zack - 06-14-2006, 10:15 PM
So I was in the shower today... - by Torahteen - 06-14-2006, 10:19 PM
So I was in the shower today... - by Torahteen - 06-14-2006, 10:26 PM
So I was in the shower today... - by Agamemnus - 06-14-2006, 11:09 PM
So I was in the shower today... - by Zack - 06-14-2006, 11:31 PM
So I was in the shower today... - by Agamemnus - 06-15-2006, 02:41 AM
So I was in the shower today... - by Zack - 06-15-2006, 03:42 AM
So I was in the shower today... - by Torahteen - 06-15-2006, 04:12 AM
So I was in the shower today... - by Agamemnus - 06-15-2006, 10:27 AM
So I was in the shower today... - by SJ Zero - 06-15-2006, 07:13 PM
So I was in the shower today... - by Zack - 06-15-2006, 07:40 PM
So I was in the shower today... - by Agamemnus - 06-16-2006, 08:45 AM
So I was in the shower today... - by Agamemnus - 06-16-2006, 10:45 AM
So I was in the shower today... - by Zack - 06-16-2006, 09:46 PM
So I was in the shower today... - by Agamemnus - 06-16-2006, 11:29 PM

Forum Jump:


Users browsing this thread: 1 Guest(s)