Find acceleration due to large planar ring

  • Thread starter Thread starter oddjobmj
  • Start date Start date
  • Tags Tags
    Acceleration Ring
AI Thread Summary
The discussion focuses on calculating the gravitational acceleration experienced by a ship near a massive planar ring in space. The ship is located 1.1 km from the center of a ring with a radius of 1 km and mass of 1.0 x 10^18 kg. Participants explore using numerical integration methods in Mathematica to compute the gravitational potential and acceleration, emphasizing the importance of differentiating the integral correctly to find the force per unit mass. There is a consensus that changing the order of differentiation and integration can simplify the calculations. Ultimately, the calculated acceleration is approximately 35 m/s², confirming the approach's validity.
oddjobmj
Messages
305
Reaction score
0

Homework Statement


Firstly, my beautiful picture:

http://imgur.com/WZTl3rr

A ship has encountered a massive planar ring in space. The ring has radius R=1km and mass M=1.0 * 1018. Calculate the force per unit mass on the Enterprise assuming the starship is located at a point on the plane of the ring 1.1 km from the center. If necessary calculate the integral by numerical analysis.

Homework Equations



a=g(x)=-∇\Phi(x)\Phi'

Density=λ=\frac{M}{2πR}
dm=λRd

\Phi(x)=-G∫0 \frac{λRd\Phi'}{(x-x')}

The Attempt at a Solution



Because the ship is on the plane we know that θ=90°, correct?

The system is also symmetrical so \Phi=0.

\Phi(r,∅)=-GλR∫0 \frac{d\Phi'}{sqrt(r^2+R^2-2rRsin(θ)cos(\Phi'))}

The above equation is a bit nasty but it was what my prof. used in his example of basically the same problem.

Here is where I am having issues. My prof. did a similar example where he assumed that the distance from the center of the ring was much larger than the radius of the ring which allowed him to simplify the integral and find an approximation using a taylor series expansion. In the case I am given the distance is just outside the radius of the ring itself and such an approximation would be inaccurate. The problem also explicitly allows me the use of numerical analysis but there is a problem.

If I tell mathematica what each value is and then calculate the integral it spits out a number for the gravitational potential. Great, but what I need is acceleration which is the -∇ of that potential. Of course, the derivative of a scalar value is zero.

Alternatively, if I leave r as a variable and take the integral I get a super nasty conditional statement as a function of r. Pressing forward I ask for the derivative of that function with respect to r then assign my value of 1100 to r and it spits out 25.7459. That should be the acceleration and the answer is reasonable but I am wondering two things:

1) Am I interpreting the question correctly and taking the correct steps in solving this problem?

2) What would be a more elegant way of doing this?

Thank you for your help!
 
Physics news on Phys.org
If you are allowed to do the integrals numerically using Mathematica's NIntegrate, then you could just set up the integral for the force directly rather than for the potential.
 
  • Like
Likes 1 person
oddjobmj said:
If I tell mathematica what each value is and then calculate the integral it spits out a number for the gravitational potential. Great, but what I need is acceleration which is the -∇ of that potential. Of course, the derivative of a scalar value is zero.
You could differentiate the integral wrt r first.
 
  • Like
Likes 1 person
TSny said:
If you are allowed to do the integrals numerically using Mathematica's NIntegrate, then you could just set up the integral for the force directly rather than for the potential.

I'm not sure what the integral for the force would look like. Can you change the order in which you differentiate/integrate? i.e. take the integral of the derivative
You could differentiate the integral wrt r first.

What do you mean?

EDIT:

I re-did my calculation from last night having learned a bit more about the software I was using and came up with ~35 m/s2 using the same method as I described.

I then tried again by giving it the value for r and using NIntegrate[D[f[r],r],{phi,0,2pi}] and got the same result but it was much cleaner/more condensed. So, I not only tested NIntegrate but also changing the order of my integration/differentiation. Is that what you were implying?
 
Last edited:
Yes, you can change the order of differentiation and integration. This is what haruspex is suggesting. If you take the negative of the derivative of the integrand with respect to r, it gives the component of force per unit mass along the r direction due to the mass element ##\lambda R d\theta##. Then when you integrate you get the total force in the r direction.
 
  • Like
Likes 1 person
Great, thank you!
 
Would this be g(r) or would the final result be g(x)? I started using r when converting to polar coordinates from the x vector.
 
I think g(r) and g(x) are the same. The ship lies in the plane of the loop and I think you set up your integral such that r is the distance of the ship from the center of the loop along the x-axis.
 
  • Like
Likes 1 person
Back
Top