mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-06-30 11:02:19 +08:00
662 lines
26 KiB
C++
662 lines
26 KiB
C++
#include "car.h"
|
|
|
|
namespace {
|
|
#define DIM 9
|
|
#define EDIM 9
|
|
#define MEDIM 9
|
|
typedef void (*Hfun)(double *, double *, double *);
|
|
|
|
double mass;
|
|
|
|
void set_mass(double x){ mass = x;}
|
|
|
|
double rotational_inertia;
|
|
|
|
void set_rotational_inertia(double x){ rotational_inertia = x;}
|
|
|
|
double center_to_front;
|
|
|
|
void set_center_to_front(double x){ center_to_front = x;}
|
|
|
|
double center_to_rear;
|
|
|
|
void set_center_to_rear(double x){ center_to_rear = x;}
|
|
|
|
double stiffness_front;
|
|
|
|
void set_stiffness_front(double x){ stiffness_front = x;}
|
|
|
|
double stiffness_rear;
|
|
|
|
void set_stiffness_rear(double x){ stiffness_rear = x;}
|
|
const static double MAHA_THRESH_25 = 3.8414588206941227;
|
|
const static double MAHA_THRESH_24 = 5.991464547107981;
|
|
const static double MAHA_THRESH_30 = 3.8414588206941227;
|
|
const static double MAHA_THRESH_26 = 3.8414588206941227;
|
|
const static double MAHA_THRESH_27 = 3.8414588206941227;
|
|
const static double MAHA_THRESH_29 = 3.8414588206941227;
|
|
const static double MAHA_THRESH_28 = 3.8414588206941227;
|
|
const static double MAHA_THRESH_31 = 3.8414588206941227;
|
|
|
|
/******************************************************************************
|
|
* Code generated with SymPy 1.14.0 *
|
|
* *
|
|
* See http://www.sympy.org/ for more information. *
|
|
* *
|
|
* This file is part of 'ekf' *
|
|
******************************************************************************/
|
|
void err_fun(double *nom_x, double *delta_x, double *out_700264796655131929) {
|
|
out_700264796655131929[0] = delta_x[0] + nom_x[0];
|
|
out_700264796655131929[1] = delta_x[1] + nom_x[1];
|
|
out_700264796655131929[2] = delta_x[2] + nom_x[2];
|
|
out_700264796655131929[3] = delta_x[3] + nom_x[3];
|
|
out_700264796655131929[4] = delta_x[4] + nom_x[4];
|
|
out_700264796655131929[5] = delta_x[5] + nom_x[5];
|
|
out_700264796655131929[6] = delta_x[6] + nom_x[6];
|
|
out_700264796655131929[7] = delta_x[7] + nom_x[7];
|
|
out_700264796655131929[8] = delta_x[8] + nom_x[8];
|
|
}
|
|
void inv_err_fun(double *nom_x, double *true_x, double *out_107082048498982835) {
|
|
out_107082048498982835[0] = -nom_x[0] + true_x[0];
|
|
out_107082048498982835[1] = -nom_x[1] + true_x[1];
|
|
out_107082048498982835[2] = -nom_x[2] + true_x[2];
|
|
out_107082048498982835[3] = -nom_x[3] + true_x[3];
|
|
out_107082048498982835[4] = -nom_x[4] + true_x[4];
|
|
out_107082048498982835[5] = -nom_x[5] + true_x[5];
|
|
out_107082048498982835[6] = -nom_x[6] + true_x[6];
|
|
out_107082048498982835[7] = -nom_x[7] + true_x[7];
|
|
out_107082048498982835[8] = -nom_x[8] + true_x[8];
|
|
}
|
|
void H_mod_fun(double *state, double *out_7423992576013844798) {
|
|
out_7423992576013844798[0] = 1.0;
|
|
out_7423992576013844798[1] = 0.0;
|
|
out_7423992576013844798[2] = 0.0;
|
|
out_7423992576013844798[3] = 0.0;
|
|
out_7423992576013844798[4] = 0.0;
|
|
out_7423992576013844798[5] = 0.0;
|
|
out_7423992576013844798[6] = 0.0;
|
|
out_7423992576013844798[7] = 0.0;
|
|
out_7423992576013844798[8] = 0.0;
|
|
out_7423992576013844798[9] = 0.0;
|
|
out_7423992576013844798[10] = 1.0;
|
|
out_7423992576013844798[11] = 0.0;
|
|
out_7423992576013844798[12] = 0.0;
|
|
out_7423992576013844798[13] = 0.0;
|
|
out_7423992576013844798[14] = 0.0;
|
|
out_7423992576013844798[15] = 0.0;
|
|
out_7423992576013844798[16] = 0.0;
|
|
out_7423992576013844798[17] = 0.0;
|
|
out_7423992576013844798[18] = 0.0;
|
|
out_7423992576013844798[19] = 0.0;
|
|
out_7423992576013844798[20] = 1.0;
|
|
out_7423992576013844798[21] = 0.0;
|
|
out_7423992576013844798[22] = 0.0;
|
|
out_7423992576013844798[23] = 0.0;
|
|
out_7423992576013844798[24] = 0.0;
|
|
out_7423992576013844798[25] = 0.0;
|
|
out_7423992576013844798[26] = 0.0;
|
|
out_7423992576013844798[27] = 0.0;
|
|
out_7423992576013844798[28] = 0.0;
|
|
out_7423992576013844798[29] = 0.0;
|
|
out_7423992576013844798[30] = 1.0;
|
|
out_7423992576013844798[31] = 0.0;
|
|
out_7423992576013844798[32] = 0.0;
|
|
out_7423992576013844798[33] = 0.0;
|
|
out_7423992576013844798[34] = 0.0;
|
|
out_7423992576013844798[35] = 0.0;
|
|
out_7423992576013844798[36] = 0.0;
|
|
out_7423992576013844798[37] = 0.0;
|
|
out_7423992576013844798[38] = 0.0;
|
|
out_7423992576013844798[39] = 0.0;
|
|
out_7423992576013844798[40] = 1.0;
|
|
out_7423992576013844798[41] = 0.0;
|
|
out_7423992576013844798[42] = 0.0;
|
|
out_7423992576013844798[43] = 0.0;
|
|
out_7423992576013844798[44] = 0.0;
|
|
out_7423992576013844798[45] = 0.0;
|
|
out_7423992576013844798[46] = 0.0;
|
|
out_7423992576013844798[47] = 0.0;
|
|
out_7423992576013844798[48] = 0.0;
|
|
out_7423992576013844798[49] = 0.0;
|
|
out_7423992576013844798[50] = 1.0;
|
|
out_7423992576013844798[51] = 0.0;
|
|
out_7423992576013844798[52] = 0.0;
|
|
out_7423992576013844798[53] = 0.0;
|
|
out_7423992576013844798[54] = 0.0;
|
|
out_7423992576013844798[55] = 0.0;
|
|
out_7423992576013844798[56] = 0.0;
|
|
out_7423992576013844798[57] = 0.0;
|
|
out_7423992576013844798[58] = 0.0;
|
|
out_7423992576013844798[59] = 0.0;
|
|
out_7423992576013844798[60] = 1.0;
|
|
out_7423992576013844798[61] = 0.0;
|
|
out_7423992576013844798[62] = 0.0;
|
|
out_7423992576013844798[63] = 0.0;
|
|
out_7423992576013844798[64] = 0.0;
|
|
out_7423992576013844798[65] = 0.0;
|
|
out_7423992576013844798[66] = 0.0;
|
|
out_7423992576013844798[67] = 0.0;
|
|
out_7423992576013844798[68] = 0.0;
|
|
out_7423992576013844798[69] = 0.0;
|
|
out_7423992576013844798[70] = 1.0;
|
|
out_7423992576013844798[71] = 0.0;
|
|
out_7423992576013844798[72] = 0.0;
|
|
out_7423992576013844798[73] = 0.0;
|
|
out_7423992576013844798[74] = 0.0;
|
|
out_7423992576013844798[75] = 0.0;
|
|
out_7423992576013844798[76] = 0.0;
|
|
out_7423992576013844798[77] = 0.0;
|
|
out_7423992576013844798[78] = 0.0;
|
|
out_7423992576013844798[79] = 0.0;
|
|
out_7423992576013844798[80] = 1.0;
|
|
}
|
|
void f_fun(double *state, double dt, double *out_1496483947477544324) {
|
|
out_1496483947477544324[0] = state[0];
|
|
out_1496483947477544324[1] = state[1];
|
|
out_1496483947477544324[2] = state[2];
|
|
out_1496483947477544324[3] = state[3];
|
|
out_1496483947477544324[4] = state[4];
|
|
out_1496483947477544324[5] = dt*((-state[4] + (-center_to_front*stiffness_front*state[0] + center_to_rear*stiffness_rear*state[0])/(mass*state[4]))*state[6] - 9.8100000000000005*state[8] + stiffness_front*(-state[2] - state[3] + state[7])*state[0]/(mass*state[1]) + (-stiffness_front*state[0] - stiffness_rear*state[0])*state[5]/(mass*state[4])) + state[5];
|
|
out_1496483947477544324[6] = dt*(center_to_front*stiffness_front*(-state[2] - state[3] + state[7])*state[0]/(rotational_inertia*state[1]) + (-center_to_front*stiffness_front*state[0] + center_to_rear*stiffness_rear*state[0])*state[5]/(rotational_inertia*state[4]) + (-pow(center_to_front, 2)*stiffness_front*state[0] - pow(center_to_rear, 2)*stiffness_rear*state[0])*state[6]/(rotational_inertia*state[4])) + state[6];
|
|
out_1496483947477544324[7] = state[7];
|
|
out_1496483947477544324[8] = state[8];
|
|
}
|
|
void F_fun(double *state, double dt, double *out_5799168133787523639) {
|
|
out_5799168133787523639[0] = 1;
|
|
out_5799168133787523639[1] = 0;
|
|
out_5799168133787523639[2] = 0;
|
|
out_5799168133787523639[3] = 0;
|
|
out_5799168133787523639[4] = 0;
|
|
out_5799168133787523639[5] = 0;
|
|
out_5799168133787523639[6] = 0;
|
|
out_5799168133787523639[7] = 0;
|
|
out_5799168133787523639[8] = 0;
|
|
out_5799168133787523639[9] = 0;
|
|
out_5799168133787523639[10] = 1;
|
|
out_5799168133787523639[11] = 0;
|
|
out_5799168133787523639[12] = 0;
|
|
out_5799168133787523639[13] = 0;
|
|
out_5799168133787523639[14] = 0;
|
|
out_5799168133787523639[15] = 0;
|
|
out_5799168133787523639[16] = 0;
|
|
out_5799168133787523639[17] = 0;
|
|
out_5799168133787523639[18] = 0;
|
|
out_5799168133787523639[19] = 0;
|
|
out_5799168133787523639[20] = 1;
|
|
out_5799168133787523639[21] = 0;
|
|
out_5799168133787523639[22] = 0;
|
|
out_5799168133787523639[23] = 0;
|
|
out_5799168133787523639[24] = 0;
|
|
out_5799168133787523639[25] = 0;
|
|
out_5799168133787523639[26] = 0;
|
|
out_5799168133787523639[27] = 0;
|
|
out_5799168133787523639[28] = 0;
|
|
out_5799168133787523639[29] = 0;
|
|
out_5799168133787523639[30] = 1;
|
|
out_5799168133787523639[31] = 0;
|
|
out_5799168133787523639[32] = 0;
|
|
out_5799168133787523639[33] = 0;
|
|
out_5799168133787523639[34] = 0;
|
|
out_5799168133787523639[35] = 0;
|
|
out_5799168133787523639[36] = 0;
|
|
out_5799168133787523639[37] = 0;
|
|
out_5799168133787523639[38] = 0;
|
|
out_5799168133787523639[39] = 0;
|
|
out_5799168133787523639[40] = 1;
|
|
out_5799168133787523639[41] = 0;
|
|
out_5799168133787523639[42] = 0;
|
|
out_5799168133787523639[43] = 0;
|
|
out_5799168133787523639[44] = 0;
|
|
out_5799168133787523639[45] = dt*(stiffness_front*(-state[2] - state[3] + state[7])/(mass*state[1]) + (-stiffness_front - stiffness_rear)*state[5]/(mass*state[4]) + (-center_to_front*stiffness_front + center_to_rear*stiffness_rear)*state[6]/(mass*state[4]));
|
|
out_5799168133787523639[46] = -dt*stiffness_front*(-state[2] - state[3] + state[7])*state[0]/(mass*pow(state[1], 2));
|
|
out_5799168133787523639[47] = -dt*stiffness_front*state[0]/(mass*state[1]);
|
|
out_5799168133787523639[48] = -dt*stiffness_front*state[0]/(mass*state[1]);
|
|
out_5799168133787523639[49] = dt*((-1 - (-center_to_front*stiffness_front*state[0] + center_to_rear*stiffness_rear*state[0])/(mass*pow(state[4], 2)))*state[6] - (-stiffness_front*state[0] - stiffness_rear*state[0])*state[5]/(mass*pow(state[4], 2)));
|
|
out_5799168133787523639[50] = dt*(-stiffness_front*state[0] - stiffness_rear*state[0])/(mass*state[4]) + 1;
|
|
out_5799168133787523639[51] = dt*(-state[4] + (-center_to_front*stiffness_front*state[0] + center_to_rear*stiffness_rear*state[0])/(mass*state[4]));
|
|
out_5799168133787523639[52] = dt*stiffness_front*state[0]/(mass*state[1]);
|
|
out_5799168133787523639[53] = -9.8100000000000005*dt;
|
|
out_5799168133787523639[54] = dt*(center_to_front*stiffness_front*(-state[2] - state[3] + state[7])/(rotational_inertia*state[1]) + (-center_to_front*stiffness_front + center_to_rear*stiffness_rear)*state[5]/(rotational_inertia*state[4]) + (-pow(center_to_front, 2)*stiffness_front - pow(center_to_rear, 2)*stiffness_rear)*state[6]/(rotational_inertia*state[4]));
|
|
out_5799168133787523639[55] = -center_to_front*dt*stiffness_front*(-state[2] - state[3] + state[7])*state[0]/(rotational_inertia*pow(state[1], 2));
|
|
out_5799168133787523639[56] = -center_to_front*dt*stiffness_front*state[0]/(rotational_inertia*state[1]);
|
|
out_5799168133787523639[57] = -center_to_front*dt*stiffness_front*state[0]/(rotational_inertia*state[1]);
|
|
out_5799168133787523639[58] = dt*(-(-center_to_front*stiffness_front*state[0] + center_to_rear*stiffness_rear*state[0])*state[5]/(rotational_inertia*pow(state[4], 2)) - (-pow(center_to_front, 2)*stiffness_front*state[0] - pow(center_to_rear, 2)*stiffness_rear*state[0])*state[6]/(rotational_inertia*pow(state[4], 2)));
|
|
out_5799168133787523639[59] = dt*(-center_to_front*stiffness_front*state[0] + center_to_rear*stiffness_rear*state[0])/(rotational_inertia*state[4]);
|
|
out_5799168133787523639[60] = dt*(-pow(center_to_front, 2)*stiffness_front*state[0] - pow(center_to_rear, 2)*stiffness_rear*state[0])/(rotational_inertia*state[4]) + 1;
|
|
out_5799168133787523639[61] = center_to_front*dt*stiffness_front*state[0]/(rotational_inertia*state[1]);
|
|
out_5799168133787523639[62] = 0;
|
|
out_5799168133787523639[63] = 0;
|
|
out_5799168133787523639[64] = 0;
|
|
out_5799168133787523639[65] = 0;
|
|
out_5799168133787523639[66] = 0;
|
|
out_5799168133787523639[67] = 0;
|
|
out_5799168133787523639[68] = 0;
|
|
out_5799168133787523639[69] = 0;
|
|
out_5799168133787523639[70] = 1;
|
|
out_5799168133787523639[71] = 0;
|
|
out_5799168133787523639[72] = 0;
|
|
out_5799168133787523639[73] = 0;
|
|
out_5799168133787523639[74] = 0;
|
|
out_5799168133787523639[75] = 0;
|
|
out_5799168133787523639[76] = 0;
|
|
out_5799168133787523639[77] = 0;
|
|
out_5799168133787523639[78] = 0;
|
|
out_5799168133787523639[79] = 0;
|
|
out_5799168133787523639[80] = 1;
|
|
}
|
|
void h_25(double *state, double *unused, double *out_4510188062326144511) {
|
|
out_4510188062326144511[0] = state[6];
|
|
}
|
|
void H_25(double *state, double *unused, double *out_1340165284045423799) {
|
|
out_1340165284045423799[0] = 0;
|
|
out_1340165284045423799[1] = 0;
|
|
out_1340165284045423799[2] = 0;
|
|
out_1340165284045423799[3] = 0;
|
|
out_1340165284045423799[4] = 0;
|
|
out_1340165284045423799[5] = 0;
|
|
out_1340165284045423799[6] = 1;
|
|
out_1340165284045423799[7] = 0;
|
|
out_1340165284045423799[8] = 0;
|
|
}
|
|
void h_24(double *state, double *unused, double *out_9153409952546890921) {
|
|
out_9153409952546890921[0] = state[4];
|
|
out_9153409952546890921[1] = state[5];
|
|
}
|
|
void H_24(double *state, double *unused, double *out_4898090882847746935) {
|
|
out_4898090882847746935[0] = 0;
|
|
out_4898090882847746935[1] = 0;
|
|
out_4898090882847746935[2] = 0;
|
|
out_4898090882847746935[3] = 0;
|
|
out_4898090882847746935[4] = 1;
|
|
out_4898090882847746935[5] = 0;
|
|
out_4898090882847746935[6] = 0;
|
|
out_4898090882847746935[7] = 0;
|
|
out_4898090882847746935[8] = 0;
|
|
out_4898090882847746935[9] = 0;
|
|
out_4898090882847746935[10] = 0;
|
|
out_4898090882847746935[11] = 0;
|
|
out_4898090882847746935[12] = 0;
|
|
out_4898090882847746935[13] = 0;
|
|
out_4898090882847746935[14] = 1;
|
|
out_4898090882847746935[15] = 0;
|
|
out_4898090882847746935[16] = 0;
|
|
out_4898090882847746935[17] = 0;
|
|
}
|
|
void h_30(double *state, double *unused, double *out_3253077194494527930) {
|
|
out_3253077194494527930[0] = state[4];
|
|
}
|
|
void H_30(double *state, double *unused, double *out_3858498242552672426) {
|
|
out_3858498242552672426[0] = 0;
|
|
out_3858498242552672426[1] = 0;
|
|
out_3858498242552672426[2] = 0;
|
|
out_3858498242552672426[3] = 0;
|
|
out_3858498242552672426[4] = 1;
|
|
out_3858498242552672426[5] = 0;
|
|
out_3858498242552672426[6] = 0;
|
|
out_3858498242552672426[7] = 0;
|
|
out_3858498242552672426[8] = 0;
|
|
}
|
|
void h_26(double *state, double *unused, double *out_3957832291759693581) {
|
|
out_3957832291759693581[0] = state[7];
|
|
}
|
|
void H_26(double *state, double *unused, double *out_2401338034828632425) {
|
|
out_2401338034828632425[0] = 0;
|
|
out_2401338034828632425[1] = 0;
|
|
out_2401338034828632425[2] = 0;
|
|
out_2401338034828632425[3] = 0;
|
|
out_2401338034828632425[4] = 0;
|
|
out_2401338034828632425[5] = 0;
|
|
out_2401338034828632425[6] = 0;
|
|
out_2401338034828632425[7] = 1;
|
|
out_2401338034828632425[8] = 0;
|
|
}
|
|
void h_27(double *state, double *unused, double *out_8058270523824692017) {
|
|
out_8058270523824692017[0] = state[3];
|
|
}
|
|
void H_27(double *state, double *unused, double *out_1683734930752247515) {
|
|
out_1683734930752247515[0] = 0;
|
|
out_1683734930752247515[1] = 0;
|
|
out_1683734930752247515[2] = 0;
|
|
out_1683734930752247515[3] = 1;
|
|
out_1683734930752247515[4] = 0;
|
|
out_1683734930752247515[5] = 0;
|
|
out_1683734930752247515[6] = 0;
|
|
out_1683734930752247515[7] = 0;
|
|
out_1683734930752247515[8] = 0;
|
|
}
|
|
void h_29(double *state, double *unused, double *out_4420820995570669667) {
|
|
out_4420820995570669667[0] = state[1];
|
|
}
|
|
void H_29(double *state, double *unused, double *out_4368729586867064610) {
|
|
out_4368729586867064610[0] = 0;
|
|
out_4368729586867064610[1] = 1;
|
|
out_4368729586867064610[2] = 0;
|
|
out_4368729586867064610[3] = 0;
|
|
out_4368729586867064610[4] = 0;
|
|
out_4368729586867064610[5] = 0;
|
|
out_4368729586867064610[6] = 0;
|
|
out_4368729586867064610[7] = 0;
|
|
out_4368729586867064610[8] = 0;
|
|
}
|
|
void h_28(double *state, double *unused, double *out_7076186430489393905) {
|
|
out_7076186430489393905[0] = state[0];
|
|
}
|
|
void H_28(double *state, double *unused, double *out_713669430202465964) {
|
|
out_713669430202465964[0] = 1;
|
|
out_713669430202465964[1] = 0;
|
|
out_713669430202465964[2] = 0;
|
|
out_713669430202465964[3] = 0;
|
|
out_713669430202465964[4] = 0;
|
|
out_713669430202465964[5] = 0;
|
|
out_713669430202465964[6] = 0;
|
|
out_713669430202465964[7] = 0;
|
|
out_713669430202465964[8] = 0;
|
|
}
|
|
void h_31(double *state, double *unused, double *out_8265185813124548370) {
|
|
out_8265185813124548370[0] = state[8];
|
|
}
|
|
void H_31(double *state, double *unused, double *out_3027546137061983901) {
|
|
out_3027546137061983901[0] = 0;
|
|
out_3027546137061983901[1] = 0;
|
|
out_3027546137061983901[2] = 0;
|
|
out_3027546137061983901[3] = 0;
|
|
out_3027546137061983901[4] = 0;
|
|
out_3027546137061983901[5] = 0;
|
|
out_3027546137061983901[6] = 0;
|
|
out_3027546137061983901[7] = 0;
|
|
out_3027546137061983901[8] = 1;
|
|
}
|
|
#include <eigen3/Eigen/Dense>
|
|
#include <iostream>
|
|
|
|
typedef Eigen::Matrix<double, DIM, DIM, Eigen::RowMajor> DDM;
|
|
typedef Eigen::Matrix<double, EDIM, EDIM, Eigen::RowMajor> EEM;
|
|
typedef Eigen::Matrix<double, DIM, EDIM, Eigen::RowMajor> DEM;
|
|
|
|
void predict(double *in_x, double *in_P, double *in_Q, double dt) {
|
|
typedef Eigen::Matrix<double, MEDIM, MEDIM, Eigen::RowMajor> RRM;
|
|
|
|
double nx[DIM] = {0};
|
|
double in_F[EDIM*EDIM] = {0};
|
|
|
|
// functions from sympy
|
|
f_fun(in_x, dt, nx);
|
|
F_fun(in_x, dt, in_F);
|
|
|
|
|
|
EEM F(in_F);
|
|
EEM P(in_P);
|
|
EEM Q(in_Q);
|
|
|
|
RRM F_main = F.topLeftCorner(MEDIM, MEDIM);
|
|
P.topLeftCorner(MEDIM, MEDIM) = (F_main * P.topLeftCorner(MEDIM, MEDIM)) * F_main.transpose();
|
|
P.topRightCorner(MEDIM, EDIM - MEDIM) = F_main * P.topRightCorner(MEDIM, EDIM - MEDIM);
|
|
P.bottomLeftCorner(EDIM - MEDIM, MEDIM) = P.bottomLeftCorner(EDIM - MEDIM, MEDIM) * F_main.transpose();
|
|
|
|
P = P + dt*Q;
|
|
|
|
// copy out state
|
|
memcpy(in_x, nx, DIM * sizeof(double));
|
|
memcpy(in_P, P.data(), EDIM * EDIM * sizeof(double));
|
|
}
|
|
|
|
// note: extra_args dim only correct when null space projecting
|
|
// otherwise 1
|
|
template <int ZDIM, int EADIM, bool MAHA_TEST>
|
|
void update(double *in_x, double *in_P, Hfun h_fun, Hfun H_fun, Hfun Hea_fun, double *in_z, double *in_R, double *in_ea, double MAHA_THRESHOLD) {
|
|
typedef Eigen::Matrix<double, ZDIM, ZDIM, Eigen::RowMajor> ZZM;
|
|
typedef Eigen::Matrix<double, ZDIM, DIM, Eigen::RowMajor> ZDM;
|
|
typedef Eigen::Matrix<double, Eigen::Dynamic, EDIM, Eigen::RowMajor> XEM;
|
|
//typedef Eigen::Matrix<double, EDIM, ZDIM, Eigen::RowMajor> EZM;
|
|
typedef Eigen::Matrix<double, Eigen::Dynamic, 1> X1M;
|
|
typedef Eigen::Matrix<double, Eigen::Dynamic, Eigen::Dynamic, Eigen::RowMajor> XXM;
|
|
|
|
double in_hx[ZDIM] = {0};
|
|
double in_H[ZDIM * DIM] = {0};
|
|
double in_H_mod[EDIM * DIM] = {0};
|
|
double delta_x[EDIM] = {0};
|
|
double x_new[DIM] = {0};
|
|
|
|
|
|
// state x, P
|
|
Eigen::Matrix<double, ZDIM, 1> z(in_z);
|
|
EEM P(in_P);
|
|
ZZM pre_R(in_R);
|
|
|
|
// functions from sympy
|
|
h_fun(in_x, in_ea, in_hx);
|
|
H_fun(in_x, in_ea, in_H);
|
|
ZDM pre_H(in_H);
|
|
|
|
// get y (y = z - hx)
|
|
Eigen::Matrix<double, ZDIM, 1> pre_y(in_hx); pre_y = z - pre_y;
|
|
X1M y; XXM H; XXM R;
|
|
if (Hea_fun){
|
|
typedef Eigen::Matrix<double, ZDIM, EADIM, Eigen::RowMajor> ZAM;
|
|
double in_Hea[ZDIM * EADIM] = {0};
|
|
Hea_fun(in_x, in_ea, in_Hea);
|
|
ZAM Hea(in_Hea);
|
|
XXM A = Hea.transpose().fullPivLu().kernel();
|
|
|
|
|
|
y = A.transpose() * pre_y;
|
|
H = A.transpose() * pre_H;
|
|
R = A.transpose() * pre_R * A;
|
|
} else {
|
|
y = pre_y;
|
|
H = pre_H;
|
|
R = pre_R;
|
|
}
|
|
// get modified H
|
|
H_mod_fun(in_x, in_H_mod);
|
|
DEM H_mod(in_H_mod);
|
|
XEM H_err = H * H_mod;
|
|
|
|
// Do mahalobis distance test
|
|
if (MAHA_TEST){
|
|
XXM a = (H_err * P * H_err.transpose() + R).inverse();
|
|
double maha_dist = y.transpose() * a * y;
|
|
if (maha_dist > MAHA_THRESHOLD){
|
|
R = 1.0e16 * R;
|
|
}
|
|
}
|
|
|
|
// Outlier resilient weighting
|
|
double weight = 1;//(1.5)/(1 + y.squaredNorm()/R.sum());
|
|
|
|
// kalman gains and I_KH
|
|
XXM S = ((H_err * P) * H_err.transpose()) + R/weight;
|
|
XEM KT = S.fullPivLu().solve(H_err * P.transpose());
|
|
//EZM K = KT.transpose(); TODO: WHY DOES THIS NOT COMPILE?
|
|
//EZM K = S.fullPivLu().solve(H_err * P.transpose()).transpose();
|
|
//std::cout << "Here is the matrix rot:\n" << K << std::endl;
|
|
EEM I_KH = Eigen::Matrix<double, EDIM, EDIM>::Identity() - (KT.transpose() * H_err);
|
|
|
|
// update state by injecting dx
|
|
Eigen::Matrix<double, EDIM, 1> dx(delta_x);
|
|
dx = (KT.transpose() * y);
|
|
memcpy(delta_x, dx.data(), EDIM * sizeof(double));
|
|
err_fun(in_x, delta_x, x_new);
|
|
Eigen::Matrix<double, DIM, 1> x(x_new);
|
|
|
|
// update cov
|
|
P = ((I_KH * P) * I_KH.transpose()) + ((KT.transpose() * R) * KT);
|
|
|
|
// copy out state
|
|
memcpy(in_x, x.data(), DIM * sizeof(double));
|
|
memcpy(in_P, P.data(), EDIM * EDIM * sizeof(double));
|
|
memcpy(in_z, y.data(), y.rows() * sizeof(double));
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
extern "C" {
|
|
|
|
void car_update_25(double *in_x, double *in_P, double *in_z, double *in_R, double *in_ea) {
|
|
update<1, 3, 0>(in_x, in_P, h_25, H_25, NULL, in_z, in_R, in_ea, MAHA_THRESH_25);
|
|
}
|
|
void car_update_24(double *in_x, double *in_P, double *in_z, double *in_R, double *in_ea) {
|
|
update<2, 3, 0>(in_x, in_P, h_24, H_24, NULL, in_z, in_R, in_ea, MAHA_THRESH_24);
|
|
}
|
|
void car_update_30(double *in_x, double *in_P, double *in_z, double *in_R, double *in_ea) {
|
|
update<1, 3, 0>(in_x, in_P, h_30, H_30, NULL, in_z, in_R, in_ea, MAHA_THRESH_30);
|
|
}
|
|
void car_update_26(double *in_x, double *in_P, double *in_z, double *in_R, double *in_ea) {
|
|
update<1, 3, 0>(in_x, in_P, h_26, H_26, NULL, in_z, in_R, in_ea, MAHA_THRESH_26);
|
|
}
|
|
void car_update_27(double *in_x, double *in_P, double *in_z, double *in_R, double *in_ea) {
|
|
update<1, 3, 0>(in_x, in_P, h_27, H_27, NULL, in_z, in_R, in_ea, MAHA_THRESH_27);
|
|
}
|
|
void car_update_29(double *in_x, double *in_P, double *in_z, double *in_R, double *in_ea) {
|
|
update<1, 3, 0>(in_x, in_P, h_29, H_29, NULL, in_z, in_R, in_ea, MAHA_THRESH_29);
|
|
}
|
|
void car_update_28(double *in_x, double *in_P, double *in_z, double *in_R, double *in_ea) {
|
|
update<1, 3, 0>(in_x, in_P, h_28, H_28, NULL, in_z, in_R, in_ea, MAHA_THRESH_28);
|
|
}
|
|
void car_update_31(double *in_x, double *in_P, double *in_z, double *in_R, double *in_ea) {
|
|
update<1, 3, 0>(in_x, in_P, h_31, H_31, NULL, in_z, in_R, in_ea, MAHA_THRESH_31);
|
|
}
|
|
void car_err_fun(double *nom_x, double *delta_x, double *out_700264796655131929) {
|
|
err_fun(nom_x, delta_x, out_700264796655131929);
|
|
}
|
|
void car_inv_err_fun(double *nom_x, double *true_x, double *out_107082048498982835) {
|
|
inv_err_fun(nom_x, true_x, out_107082048498982835);
|
|
}
|
|
void car_H_mod_fun(double *state, double *out_7423992576013844798) {
|
|
H_mod_fun(state, out_7423992576013844798);
|
|
}
|
|
void car_f_fun(double *state, double dt, double *out_1496483947477544324) {
|
|
f_fun(state, dt, out_1496483947477544324);
|
|
}
|
|
void car_F_fun(double *state, double dt, double *out_5799168133787523639) {
|
|
F_fun(state, dt, out_5799168133787523639);
|
|
}
|
|
void car_h_25(double *state, double *unused, double *out_4510188062326144511) {
|
|
h_25(state, unused, out_4510188062326144511);
|
|
}
|
|
void car_H_25(double *state, double *unused, double *out_1340165284045423799) {
|
|
H_25(state, unused, out_1340165284045423799);
|
|
}
|
|
void car_h_24(double *state, double *unused, double *out_9153409952546890921) {
|
|
h_24(state, unused, out_9153409952546890921);
|
|
}
|
|
void car_H_24(double *state, double *unused, double *out_4898090882847746935) {
|
|
H_24(state, unused, out_4898090882847746935);
|
|
}
|
|
void car_h_30(double *state, double *unused, double *out_3253077194494527930) {
|
|
h_30(state, unused, out_3253077194494527930);
|
|
}
|
|
void car_H_30(double *state, double *unused, double *out_3858498242552672426) {
|
|
H_30(state, unused, out_3858498242552672426);
|
|
}
|
|
void car_h_26(double *state, double *unused, double *out_3957832291759693581) {
|
|
h_26(state, unused, out_3957832291759693581);
|
|
}
|
|
void car_H_26(double *state, double *unused, double *out_2401338034828632425) {
|
|
H_26(state, unused, out_2401338034828632425);
|
|
}
|
|
void car_h_27(double *state, double *unused, double *out_8058270523824692017) {
|
|
h_27(state, unused, out_8058270523824692017);
|
|
}
|
|
void car_H_27(double *state, double *unused, double *out_1683734930752247515) {
|
|
H_27(state, unused, out_1683734930752247515);
|
|
}
|
|
void car_h_29(double *state, double *unused, double *out_4420820995570669667) {
|
|
h_29(state, unused, out_4420820995570669667);
|
|
}
|
|
void car_H_29(double *state, double *unused, double *out_4368729586867064610) {
|
|
H_29(state, unused, out_4368729586867064610);
|
|
}
|
|
void car_h_28(double *state, double *unused, double *out_7076186430489393905) {
|
|
h_28(state, unused, out_7076186430489393905);
|
|
}
|
|
void car_H_28(double *state, double *unused, double *out_713669430202465964) {
|
|
H_28(state, unused, out_713669430202465964);
|
|
}
|
|
void car_h_31(double *state, double *unused, double *out_8265185813124548370) {
|
|
h_31(state, unused, out_8265185813124548370);
|
|
}
|
|
void car_H_31(double *state, double *unused, double *out_3027546137061983901) {
|
|
H_31(state, unused, out_3027546137061983901);
|
|
}
|
|
void car_predict(double *in_x, double *in_P, double *in_Q, double dt) {
|
|
predict(in_x, in_P, in_Q, dt);
|
|
}
|
|
void car_set_mass(double x) {
|
|
set_mass(x);
|
|
}
|
|
void car_set_rotational_inertia(double x) {
|
|
set_rotational_inertia(x);
|
|
}
|
|
void car_set_center_to_front(double x) {
|
|
set_center_to_front(x);
|
|
}
|
|
void car_set_center_to_rear(double x) {
|
|
set_center_to_rear(x);
|
|
}
|
|
void car_set_stiffness_front(double x) {
|
|
set_stiffness_front(x);
|
|
}
|
|
void car_set_stiffness_rear(double x) {
|
|
set_stiffness_rear(x);
|
|
}
|
|
}
|
|
|
|
const EKF car = {
|
|
.name = "car",
|
|
.kinds = { 25, 24, 30, 26, 27, 29, 28, 31 },
|
|
.feature_kinds = { },
|
|
.f_fun = car_f_fun,
|
|
.F_fun = car_F_fun,
|
|
.err_fun = car_err_fun,
|
|
.inv_err_fun = car_inv_err_fun,
|
|
.H_mod_fun = car_H_mod_fun,
|
|
.predict = car_predict,
|
|
.hs = {
|
|
{ 25, car_h_25 },
|
|
{ 24, car_h_24 },
|
|
{ 30, car_h_30 },
|
|
{ 26, car_h_26 },
|
|
{ 27, car_h_27 },
|
|
{ 29, car_h_29 },
|
|
{ 28, car_h_28 },
|
|
{ 31, car_h_31 },
|
|
},
|
|
.Hs = {
|
|
{ 25, car_H_25 },
|
|
{ 24, car_H_24 },
|
|
{ 30, car_H_30 },
|
|
{ 26, car_H_26 },
|
|
{ 27, car_H_27 },
|
|
{ 29, car_H_29 },
|
|
{ 28, car_H_28 },
|
|
{ 31, car_H_31 },
|
|
},
|
|
.updates = {
|
|
{ 25, car_update_25 },
|
|
{ 24, car_update_24 },
|
|
{ 30, car_update_30 },
|
|
{ 26, car_update_26 },
|
|
{ 27, car_update_27 },
|
|
{ 29, car_update_29 },
|
|
{ 28, car_update_28 },
|
|
{ 31, car_update_31 },
|
|
},
|
|
.Hes = {
|
|
},
|
|
.sets = {
|
|
{ "mass", car_set_mass },
|
|
{ "rotational_inertia", car_set_rotational_inertia },
|
|
{ "center_to_front", car_set_center_to_front },
|
|
{ "center_to_rear", car_set_center_to_rear },
|
|
{ "stiffness_front", car_set_stiffness_front },
|
|
{ "stiffness_rear", car_set_stiffness_rear },
|
|
},
|
|
.extra_routines = {
|
|
},
|
|
};
|
|
|
|
ekf_lib_init(car)
|