GLAST/LAT > DAQ and FSW > FSW > Doxygen Index > ATT / V1-1-2

Constituent: att     Tag: rad750


Interface   Data Structures   File List   Data Fields   Globals  

ATT.h File Reference

LAT Attitude Processing Package. More...

#include "ATT/ATT_msg.h"
#include "PBS/WCT.h"

Include dependency graph for ATT.h:

Include dependency graph

This graph shows which files directly or indirectly include this file:

Included by dependency graph

Attitude Processing Control Functions

ATT_ControlATT_get (void)
 Get pointer to attitude processing global handle.

unsigned int ATT_init (ATT_Control *ctl, unsigned int numSecs)
 Initialize global attitude processing handle.

unsigned int ATT_exit (ATT_Control *ctl)
 Shutdown the attitude processing global handle.

unsigned int ATT_reset (ATT_Control *ctl)
 Reset the attitude processing global handle.

unsigned int ATT_update (ATT_Control *ctl, const WCT_time t, const double *Q, const float *W)
 Update attitude history list.

unsigned int ATT_lookup (ATT_Control *ctl, const WCT_time t, double *Q)
 Lookup attitude information in history list.

unsigned int ATT_range (ATT_Control *ctl, WCT_time *tBottom, WCT_time *tTop)
 Get current time range of history list.

unsigned int ATT_xform (ATT_Control *ctl, const WCT_time t, const double *Vl, double *Vj)
 Trasform a vector from LAT coordinates to J2000 coordinates.


Vectory Utility Functions

void ATT_vec_cart_to_sphr_rad (const double *Vc, double *Vs)
 Transform a cartesian vector to spherical (ra,dec) coordinates (radians).

void ATT_vec_cart_to_sphr_deg (const double *Vc, double *Vs)
 Transform a cartesian vector to spherical (ra,dec) coordinates (degrees).


Typedefs

typedef _ATT_Control ATT_Control

Detailed Description

LAT Attitude Processing Package.

Author:
D.L. Wood
This library contains functions and definitions for manipulating and transforming vectors in LAT instrument body coordinates to vectors in J2000 coordinates. The ultimate goal is to produce a vector in J2000 coordinates (RA, DEC) for any given cartesian vector in LAT local coordinates.

The attitude information is input in the form of an attidude state vector which consists of a:

  1. Timestamp as a 64-bit WCT value
  2. Four element SC-J2000 attitude quaternion
  3. Three element SC angular velocity vector

This information is provided to the LAT from the SC GNC system. The attitude library maintains a short time history of the attitude information to allow for vector transformations at arbitrary times in the recent past. Call the function ATT_update() to inform the attitude processing software of a new message available from the SC.


Typedef Documentation

ATT_Control
 

The type for the global attitude processing control descriptor.


Function Documentation

unsigned int ATT_exit ATT_Control ctl  ) 
 

Shutdown the attitude processing global handle.

This releases any global resources allocated in the call to ATT_init().

Parameters:
ctl A pointer to the ATT global control structure.
Returns:
A ATT MSG code.

ATT_Control * ATT_get void   ) 
 

Get pointer to attitude processing global handle.

This function returns a pointer which may be passed as a parameter to the other functions in this library. The function ATT_init() must be called for this pointer before the other library functions are available.

Returns:
A pointer to the global instance of the attitude processing control structure.

unsigned int ATT_init ATT_Control ctl,
unsigned int  numSecs
 

Initialize global attitude processing handle.

This function initializes the global attitude processing control state.

Parameters:
ctl A pointer to the ATT global control structure.
numSecs The number of seconds backwards to maintain in the attitude history list.
Returns:
A ATT MSG code.

Here is the call graph for this function:

unsigned int ATT_lookup ATT_Control ctl,
const WCT_time  t,
double *  Q
 

Lookup attitude information in history list.

This function looks up the information stored for time t in the attitude history list.

Parameters:
ctl A pointer to the ATT global control structure.
t The timestamp for the attitude information.
Q SC-J2000 quaternion for time t is placed here on successful return:
Q[0] = q1 (x)
Q[1] = q2 (y)
Q[2] = q3 (z)
Q[3] = q4 (w)
.
Returns:
An ATT MSG code.

unsigned int ATT_range ATT_Control ctl,
WCT_time *  tBottom,
WCT_time *  tTop
 

Get current time range of history list.

This function looks up current range of times in the attitude history list.

Parameters:
ctl A pointer to the ATT global control structure.
tBottom Stores the bottom (earliest) time from the history list.
tTop Stores the top (latest) time from the history list.
Returns:
An ATT MSG code.

unsigned int ATT_reset ATT_Control ctl  ) 
 

Reset the attitude processing global handle.

This clears the attitude history list current entries and resets the history list to its initial state.

Parameters:
ctl A pointer to the ATT global control structure.
Returns:
A ATT MSG code.

unsigned int ATT_update ATT_Control ctl,
const WCT_time  t,
const double *  Q,
const float *  W
 

Update attitude history list.

This function updates the tail of the attitude history list.

Parameters:
ctl A pointer to the ATT global control structure.
t The timestamp for the attitude information.
Q SC-J2000 quaternion for time t.
Q[0] = q1 (x)
Q[1] = q2 (y)
Q[2] = q3 (z)
Q[3] = q4 (w)
.
W The SC angular velocity vector for time t (units rad/sec).
W[0] = wx
W[1] = wy
W[2] = wz
Returns:
An ATT MSG code.

void ATT_vec_cart_to_sphr_deg const double *  Vc,
double *  Vs
 

Transform a cartesian vector to spherical (ra,dec) coordinates (degrees).

Transforms the vector Vc in (x,y,z) cartesian coordinates into the vector Vs in (ra,dec) spherical coordinates. Vs is returned in degrees.

Parameters:
Vc The input vector in cartisian coordinates.
Vc[0] = x
Vc[1] = y
Vc[2] = z
Vs The output vector in spherical coordinates.
Vs[0] = ra
Vs[1] = dec

Here is the call graph for this function:

void ATT_vec_cart_to_sphr_rad const double *  Vc,
double *  Vs
 

Transform a cartesian vector to spherical (ra,dec) coordinates (radians).

Transforms the vector Vc in (x,y,z) cartesian coordinates into the vector Vs in (ra,dec) spherical coordinates. Vs is returned in radians.

Parameters:
Vc The input vector in cartisian coordinates.
Vc[0] = x
Vc[1] = y
Vc[2] = z
Vs The output vector in spherical coordinates.
Vs[0] = ra
Vs[1] = dec

Here is the call graph for this function:

unsigned int ATT_xform ATT_Control ctl,
const WCT_time  t,
const double *  Vl,
double *  Vj
 

Trasform a vector from LAT coordinates to J2000 coordinates.

This function transforms a vector Vl input in LAT instrument coordiates into a vector Vj in J200 coordinates. The timestamp t is used to lookup the attitude information in the global history list. The SC-J2000 quaternion returned by the lookup is then applied to Vl to produce Vj. The timestamp should correspond to the time at which the transform for Vl should be performed.

Parameters:
ctl A pointer to the ATT global control structure.
t The timestamp for the attitude information.
Vl Input vector in LAT coordinates.
Vl[0] = x
Vl[1] = y
Vl[2] = z
Vj Output vector in J2000 coordinates.
Vj[0] = x
Vj[1] = y
Vj[2] = z
Returns:
An ATT MSG code.

Here is the call graph for this function:


Generated on Mon Jun 13 20:16:37 2005 by doxygen 1.3.3