Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
So I was in the shower today...
#84
Let's start with the basic gravitational formula.

Code:
F = G(m1m2)/R^2

Now let's set m1 and m2 to 1 for ease of use, and put aside G for now. This will make more sense later.

Code:
F = 1/R^2

F = R^(-2)

Now, we're going to integrate this between the two far reaches of the circle, -R and R, which, if we use b(the radius location of the particle we're looking at) as a reference point, become:

Code:
R + b
R - b

Now we can integrate.

SR^(-2) = 1/-R |(R + b to R-b)
Now we do the limits.

1/-(r + b)  -  1/-(r - b)

1/-(r + b) + 1/(r-b)

-(R + b) + (R - b)  /  -(R^2 + b^2)

-R - b + R - B  / -(R^2 + b^2)

-2b / -(R^2 + b^2)

2b/(r^2 + b^2)

And we now have an equation to determine the gravity in any point in a sphere. I'm using a sphere instead of an oblate spheroid because it's not neccessary to prove what I'm trying to show. I'm using a circle in this case, because the added complexity of a full sphere isn't needed either. To add the extra dimension would simply be an added integration at the end of this, and is largely unneccessary to show what I'm trying to show.

[Image: 32251-r.png]

The above is the plot given by this equation. I have a good clue as to exactly how the drop-off occurs. The zero crossing represents the switch in direction of the force. Note, however, that the magnitude remains relatively significant for the majority of the planets radius.

The next part involves a fairly heavy calculus equation. I'd rather not do it that way because I'll be here all night, so I'm going to give R a value of 100, and use a program to manually sum the forces exerted upon the core by the 'spike' I've chosen.

Code:
defdbl a-z
screen 18
R = 100
print "Force and pressure characteristics"
for a = -100 to 100
    x = 5000 * ((2*a)/(r^2 + a^2))
    y += (x / 5000)
    pset (200 + a,100 + x)
    pset (200 + a,100 + 25 * y), 1
    pset (200 + a, 100)
    pset (200, 100 + a)
next a

for a = -100 to 0
    x = 5000 * ((2*a)/(r^2 + a^2))
    y -= (abs(x) / 5000)

next a
for a = 100 to 0 step -1
    x = 5000 * ((2*a)/(r^2 + a^2))
    y -= (abs(x) / 5000)
next a
    circle (200 + a,100 + 25 * y), 4,2

sleep

This code will show you something like this:

[Image: 32256-r.png]

This graph is relevant because it shows that even taking into account the altered gravity as you head into the planet, the pressure build-up due to gravity is still substantial.

EDIT: there's an error in my equations, I'll adjust tomorrow when it's not 230am. Basically, I need to remember that mass is variable with radius as well. I hate very much to admit it, but it's possible that with this alteration we'll see results closer to what agamamnus predicts. We'll see then.
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: 3 Guest(s)