Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
Firmware
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Alberto Ruiz Garcia
Firmware
Commits
ddab0ccd
Commit
ddab0ccd
authored
6 years ago
by
bresch
Committed by
Beat Küng
6 years ago
Browse files
Options
Downloads
Patches
Plain Diff
VelocitySmoothing - Protect against division by zero and sqrt of a negative number
parent
e4967a95
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/lib/FlightTasks/tasks/Utility/VelocitySmoothing.cpp
+14
-3
14 additions, 3 deletions
src/lib/FlightTasks/tasks/Utility/VelocitySmoothing.cpp
with
14 additions
and
3 deletions
src/lib/FlightTasks/tasks/Utility/VelocitySmoothing.cpp
+
14
−
3
View file @
ddab0ccd
...
...
@@ -112,13 +112,18 @@ float VelocitySmoothing::computeT1(float T123, float accel_prev, float vel_prev,
float
delta
=
T123
*
T123
*
max_jerk
*
max_jerk
+
2.
f
*
T123
*
accel_prev
*
max_jerk
-
accel_prev
*
accel_prev
+
4.
f
*
max_jerk
*
(
vel_prev
-
vel_setpoint
);
if
(
delta
<
0.
f
)
{
// Solution is not real
return
0.
f
;
}
float
sqrt_delta
=
sqrtf
(
delta
);
float
denominator_inv
=
1.
f
/
(
2.
f
*
a
);
float
T1_plus
=
math
::
max
((
-
b
+
sqrt_delta
)
*
denominator_inv
,
0.
f
);
float
T1_minus
=
math
::
max
((
-
b
-
sqrt_delta
)
*
denominator_inv
,
0.
f
);
float
T3_plus
=
computeT3
(
T1_plus
,
accel_prev
,
max_jerk
)
;
float
T3_minus
=
computeT3
(
T1_minus
,
accel_prev
,
max_jerk
)
;
float
T3_plus
=
accel_prev
/
max_jerk
+
T1_plus
;
float
T3_minus
=
accel_prev
/
max_jerk
+
T1_minus
;
float
T13_plus
=
T1_plus
+
T3_plus
;
float
T13_minus
=
T1_minus
+
T3_minus
;
...
...
@@ -147,7 +152,13 @@ float VelocitySmoothing::computeT2(float T1, float T3, float accel_prev, float v
{
float
f
=
accel_prev
*
T1
+
max_jerk
*
T1
*
T1
*
0.5
f
+
vel_prev
+
accel_prev
*
T3
+
max_jerk
*
T1
*
T3
-
max_jerk
*
T3
*
T3
*
0.5
f
;
float
T2
=
(
vel_setpoint
-
f
)
/
(
accel_prev
+
max_jerk
*
T1
);
float
T2
=
0.
f
;
float
den
=
accel_prev
+
max_jerk
*
T1
;
if
(
math
::
abs_t
(
den
)
>
FLT_EPSILON
)
{
T2
=
(
vel_setpoint
-
f
)
/
den
;
}
if
(
T2
<
_dt
)
{
T2
=
0.
f
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment