-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #48 from lsst-ts/develop
Merge develop into main
- Loading branch information
Showing
10 changed files
with
127 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Description: Optimal Integral Controller (OIC) configuration file | ||
# | ||
# Name: OIC | ||
# xref is the reference to the controller, it can be ['x0', 'x00', '0'] | ||
# kp is the proportional gain | ||
# ki is the integral gain defined as ki = kp*T/T_i | ||
# kd is the derivative gain defined as kd = kp*T_d/T | ||
# derivative_filter_coeff is the coefficient of the derivative filter | ||
# setpoint is the setpoint for each degree of freedom (array of 50 elements) | ||
|
||
description: Optimal Integral Controller (OIC) | ||
|
||
name: OIC | ||
xref: x00 | ||
kp: -1.0 | ||
ki: 0 | ||
kd: 0 | ||
derivative_filter_coeff: 1.0 | ||
setpoint: [ | ||
0.0, 0.0, 0.0, 0.0, 0.0, | ||
0.0, 0.0, 0.0, 0.0, 0.0, | ||
0.0, 0.0, 0.0, 0.0, 0.0, | ||
0.0, 0.0, 0.0, 0.0, 0.0, | ||
0.0, 0.0, 0.0, 0.0, 0.0, | ||
0.0, 0.0, 0.0, 0.0, 0.0, | ||
0.0, 0.0, 0.0, 0.0, 0.0, | ||
0.0, 0.0, 0.0, 0.0, 0.0, | ||
0.0, 0.0, 0.0, 0.0, 0.0, | ||
0.0, 0.0, 0.0, 0.0, 0.0 | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Description: Proportional-Integral-Derivative Controller (PID) configuration file | ||
# | ||
# Name: PID | ||
# kp is the proportional gain | ||
# ki is the integral gain defined as ki = kp*T/T_i | ||
# kd is the derivative gain defined as kd = kp*T_d/T | ||
# derivative_filter_coeff is the coefficient of the derivative filter | ||
# setpoint is the setpoint for each degree of freedom (array of 50 elements) | ||
|
||
description: Proportional-Integral-Derivative Controller | ||
|
||
name: PID | ||
kp: 0.9 | ||
ki: 0.0 | ||
kd: 0.0 | ||
derivative_filter_coeff: 1.0 | ||
setpoint: [ | ||
0.0, 0.0, 0.0, 0.0, 0.0, | ||
0.0, 0.0, 0.0, 0.0, 0.0, | ||
0.0, 0.0, 0.0, 0.0, 0.0, | ||
0.0, 0.0, 0.0, 0.0, 0.0, | ||
0.0, 0.0, 0.0, 0.0, 0.0, | ||
0.0, 0.0, 0.0, 0.0, 0.0, | ||
0.0, 0.0, 0.0, 0.0, 0.0, | ||
0.0, 0.0, 0.0, 0.0, 0.0, | ||
0.0, 0.0, 0.0, 0.0, 0.0, | ||
0.0, 0.0, 0.0, 0.0, 0.0 | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -312,6 +312,7 @@ output: | |
rotTelPos: 0.0 | ||
seqnum: 1 | ||
seeing: *rawSeeing | ||
group: 1 | ||
|
||
camera: LsstCam | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters