C++ Module: hingedRigidBodyStateEffector
Executive Summary
The hinged rigid body class is an instantiation of the state effector abstract class. The integrated test is validating the interaction between the hinged rigid body module and the rigid body hub that it is attached to. In this case, a hinged rigid body has an inertia tensor and is attached to the hub by a single degree of freedom torsional hinged with a linear spring constant and linear damping term.
Message Connection Descriptions
The following table lists all the module input and output messages. The module msg variable name 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.
Msg Variable Name |
Msg Type |
Description |
|---|---|---|
hingedRigidBodyInMsg |
(Optional) Input message of the reference angle and angle rate. |
|
motorTorqueInMsg |
(Optional) Input message of the hinge motor torque value. |
|
hingedRigidBodyOutMsg |
Output message containing the panel hinge state angle and angle rate. |
|
hingedRigidBodyConfigLogOutMsg |
Output message containing the panel inertial position and attitude states. |
Initialization and Reset
mass must be finite and non-negative. A zero-mass body remains supported when its
configured rotational inertia permits nonsingular hinge dynamics. dcm_HB must be a
finite, orthogonal, right-handed rotation matrix; scaled axes and reflections are rejected.
These checks run before state registration during spacecraft initialization, including when
the effector is attached without being added to a task. Reset() performs the same checks
without accessing parent states or changing integrated hinge states, motor commands, or
reference values. Invalid configurations raise BasiliskError. See Initialization and Configuration Validation.
Detailed Module Description
Mathematical Modeling
See Allard, Schaub, and Piggott paper: General Hinged Solar Panel Dynamics Approximating First-Order Spacecraft Flexing for a detailed description of this model. A hinged rigid body has 2 states: theta and thetaDot.
For additional information about connecting a reference, see Bascom and Schaub paper: Modular Dynamic Modeling of Hinged Solar Panel Deployments
The module
PDF Description
contains further information on this module’s function,
how to run it, as well as testing.
Note
In contrast to C++ Module: spinningBodyOneDOFStateEffector, this module assumes:
rigid body inertia matrix is diagonal as seen in the hinged body \(\cal S\) frame
the center of mass lies on the \(\hat{\bf s}_1\) axis
Module Testing
The integrated tests has six scenarios it is testing. The first three are: one with gravity and no damping, one without gravity and without damping, and one without gravity with damping. These first three tests are verifying energy and momentum conservation. In the first two cases orbital energy, orbital momentum, rotational energy, and rotational angular momentum should all be conserved. In the third case orbital momentum, orbital energy, and rotational momentum should be conserved. This integrated test validates for all three scenarios that all of these parameters are conserved. The fourth scenario is verifying that the steady state deflection while a constant force is being applied matches the back of the envelope (BOE) calculation. The fifth scenario applies a constant force and removes the force and the test verifies that the frequency and amplitude match the BOE calculations. And the sixth scenario verifies that Basilisk gives identical results to a planar Lagrangian dynamical system created independently.
The document PDF Description
contains a more detailed discussion of the testing, as well as the expected results.
User Guide
This section is to outline the steps needed to setup a Hinged Rigid Body State Effector in python using Basilisk.
Import the hingedRigidBodyStateEffector class:
from Basilisk.simulation import hingedRigidBodyStateEffector
Create an instantiation of a Hinged Rigid body:
panel1 = hingedRigidBodyStateEffector.HingedRigidBodyStateEffector()
Define all physical parameters for a Hinged Rigid Body. For example:
IPntS_S = [[100.0, 0.0, 0.0], [0.0, 50.0, 0.0], [0.0, 0.0, 50.0]]
Do this for all of the parameters for a Hinged Rigid Body seen in the Hinged Rigid Body 1 Parameters Table.
(Optional) Define a unique name for each state. If you have multiple panels, they each must have a unique name. If these names are not specified, then the default names are used which are incremented by the effector number:
panel1.thetaInit = 5*numpy.pi/180.0 panel1.thetaDotInit = 0.0
Define a unique name for each state:
panel1.nameOfThetaState = "hingedRigidBodyTheta1" panel1.nameOfThetaDotState = "hingedRigidBodyThetaDot1"
Define an optional motor torque input message:
panel1.motorTorqueInMsg.subscribeTo(msg)
The angular states of the panel are created using an output message
hingedRigidBodyOutMsg.The panel config log state output message is
hingedRigidBodyConfigLogOutMsg.Add the panel to your spacecraft:
scObject.addStateEffector(panel1)
See C++ Module: spacecraft documentation on how to set up a spacecraft object.
Add the module to the task list:
unitTestSim.AddModelToTask(unitTaskName, panel1)
Hosting a Dynamic Effector
This effector supports the branching described in Advanced: Effector Module Branching, so a compatible dynamic effector can be carried by the panel rather than by the hub:
panel1.addDynamicEffector(childEffector)
This effector then makes its inertial position, velocity, attitude, and angular velocity available in place of the hub’s, and the child reads whichever of the four its model needs. Any geometry given to the child is expressed in that panel’s frame rather than the hub body frame. Both this effector and the child are still added to the task in the usual way.
-
class HingedRigidBodyStateEffector : public StateEffector, public SysModel
- #include <hingedRigidBodyStateEffector.h>
hinged rigid body state effector class
Public Functions
-
HingedRigidBodyStateEffector()
Constructor.
This is the constructor, setting variables to default values
-
~HingedRigidBodyStateEffector()
Destructor.
This is the destructor, nothing to report here
-
void Reset(uint64_t CurrentSimNanos) override
Validate configuration without changing integrated states or commands.
- Parameters:
CurrentSimNanos – [ns] Current simulation time.
-
void writeOutputStateMessages(uint64_t CurrentClock) override
This method takes the computed theta states and outputs them to the m messaging system.
- Parameters:
CurrentClock – The current simulation time (used for time stamping)
-
void UpdateState(uint64_t CurrentSimNanos) override
This method is used so that the simulation will ask HRB to update messages.
- Parameters:
CurrentSimNanos – The current simulation time in nanoseconds
-
void registerStates(DynParamManager &statesIn) override
Method for registering the HRB states.
This method allows the HRB state effector to register its states: theta and thetaDot with the dyn param manager
- Parameters:
statesIn – [inout] Dynamic parameter manager used to register states or properties.
-
void linkInStates(DynParamManager &states) override
Method for getting access to other states.
This method allows the HRB state effector to have access to the hub states and gravity
- Parameters:
states – [in] Dynamic parameter manager containing the required states.
-
void addDynamicEffector(DynamicEffector *newDynamicEffector, int segment = 1) override
Method for adding attached dynamic effector.
This method attaches a dynamicEffector to the specified HRB
- Parameters:
newDynamicEffector – the dynamic effector to be attached to the HRB
segment – the integer number segment to be attached to (default segment=1)
-
void registerProperties(DynParamManager &states) override
Method for registering the HRB inertial properties.
This method registers the HRB inertial properties with the dynamic parameter manager and links them into dependent dynamic effectors
- Parameters:
states – [inout] Dynamic parameter manager used to register states or properties.
-
void updateContributions(double integTime, BackSubMatrices &backSubContr, Eigen::MRPd sigma_BN, Eigen::Vector3d omega_BN_B, Eigen::Vector3d g_N) override
Method for back-sub contributions.
This method allows the HRB state effector to give its contributions to the matrices needed for the back-sub method
- Parameters:
integTime – [in] [s] Current integration time.
backSubContr – [inout] Backsubstitution contributions.
sigma_BN – [in] Hub attitude relative to the inertial frame.
omega_BN_B – [in] [rad/s] Hub angular velocity expressed in body-frame components.
g_N – [in] [m/s^2] Gravitational acceleration expressed in inertial-frame components.
-
void computeDerivatives(double integTime, Eigen::Vector3d rDDot_BN_N, Eigen::Vector3d omegaDot_BN_B, Eigen::MRPd sigma_BN) override
Method for HRB to compute its derivatives.
This method is used to find the derivatives for the HRB stateEffector: thetaDDot and the kinematic derivative
- Parameters:
integTime – [in] [s] Current integration time.
rDDot_BN_N – [in] [m/s^2] Hub translational acceleration expressed in inertial-frame components.
omegaDot_BN_B – [in] [rad/s^2] Hub angular acceleration expressed in body-frame components.
sigma_BN – [in] Hub attitude relative to the inertial frame.
-
void updateEffectorMassProps(double integTime) override
Method for giving the s/c the HRB mass props and prop rates.
This method allows the HRB state effector to provide its contributions to the mass props and mass prop rates of the spacecraft
- Parameters:
integTime – [in] [s] Current integration time.
-
void updateEnergyMomContributions(double integTime, Eigen::Vector3d &rotAngMomPntCContr_B, double &rotEnergyContr, Eigen::Vector3d omega_BN_B) override
Computing energy and momentum for HRBs.
This method is for calculating the contributions of the HRB state effector to the energy and momentum of the s/c
- Parameters:
integTime – [in] [s] Current integration time.
rotAngMomPntCContr_B – [inout] [kg*m^2/s] Rotational angular momentum contribution.
rotEnergyContr – [inout] [J] Rotational energy contribution.
omega_BN_B – [in] [rad/s] Hub angular velocity expressed in body-frame components.
-
void calcForceTorqueOnBody(double integTime, Eigen::Vector3d omega_BN_B) override
Force and torque on s/c due to HRBs.
Calculate the force and torque exerted on the attached body.
- Parameters:
integTime – [in] [s] Current integration time.
omega_BN_B – [in] [rad/s] Hub angular velocity expressed in body-frame components.
-
void prependSpacecraftNameToStates() override
class method
Public Members
-
double mass
[kg] mass of hinged rigid body
-
double d
[m] distance from hinge point H to hinged rigid body center of mass S
-
double k
[N-m/rad] torsional spring constant of hinge
-
double c
[N-m-s/rad] rotational damping coefficient of hinge
-
double thetaInit
[rad] Initial hinged rigid body angle
-
double thetaDotInit
[rad/s] Initial hinged rigid body angle rate
-
double thetaRef
[rad] hinged rigid body reference angle
-
double thetaDotRef
[rad/s] hinged rigid body reference angle rate
-
std::string nameOfThetaState
Identifier for the theta state data container.
-
std::string nameOfThetaDotState
Identifier for the thetaDot state data container.
-
std::string nameOfInertialPositionProperty
identifier for the inertial position property
-
std::string nameOfInertialVelocityProperty
identifier for the inertial velocity property
-
std::string nameOfInertialAttitudeProperty
identifier for the inertial attitude property
-
std::string nameOfInertialAngVelocityProperty
identifier for the inertial angular velocity property
-
Message<HingedRigidBodyMsgPayload> hingedRigidBodyOutMsg
state output message name
-
ReadFunctor<ArrayMotorTorqueMsgPayload> motorTorqueInMsg
(optional) motor torque input message name
-
ReadFunctor<HingedRigidBodyMsgPayload> hingedRigidBodyRefMsg
(optional) rigid body reference input message name
-
Message<SCStatesMsgPayload> hingedRigidBodyConfigLogOutMsg
panel state config log message name
-
HingedRigidBodyMsgPayload HRBoutputStates
instance of messaging system message struct
-
BSKLogger bskLogger
BSK Logging.
-
std::vector<DynamicEffector*> dynEffectors
Vector of dynamic effectors attached.
Private Functions
-
template<typename Type>
inline void assignStateParamNames(Type effector) Assign the state engine parameter names
-
void validateConfiguration()
Validate mass and the configured hinge-frame DCM.
Validate mass and the fixed hinge orientation without accessing parent states.
-
void computePanelInertialStates()
This method computes the panel states relative to the inertial frame
Private Members
-
double u
[N-m] optional motor torque
-
double cTheta
term needed for Backsubstitution
-
Eigen::Vector3d r_HP_P
[m] vector pointing from primary body frame P origin to Hinge location. If a single spacecraft body is modeled than P is the same as B
-
Eigen::Vector3d omega_BN_B = {0.0, 0.0, 0.0}
Hub/Inertial angular velocity vector in B frame components.
-
Eigen::MatrixXd *inertialPositionProperty
[m] r_N inertial position relative to system spice zeroBase/refBase
-
Eigen::MatrixXd *inertialVelocityProperty
[m] v_N inertial velocity relative to system spice zeroBase/refBase
-
double theta
[rad] hinged rigid body angle
-
double thetaDot
[rad/s] hinged rigid body angle rate
Private Static Attributes
-
static uint64_t effectorID = 1
[] ID number of this panel
-
HingedRigidBodyStateEffector()