Paparazzi UAS  v7.0_unstable
Paparazzi is a free software Unmanned Aircraft System.
stabilization_attitude_heli_indi.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2008-2009 Antoine Drouin <poinix@gmail.com>
3  *
4  * This file is part of paparazzi.
5  *
6  * paparazzi is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2, or (at your option)
9  * any later version.
10  *
11  * paparazzi is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with paparazzi; see the file COPYING. If not, write to
18  * the Free Software Foundation, 59 Temple Place - Suite 330,
19  * Boston, MA 02111-1307, USA.
20  */
21 
22 #ifndef STABILIZATION_ATTITUDE_HELI_INDI_H
23 #define STABILIZATION_ATTITUDE_HELI_INDI_H
24 
25 #include "math/pprz_algebra_int.h"
26 
27 #include "filters/notch_filter.h"
29 
30 #define __k 1
31 #define INDI_NR_FILTERS 2
32 #define INDI_DOF 4
33 #define INDI_ROLL 0
34 #define INDI_PITCH 1
35 #define INDI_YAW 2
36 #define INDI_THRUST 3
37 #define INDI_YAW_BUFFER_SIZE 9
38 
39 struct HeliIndiGains {
44 };
45 
46 /* All these values are in the struct to make it easier for logging */
60  bool enable_notch;
64  void (*apply_compensator_filters)(int32_t _out[], int32_t _in[]);
65  void (*apply_actuator_models)(int32_t _out[], int32_t _in[]);
68 };
69 
70 //extern struct IndiController_int heli_indi_ctl; // keep private
71 
73 extern struct Int32Quat stab_att_sp_quat;
74 extern struct Int32Eulers stab_att_sp_euler;
75 extern struct HeliIndiGains heli_indi_gains;
76 
80 
81 #endif /* STABILIZATION_ATTITUDE_HELI_INDI_H */
First order low-pass filter with delay.
euler angles
Rotation quaternion.
Second order notch filter.
Paparazzi fixed point algebra.
struct delayed_first_order_lowpass_filter_t actuator_model[INDI_DOF]
void stabilization_attitude_heli_indi_set_steadystate_roll(float roll)
stabilization_attitude_heli_indi_set_steadystate_roll
#define INDI_NR_FILTERS
void stabilization_attitude_heli_indi_set_steadystate_pitch(float pitch)
stabilization_attitude_heli_indi_set_steadystate_pitch
struct Int32Eulers stab_att_sp_euler
with INT32_ANGLE_FRAC
void stabilization_attitude_heli_indi_set_steadystate_pitchroll(void)
stabilization_attitude_heli_indi_set_steadystate_pitchroll
struct HeliIndiGains heli_indi_gains
struct Int32Quat stab_att_sp_quat
with INT32_QUAT_FRAC
int32_t reference[INDI_DOF]
Range -MAX_PPRZ:MAX_PPRZ.
float sp_offset_pitch
Neutral pitch angle [deg].
int32_t command_out[2][INDI_DOF]
Command and command from previous measurement.
int32_t filtered_measurement[INDI_NR_FILTERS][INDI_DOF]
Filtered measurement.
int32_t measurement[INDI_DOF]
Raw measurement.
int32_t error[INDI_DOF]
virtual control minus measurement
float sp_offset_roll
Neutral roll angle [deg].
int32_t actuator_out[INDI_DOF]
Actuator position.
void(* apply_compensator_filters)(int32_t _out[], int32_t _in[])
void(* apply_actuator_filters[INDI_NR_FILTERS])(int32_t _out[], int32_t _in[])
int32_t du[INDI_DOF]
Actuator commanded increment.
int32_t pitch_comp_angle
Angle to rotate pitch/roll commands with INT32_ANGLE_FRAC.
int32_t roll_comp_angle
Angle to rotate pitch/roll commands with INT32_ANGLE_FRAC.
int32_t invG[INDI_DOF][INDI_DOF]
Inverse control effectiveness matrix.
bool enable_notch
Use notch filters.
void(* apply_actuator_models)(int32_t _out[], int32_t _in[])
int16_t motor_rpm
RPM of the main motor.
int32_t u_setpoint[INDI_DOF]
Actuator setpoint without compensator.
int32_t filtered_actuator[INDI_NR_FILTERS][INDI_DOF]
Filtered actuator position.
void(* apply_measurement_filters[INDI_NR_FILTERS])(int32_t _out[], int32_t _in[])
int int32_t
Typedef defining 32 bit int type.
Definition: vl53l1_types.h:83
short int16_t
Typedef defining 16 bit short type.
Definition: vl53l1_types.h:93