Skip to content

Commit 5f93087

Browse files
committed
- Added Eigen
- Added covariance condition number - minor other changes
1 parent b212aa8 commit 5f93087

File tree

310 files changed

+116467
-29
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

310 files changed

+116467
-29
lines changed

config/QuadEstimatorEKF.txt

+7-5
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,13 @@ InitState = 0, 0, -1, 0, 0, 0, 0
33
InitStdDevs = .1, .1, .3, .1, .1, .3, .05
44

55
# Process noise model
6-
QPosXYStd = .003
7-
QPosZStd = .003
8-
QVelXYStd = .001
9-
QVelZStd = .003
10-
QYawStd = .001
6+
# note that the process covariance matrix is diag(pow(QStd,2))*dtIMU
7+
8+
QPosXYStd = .05
9+
QPosZStd = .05
10+
QVelXYStd = .05
11+
QVelZStd = .1
12+
QYawStd = .1
1113

1214
# GPS measurement std deviations
1315
GPSPosXYStd = 1

config/SimulatedSensors.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ dt = .002
77

88
[SimBaro]
99
Std = .1
10+
#dt = .01
1011
dt = .01
1112

1213
[SimMag]
@@ -15,6 +16,6 @@ dt = .01
1516

1617
[SimGPS]
1718
PosStd = 1, 1, 3
18-
PosRandomWalkStd = .1, .1, .1
19+
#PosRandomWalkStd = .1, .1, .1
1920
VelStd = .1, .1, .3
2021
dt = .1

config/traj/Square.txt

+19-19
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
# time, x, y, z, vx, vy, vz, yaw
2-
1.0, 0, 0, -1, 0, 0, 0, 0
3-
2.0, 3, 0, -1, 0, 0, 0, 0
2+
5.0, 0, 0, -1, 0, 0, 0, 0
3+
6.0, 3, 0, -1, 0, 0, 0, 0
44

5-
3.0, 3, 0, -1, 0, 0, 0, 1.57
6-
4.0, 3, 3, -1, 0, 0, 0, 1.57
7-
5.0, 3, 3, -1, 0, 0, 0, 3.14
8-
6.0, -3, 3, -1, 0, 0, 0, 3.14
9-
7.0, -3, 3, -1, 0, 0, 0, -1.57
10-
8.0, -3, -3, -1, 0, 0, 0, -1.57
11-
9.0, -3, -3, -1, 0, 0, 0, 0
12-
10.0, 3, -3, -1, 0, 0, 0, 0
13-
11.0, 3, -3, -1, 0, 0, 0, 1.57
5+
7.0, 3, 0, -1, 0, 0, 0, 1.57
6+
8.0, 3, 3, -1, 0, 0, 0, 1.57
7+
9.0, 3, 3, -1, 0, 0, 0, 3.14
8+
10.0, -3, 3, -1, 0, 0, 0, 3.14
9+
11.0, -3, 3, -1, 0, 0, 0, -1.57
10+
12.0, -3, -3, -1, 0, 0, 0, -1.57
11+
13.0, -3, -3, -1, 0, 0, 0, 0
12+
14.0, 3, -3, -1, 0, 0, 0, 0
13+
15.0, 3, -3, -1, 0, 0, 0, 1.57
1414

15-
12.0, 3, 3, -1, 0, 0, 0, 1.57
16-
13.0, 3, 3, -1, 0, 0, 0, 3.14
17-
14.0, -3, 3, -1, 0, 0, 0, 3.14
18-
15.0, -3, 3, -1, 0, 0, 0, -1.57
19-
16.0, -3, -3, -1, 0, 0, 0, -1.57
20-
17.0, -3, -3, -1, 0, 0, 0, 0
21-
18.0, 3, -3, -1, 0, 0, 0, 0
22-
19.0, 3, -3, -1, 0, 0, 0, 1.57
15+
16.0, 3, 3, -1, 0, 0, 0, 1.57
16+
17.0, 3, 3, -1, 0, 0, 0, 3.14
17+
18.0, -3, 3, -1, 0, 0, 0, 3.14
18+
19.0, -3, 3, -1, 0, 0, 0, -1.57
19+
20.0, -3, -3, -1, 0, 0, 0, -1.57
20+
21.0, -3, -3, -1, 0, 0, 0, 0
21+
22.0, 3, -3, -1, 0, 0, 0, 0
22+
23.0, 3, -3, -1, 0, 0, 0, 1.57

lib/Eigen/.hg_archival.txt

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
repo: 8a21fd850624c931e448cbcfb38168cb2717c790
2+
node: 5a0156e40feb7c4136680b493c6e433d91a6f355
3+
branch: 3.3
4+
tag: 3.3.4

lib/Eigen/CMakeLists.txt

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
include(RegexUtils)
2+
test_escape_string_as_regex()
3+
4+
file(GLOB Eigen_directory_files "*")
5+
6+
escape_string_as_regex(ESCAPED_CMAKE_CURRENT_SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}")
7+
8+
foreach(f ${Eigen_directory_files})
9+
if(NOT f MATCHES "\\.txt" AND NOT f MATCHES "${ESCAPED_CMAKE_CURRENT_SOURCE_DIR}/[.].+" AND NOT f MATCHES "${ESCAPED_CMAKE_CURRENT_SOURCE_DIR}/src")
10+
list(APPEND Eigen_directory_files_to_install ${f})
11+
endif()
12+
endforeach(f ${Eigen_directory_files})
13+
14+
install(FILES
15+
${Eigen_directory_files_to_install}
16+
DESTINATION ${INCLUDE_INSTALL_DIR}/Eigen COMPONENT Devel
17+
)
18+
19+
install(DIRECTORY src DESTINATION ${INCLUDE_INSTALL_DIR}/Eigen COMPONENT Devel FILES_MATCHING PATTERN "*.h")

0 commit comments

Comments
 (0)