Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ArduPilot custom controller: Rename a_Kb, a_Kg -> a_b, a_g #42

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,14 @@
% quaternion from NED to FRD frame (predicted and thus almost without
% delay)
measure.q_bg = euler2Quat(measure.EulerAngles);
% measured acceleration represented in NED frame, in m/s^2 (x and y
% component almost without delay; z component seems to be delayed by
% INS_ACCEL_FILTER)
measure.a_Kg = zeros(3,1);
% measured acceleration represented in NED frame, in m/s^2 (delayed by
% INS_ACCEL_FILTER; contains the acceleration due to gravity and is at
% standstill [0;0;-9.81])
measure.a_g = zeros(3,1);
% measured acceleration represented in FRD frame, in m/s^2
measure.a_Kb = zeros(3,1);
% (contains the acceleration due to gravity and is at standstill
% M_bg*[0;0;-9.81], where M_bg is the rotation matrix from g to b frame)
measure.a_b = zeros(3,1);
% velocity of FRD frame relative to the earth represented in FRD frame, in
% m/s (predicted and thus almost without delay)
measure.V_Kg = zeros(3,1);
Expand Down