aboutsummaryrefslogtreecommitdiff
path: root/src/lib/ecl/attitude_fw/ecl_pitch_controller.cpp
diff options
context:
space:
mode:
authorThomas Gubler <thomasgubler@gmail.com>2013-10-15 18:34:13 +0200
committerThomas Gubler <thomasgubler@gmail.com>2013-10-24 17:39:27 +0200
commitcb5e5e914351754356c85e61f2394d1cf91db71f (patch)
treee6af69311c892c65008c3a667c4c2b448701476d /src/lib/ecl/attitude_fw/ecl_pitch_controller.cpp
parent1c57d7de434d09893416137f9c72dca2f225cbc7 (diff)
downloadpx4-firmware-cb5e5e914351754356c85e61f2394d1cf91db71f.tar.gz
px4-firmware-cb5e5e914351754356c85e61f2394d1cf91db71f.tar.bz2
px4-firmware-cb5e5e914351754356c85e61f2394d1cf91db71f.zip
fw att control: also transform rate estimate
Diffstat (limited to 'src/lib/ecl/attitude_fw/ecl_pitch_controller.cpp')
-rw-r--r--src/lib/ecl/attitude_fw/ecl_pitch_controller.cpp11
1 files changed, 8 insertions, 3 deletions
diff --git a/src/lib/ecl/attitude_fw/ecl_pitch_controller.cpp b/src/lib/ecl/attitude_fw/ecl_pitch_controller.cpp
index 59f4b10be..9b86d6971 100644
--- a/src/lib/ecl/attitude_fw/ecl_pitch_controller.cpp
+++ b/src/lib/ecl/attitude_fw/ecl_pitch_controller.cpp
@@ -107,14 +107,19 @@ float ECL_PitchController::control(float pitch_setpoint, float pitch, float pitc
turn_offset = -turn_offset;
float pitch_error = pitch_setpoint - pitch;
- /* rate setpoint from current error and time constant */
+ /* /* Apply P controller: rate setpoint from current error and time constant */
float theta_dot_setpoint = pitch_error / _tc;
- _rate_setpoint = cosf(roll) * theta_dot_setpoint + cosf(pitch) * sinf(roll) * yaw_rate; //jacobian
+
+ /* Transform setpoint to body angular rates */
+ _rate_setpoint = cosf(roll) * theta_dot_setpoint + cosf(pitch) * sinf(roll) * yaw_rate; //jacobian //XXX: use desired yaw_rate?
/* add turn offset */
_rate_setpoint += turn_offset;
- _rate_error = _rate_setpoint - pitch_rate;
+ /* Transform estimation to body angular rates */
+ float pitch_rate_body = cosf(roll) * theta_dot_setpoint + cosf(pitch) * sinf(roll) * yaw_rate; //jacobian
+
+ _rate_error = _rate_setpoint - pitch_rate_body;
float ilimit_scaled = 0.0f;