aboutsummaryrefslogtreecommitdiff
path: root/src/lib/external_lgpl/tecs/tecs.cpp
diff options
context:
space:
mode:
authorphilipoe <philipp.oettershagen@mavt.ethz.ch>2014-07-31 15:23:30 +0200
committerphilipoe <philipp.oettershagen@mavt.ethz.ch>2014-07-31 15:23:30 +0200
commitfc2e0fad4731ef543be4c3da73de6b670d40d804 (patch)
treeae0c96163859fd2c2fd5c87143def18e2c172800 /src/lib/external_lgpl/tecs/tecs.cpp
parent8dc165b50efca2d9e86f23296a33f38f16c241e0 (diff)
downloadpx4-firmware-fc2e0fad4731ef543be4c3da73de6b670d40d804.tar.gz
px4-firmware-fc2e0fad4731ef543be4c3da73de6b670d40d804.tar.bz2
px4-firmware-fc2e0fad4731ef543be4c3da73de6b670d40d804.zip
TECS: Added separate gain / time constant for the throttle loop to allow independent tuning
Diffstat (limited to 'src/lib/external_lgpl/tecs/tecs.cpp')
-rw-r--r--src/lib/external_lgpl/tecs/tecs.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/external_lgpl/tecs/tecs.cpp b/src/lib/external_lgpl/tecs/tecs.cpp
index 6386e37a0..16c7e5ffa 100644
--- a/src/lib/external_lgpl/tecs/tecs.cpp
+++ b/src/lib/external_lgpl/tecs/tecs.cpp
@@ -298,7 +298,7 @@ void TECS::_update_throttle(float throttle_cruise, const math::Matrix<3,3> &rotM
} else {
// Calculate gain scaler from specific energy error to throttle
- float K_STE2Thr = 1 / (_timeConst * (_STEdot_max - _STEdot_min));
+ float K_STE2Thr = 1 / (_timeConstThrot * (_STEdot_max - _STEdot_min));
// Calculate feed-forward throttle
float ff_throttle = 0;