[spaceflight mechanics] given r and e vector, calculate inclination?

  • Thread starter Thread starter smalllittle
  • Start date Start date
  • Tags Tags
    Mechanics Vector
AI Thread Summary
The discussion focuses on calculating the inclination of a satellite's orbit given its position and eccentricity vectors. The position vector is provided in a geocentric equatorial frame, and the satellite is noted to be flying towards perigee. Participants suggest using the cross product of the position and eccentricity vectors to find a vector parallel to the specific angular momentum vector. The inclination can then be calculated using the arccosine of the z-component of this vector. Ultimately, the inclination is determined to be 45 degrees based on the calculations provided.
smalllittle
Messages
4
Reaction score
0
this problem deal with classical orbit parameters. a bold letter indicates a vector. ex:r is a vector while r is a scalar.

Homework Statement


given that, relative to the geocentric equatorial frame,
r=-6634.2i-1261.8j-5230.9k[km]
the eccentricity vector is
e=-0.40907i-0/48751j-0.63640k
and the satellite is flying towards perigee, calculate the inclination of the orbit.

Homework Equations


eq1: e=1/u*(vXh-r/r
eq2: h=rXv

formular for inclination is i=arccos(h.k/h)

The Attempt at a Solution


i managed to find vXh using eq1,
since r.(vXh=h.(rXv=h.h=h^2
so i find h, but idk how can i find the vector h. anyone have a better approach?
 
Physics news on Phys.org
You don't need to find h per se. You just need to find some vector that is parallel or anti-parallel to h. You have two vectors here; what operation can be performed on them to yield another vector? That bit of information about the satellite flying toward perigee is important.
 
smalllittle said:
this problem deal with classical orbit parameters. a bold letter indicates a vector. ex:r is a vector while r is a scalar.

Homework Statement


given that, relative to the geocentric equatorial frame,
r=-6634.2i-1261.8j-5230.9k[km]
the eccentricity vector is
e=-0.40907i-0/48751j-0.63640k
and the satellite is flying towards perigee, calculate the inclination of the orbit.

Homework Equations


eq1: e=1/u*(vXh-r/r
eq2: h=rXv

formular for inclination is i=arccos(h.k/h)

The Attempt at a Solution


i managed to find vXh using eq1,
since r.(vXh=h.(rXv=h.h=h^2
so i find h, but idk how can i find the vector h. anyone have a better approach?

Forgive my bump, and this is likely too late for the OP, but it may serve other people well in the future. Here's how I did it:

Start by solving for your true anomaly. The direction that the satellite is flying (towards perigee) will give you a clue as to which quadrant theta is in. I came up with 330 degrees.

With the given R vector, you can calculate a radius, and then use the fundamental orbit equation to figure out your angular momentum h.

Now calculate the radial velocity of the object using

Code:
Vr = (mu/h)*e*sind(theta)

where sind is just sin in degrees. The perpendicular velocity is just (mu/r). Now you can square both of the terms, add them, and then square root them to get a speed.

Code:
V = ((mu*E) - ((v^2) - (mu)/r)*R)/(-r*vr)

Using this formula above, solve for the V vector. It's a rearranged form of the equation you provided above (eq1). You can now find your H vector by crossing V with R. Pick off the third element of the vector, divide it by h, take the inverse cosine, and there's your answer.

A wrote a quick little .m file in MATLAB to do this. Copy/paste and run to see the inclination. Note that is all done assuming a 2 body system:

Code:
R = [-6634.2, -1261.8, -5230.9];

E = [-.40907, -.48751, -.63640];

mu = 398600;

r = norm(R);

e = norm(E);

theta = 360 - acosd((dot(R,E))/(e*r));

h = sqrt(r*mu*(1 + e*cosd(theta)));

vr = (mu/h)*e*sind(theta);

vperp = (mu/r);

v = sqrt((vr^2) + (vperp^2));

V = ((mu*E) - ((v^2) - (mu)/r)*R)/(-r*vr);

H = cross(R,V);

disp('The inclination of the orbit is (in degrees):')
i = acos((H(3))/h)*(180/pi)
 
foilman8805 said:
Forgive my bump, and this is likely too late for the OP, but it may serve other people well in the future. Here's how I did it:

Start by solving for your true anomaly. ...
Since this is an oldish post, giving out answers is not really breaking the rules. It will after all help people solve similar problems in the future.

That said, you sure solved this the hard way. All that is needed is a vector parallel to (or anti-parallel to) the specific orbital momentum vector, \boldsymbol h \equiv \boldsymbol r \times \boldsymbol v. One such vector is \boldsymbol r \times \boldsymbol e.

To see that this is the case, it's easiest to work in cylindrical curvilinear coordinates:

\aligned<br /> \hat{\boldsymbol r} &amp;\equiv \frac{\boldsymbol r}{||\boldsymbol r||} \\<br /> \hat{\boldsymbol h} &amp;\equiv \frac{\boldsymbol h}{||\boldsymbol h||} \\<br /> \hat{\boldsymbol \theta} &amp;\equiv \hat{\boldsymbol h}\times \hat{\boldsymbol r}<br /> \endaligned

Note that (rhat, thetahat, hhat) forms a right-handed system. With this,

\aligned<br /> \boldsymbol r &amp;= r \hat{\boldsymbol r} \\<br /> \boldsymbol v &amp;= \dot r \hat{\boldsymbol r} + r\dot{\theta} \hat{\boldsymbol \theta} \\<br /> \boldsymbol h &amp;= \boldsymbol r \times \boldsymbol v<br /> = r^2\dot{\theta} \hat{\boldsymbol h} = h \hat{\boldsymbol h}<br /> \endaligned

The eccentricity vector is

\aligned<br /> \boldsymbol e &amp;= \frac{\boldsymbol v \times \boldsymbol h}{\mu} - \hat{\boldsymbol r} \\<br /> &amp;= \left(\frac{h^2}{\mu r}-1\right)\hat{\boldsymbol r}<br /> - \frac{\dot r h}{\mu} \hat{\boldsymbol \theta}<br /> \endaligned

Now compute r×e:

\boldsymbol r \times \boldsymbol e<br /> = -\,\frac{\dot r h}{\mu} \hat{\boldsymbol h}

When the vehicle is flying toward apogee, rdot is positive so r×e is anti-parallel to the specific angular momentum vector during this first half of the orbit. When the vehicle is flying toward perigee (as is the case in this problem), rdot is negative, making r×e parallel to the specific angular momentum vector during the latter half of the orbit.

In this particular problem,

\hat{\boldsymbol h} = \frac{\boldsymbol r \times \boldsymbol e}{||\boldsymbol r \times \boldsymbol e||} =<br /> \bmatrix -0.45451 \\ -0.54168 \\ 0.70711 \endbmatrix

As the inclination is the inverse cosine of the z-component of the hhat unit vector, the vehicle is in an orbit with inclination of 45o.
 
Not trying to pick a fight or anything, but I don't think my method is necessarily the 'hard way'. Took about 2 minutes to do in MATLAB.
 
Back
Top