Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
Control
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
Container 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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software
ArmarX
Skills
Control
Commits
cf14b416
Commit
cf14b416
authored
1 year ago
by
armar-user
Browse files
Options
Downloads
Patches
Plain Diff
comment out the log messages in rt
Signed-off-by:
jianfeng
<
jianfeng.gao@kit.edu
>
parent
8fb6f2f3
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
source/armarx/control/joint_controller/VelocityManipulatingTorque.cpp
+9
-9
9 additions, 9 deletions
...x/control/joint_controller/VelocityManipulatingTorque.cpp
with
9 additions
and
9 deletions
source/armarx/control/joint_controller/VelocityManipulatingTorque.cpp
+
9
−
9
View file @
cf14b416
...
...
@@ -145,7 +145,7 @@ namespace armarx::control::joint_controller
pid
.
maxDerivation
=
30
;
// avoids rapid oscillation of pid controller
pid
.
setMaxControlValue
(
torqueConfigData
->
pid_max_value
);
ARMARX_INFO
<<
"PID max value: "
<<
torqueConfigData
->
pid_max_value
;
//
ARMARX_INFO << "PID max value: " << torqueConfigData->pid_max_value;
targetTorque
=
math
::
MathUtils
::
LimitTo
(
targetTorque
,
torqueConfigData
->
maxTargetTorque
);
double
decay
=
torqueConfigData
->
decay
;
...
...
@@ -219,14 +219,14 @@ namespace armarx::control::joint_controller
double
directControlCurrent
=
0.
;
//gravity * torqueToCurrentFactor * 1000;
ARMARX_RT_LOGF_INFO
(
"direct-control: %.3f, currentTargetVelocity: %.3f, current Vel: %.3f, g-torque: %.2f, actual torque: %.2f, "
"torqueDiff: %.3f, target torque: %.2f, acc: %.3f, target current: %.3f, Kp: %.1f, Ki: %.1f, cur Integral: %.4f, "
"Kd: %0.2f, pid MaxVal: %.2f, a-gain: %.2f, current jerk: %.2f, deadZone: %.1f, decay: %.4f"
,
directControlCurrent
,
currentTargetVelocity
,
actualVelocity
,
gravity
,
actualTorque
,
gravityCompensatedTorque
,
targetTorque
,
acceleration
,
resultingTargetCurrent
,
pid
.
Kp
,
pid
.
Ki
,
pid
.
integral
,
pid
.
Kd
,
pid
.
maxControlValue
,
accelerationGain
,
lastJerk
,
deadZone
,
decay
).
deactivateSpam
(
0.3
);
//
ARMARX_RT_LOGF_INFO("direct-control: %.3f, currentTargetVelocity: %.3f, current Vel: %.3f, g-torque: %.2f, actual torque: %.2f, "
//
"torqueDiff: %.3f, target torque: %.2f, acc: %.3f, target current: %.3f, Kp: %.1f, Ki: %.1f, cur Integral: %.4f, "
//
"Kd: %0.2f, pid MaxVal: %.2f, a-gain: %.2f, current jerk: %.2f, deadZone: %.1f, decay: %.4f"
//
,
//
directControlCurrent, currentTargetVelocity, actualVelocity, gravity, actualTorque,
//
gravityCompensatedTorque, targetTorque, acceleration,
//
resultingTargetCurrent, pid.Kp, pid.Ki, pid.integral, pid.Kd, pid.maxControlValue,
//
accelerationGain, lastJerk, deadZone, decay).deactivateSpam(0.3);
// calculate a current that protects the joint limits
auto
jointLimitProtectionCurrent
=
...
...
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