Table of contents
CSPICE_DVSEP calculates the time derivative of the separation angle
between states.
Given:
s1 defining a SPICE state(s);
dr1
s1 = (r1, --- ).
dt
[6,n] = size(s1); double = class(s1)
s2 defining a second SPICE state(s);
dr2
s2 = (r2, --- ).
dt
[6,n] = size(s2); double = class(s2)
An implicit assumption exists that `s1' and `s2' are
specified in the same reference frame. If this is not the
case, the numerical result has no meaning.
the call:
[dvsep] = cspice_dvsep( s1, s2 )
returns:
dvsep time derivative(s) of the angular separation between `s1' and
`s2'.
[1,n] = size(dvsep); double = class(dvsep)
`dvsep' returns with the same vectorization measure (N)
as `s1' and `s2'.
None.
Any numerical results shown for this example may differ between
platforms as the results depend on the SPICE kernels used as input
and the machine specific arithmetic implementation.
1) Calculate the time derivative of the angular separation of
the Earth and Moon as seen from the Sun.
Use the meta-kernel shown below to load the required SPICE
kernels.
KPL/MK
File name: dvsep_ex1.tm
This meta-kernel is intended to support operation of SPICE
example programs. The kernels shown here should not be
assumed to contain adequate or correct versions of data
required by SPICE-based user applications.
In order for an application to use this meta-kernel, the
kernels referenced here must be present in the user's
current working directory.
The names and contents of the kernels referenced
by this meta-kernel are as follows:
File name Contents
--------- --------
de421.bsp Planetary ephemeris
naif0012.tls Leapseconds
\begindata
KERNELS_TO_LOAD = ( 'de421.bsp',
'naif0012.tls' )
\begintext
End of meta-kernel
Example code begins here.
function dvsep_ex1()
%
% Load kernels.
%
cspice_furnsh( 'dvsep_ex1.tm' )
%
% An arbitrary time.
%
BEGSTR = 'JAN 1 2009';
et = cspice_str2et( BEGSTR );
%
% Calculate the state vectors sun to Moon, sun to earth at ET.
%
[statee, lt] = cspice_spkezr('EARTH', et, 'J2000', 'NONE', 'SUN' );
[statem, lt] = cspice_spkezr('MOON', et, 'J2000', 'NONE', 'SUN' );
%
% Calculate the time derivative of the angular separation of
% the earth and Moon as seen from the sun at ET.
%
dsept = cspice_dvsep( statee, statem );
fprintf( ['Time derivative of angular separation, ', ...
'rads/sec: %.10e\n'], dsept )
%
% It's always good form to unload kernels after use,
% particularly in Matlab due to data persistence.
%
cspice_kclear
When this program was executed on a Mac/Intel/Octave6.x/64-bit
platform, the output was:
Time derivative of angular separation, rads/sec: 3.8121193666e-09
In this discussion, the notation
< V1, V2 >
indicates the dot product of vectors V1 and V2. The notation
V1 x V2
indicates the cross product of vectors V1 and V2.
To start out, note that we need consider only unit vectors,
since the angular separation of any two non-zero vectors
equals the angular separation of the corresponding unit vectors.
Call these vectors U1 and U2; let their velocities be V1 and V2.
For unit vectors having angular separation
THETA
the identity
|| U1 x U1 || = ||U1|| * ||U2|| * sin(THETA) (1)
reduces to
|| U1 x U2 || = sin(THETA) (2)
and the identity
| < U1, U2 > | = || U1 || * || U2 || * cos(THETA) (3)
reduces to
| < U1, U2 > | = cos(THETA) (4)
Since THETA is an angular separation, THETA is in the range
0 : Pi
Then letting s be +1 if cos(THETA) > 0 and -1 if cos(THETA) < 0,
we have for any value of THETA other than 0 or Pi
2 1/2
cos(THETA) = s * ( 1 - sin (THETA) ) (5)
or
2 1/2
< U1, U2 > = s * ( 1 - sin (THETA) ) (6)
At this point, for any value of THETA other than 0 or Pi,
we can differentiate both sides with respect to time (T)
to obtain
2 -1/2
< U1, V2 > + < V1, U2 > = s * (1/2)(1 - sin (THETA))
* (-2) sin(THETA)*cos(THETA)
* d(THETA)/dT (7a)
Using equation (5), and noting that s = 1/s, we can cancel
the cosine terms on the right hand side
-1
< U1, V2 > + < V1, U2 > = (1/2)(cos(THETA))
* (-2) sin(THETA)*cos(THETA)
* d(THETA)/dT (7b)
With (7b) reducing to
< U1, V2 > + < V1, U2 > = - sin(THETA) * d(THETA)/dT (8)
Using equation (2) and switching sides, we obtain
|| U1 x U2 || * d(THETA)/dT = - < U1, V2 > - < V1, U2 > (9)
or, provided U1 and U2 are linearly independent,
d(THETA)/dT = ( - < U1, V2 > - < V1, U2 > ) / ||U1 x U2|| (10)
Note for times when U1 and U2 have angular separation 0 or Pi
radians, the derivative of angular separation with respect to
time doesn't exist. (Consider the graph of angular separation
with respect to time; typically the graph is roughly v-shaped at
the singular points.)
1) If numeric overflow and underflow cases are detected, an error
is signaled by a routine in the call tree of this routine.
2) Linear dependent position components of `s1' and `s1' constitutes
a non-error exception. The function returns 0 for this case.
3) If any of the input arguments, `s1' or `s2', is undefined, an
error is signaled by the Matlab error handling system.
4) If any of the input arguments, `s1' or `s2', is not of the
expected type, or it does not have the expected dimensions and
size, an error is signaled by the Mice interface.
5) If the input vectorizable arguments `s1' and `s2' do not have
the same measure of vectorization (N), an error is signaled by
the Mice interface.
None.
None.
MICE.REQ
None.
J. Diaz del Rio (ODC Space)
S.C. Krening (JPL)
E.D. Wright (JPL)
-Mice Version 1.1.0, 24-AUG-2021 (EDW) (JDR)
Edited the header to comply with NAIF standard. Added
example's problem statement and meta-kernel.
Added -Parameters, -Exceptions, -Files, -Restrictions,
-Literature_References and -Author_and_Institution sections.
Eliminated use of "lasterror" in rethrow.
Removed reference to the function's corresponding CSPICE header from
-Required_Reading section.
-Mice Version 1.0.0, 12-MAR-2012 (EDW) (SCK)
time derivative of angular separation
|