Module: sunSafePoint

Executive Summary

This module provides the attitude guidance output for a sun pointing mode. This could be used for safe mode, or a power generation mode. The input is the sun direction vector which does not have to be normalized, as well as the body rate information. The output is the standard BSK attitude reference state message. The sun direction measurement is cross with the desired body axis that is to point at the sun to create a principle rotation vector. The dot product between these two vectors is used to extract the principal rotation angle. With these a tracking error MRP state is computer. The body rate tracking errors relative to the reference frame are set equal to the measured body rates to bring the vehicle to rest when pointing at the sun. Thus, the reference angular rate and acceleration vectors relative to the inertial frame are nominally set to zero. If the sun vector is not available, then the reference rate is set to a body-fixed value while the attitude tracking error is set to zero.

The file PDF Description. contains further information on this module’s function, how to run it, as well as testing.

Message Connection Descriptions

The following table lists all the module input and output messages. The module msg connection is set by the user from python. The msg type contains a link to the message structure definition, while the description provides information on what this message is used for.

Module I/O Messages

Msg Variable Name

Msg Type

Description

attGuidanceOutMsg

AttGuidMsgPayload

attitude guidance output message

sunDirectionInMsg

NavAttMsgPayload

sun direction input message

imuInMsg

NavAttMsgPayload

IMU input message


Functions

void SelfInit_sunSafePoint(sunSafePointConfig *configData, int64_t moduleID)

This method initializes the configData for the sun safe attitude guidance. It checks to ensure that the inputs are sane and then creates the output message

Parameters
  • configData – The configuration data associated with the sun safe guidance

  • moduleID – The Basilisk module identifier

Returns

void

void Update_sunSafePoint(sunSafePointConfig *configData, uint64_t callTime, int64_t moduleID)

This method takes the estimated body-observed sun vector and computes the current attitude/attitude rate errors to pass on to control.

Parameters
  • configData – The configuration data associated with the sun safe attitude guidance

  • callTime – The clock time at which the function was called (nanoseconds)

  • moduleID – The Basilisk module identifier

Returns

void

void Reset_sunSafePoint(sunSafePointConfig *configData, uint64_t callTime, int64_t moduleID)

This method performs a complete reset of the module. Local module variables that retain time varying states between function calls are reset to their default values.

Parameters
  • configData – The configuration data associated with the guidance module

  • callTime – The clock time at which the function was called (nanoseconds)

  • moduleID – The Basilisk module identifier

Returns

void

struct sunSafePointConfig
#include <sunSafePoint.h>

Top level structure for the sun-safe attitude guidance routine.

Public Members

AttGuidMsg_C attGuidanceOutMsg

The name of the output message

NavAttMsg_C sunDirectionInMsg

The name of the Input message

NavAttMsg_C imuInMsg

The name of the incoming IMU message

double minUnitMag

&#8212; The minimally acceptable norm of sun body vector

double sunAngleErr

rad The current error between cmd and obs sun angle

double smallAngle

rad An angle value that specifies what is near 0 or 180 degrees

double eHat180_B[3]

&#8212; Eigen axis to use if commanded axis is 180 from sun axis

double sunMnvrVec[3]

&#8212; The eigen axis that we want to rotate on to get sun

double sHatBdyCmd[3]

&#8212; Desired body vector to point at the sun

double omega_RN_B[3]

&#8212; Desired body rate vector if no sun direction is available

double sunAxisSpinRate

r/s Desired constant spin rate about sun heading vector

AttGuidMsgPayload attGuidanceOutBuffer

&#8212; The output data that we compute

BSKLogger *bskLogger

BSK Logging.