Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
Grpc
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
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
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
tci-gateway-module
Grpc
Commits
6d4340dd
Commit
6d4340dd
authored
8 years ago
by
Craig Tiller
Browse files
Options
Downloads
Patches
Plain Diff
Add documentation
parent
dd2fa648
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/core/lib/transport/pid_controller.h
+11
-0
11 additions, 0 deletions
src/core/lib/transport/pid_controller.h
with
11 additions
and
0 deletions
src/core/lib/transport/pid_controller.h
+
11
−
0
View file @
6d4340dd
...
@@ -34,6 +34,13 @@
...
@@ -34,6 +34,13 @@
#ifndef GRPC_CORE_LIB_TRANSPORT_PID_CONTROLLER_H
#ifndef GRPC_CORE_LIB_TRANSPORT_PID_CONTROLLER_H
#define GRPC_CORE_LIB_TRANSPORT_PID_CONTROLLER_H
#define GRPC_CORE_LIB_TRANSPORT_PID_CONTROLLER_H
/* \file Simple PID controller.
Implements a proportial-integral-derivative controller.
Used when we want to iteratively control a variable to converge some other
observed value to a 'set-point'.
Gains can be set to adjust sensitivity to current error (p), the integral
of error (i), and the derivative of error (d). */
typedef
struct
{
typedef
struct
{
double
gain_p
;
double
gain_p
;
double
gain_i
;
double
gain_i
;
...
@@ -42,11 +49,15 @@ typedef struct {
...
@@ -42,11 +49,15 @@ typedef struct {
double
error_integral
;
double
error_integral
;
}
grpc_pid_controller
;
}
grpc_pid_controller
;
/** Initialize the controller */
void
grpc_pid_controller_init
(
grpc_pid_controller
*
pid_controller
,
void
grpc_pid_controller_init
(
grpc_pid_controller
*
pid_controller
,
double
gain_p
,
double
gain_i
,
double
gain_d
);
double
gain_p
,
double
gain_i
,
double
gain_d
);
/** Reset the controller: useful when things have changed significantly */
void
grpc_pid_controller_reset
(
grpc_pid_controller
*
pid_controller
);
void
grpc_pid_controller_reset
(
grpc_pid_controller
*
pid_controller
);
/** Update the controller: given a current error estimate, and the time since
the last update, returns a delta to the control value */
double
grpc_pid_controller_update
(
grpc_pid_controller
*
pid_controller
,
double
grpc_pid_controller_update
(
grpc_pid_controller
*
pid_controller
,
double
error
,
double
dt
);
double
error
,
double
dt
);
...
...
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