You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
pitch and off_nom_roll are a sanity check to help to confirm that the attitude solution is correct.
There is a step in the NSM recovery procedure where PCAD needs to verify that the "true" attitude from find_attitude or SAUSAGE matches the OBC estimated attitude to within 25 arcsec. This should be interpreted as a box halfwidth check using the delta pitch and delta yaw.
# Get q_att from MAUDE computed MSID "quat_aoattqt" (AOATTQT[1-4])`
# Compute q_stars from find_attitude or SAUSAGE
dq = q_att.dq(q_stars)
print(dq.pitch * 3600, dq.yaw * 3600)
The text was updated successfully, but these errors were encountered:
pitch
andoff_nom_roll
are a sanity check to help to confirm that the attitude solution is correct.There is a step in the NSM recovery procedure where PCAD needs to verify that the "true" attitude from find_attitude or SAUSAGE matches the OBC estimated attitude to within 25 arcsec. This should be interpreted as a box halfwidth check using the delta pitch and delta yaw.
The text was updated successfully, but these errors were encountered: