Paparazzi UAS  v7.0_unstable
Paparazzi is a free software Unmanned Aircraft System.
guidance_h_ref.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2008-2013 The Paparazzi Team
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 
27 #ifndef GUIDANCE_H_REF_H
28 #define GUIDANCE_H_REF_H
29 
30 #include "inttypes.h"
31 #include "math/pprz_algebra.h"
32 #include "math/pprz_algebra_int.h"
34 #include "generated/airframe.h"
36 
38 #ifndef GUIDANCE_H_REF_MAX_SPEED
39 #define GUIDANCE_H_REF_MAX_SPEED 5.
40 #endif
41 
45 extern float gh_max_speed;
46 
50 #ifndef GUIDANCE_H_REF_MAX_ACCEL
51 #define GUIDANCE_H_REF_MAX_ACCEL 5.66
52 #endif
53 
58 #define GH_POS_REF_FRAC 37
59 
60 struct GuidanceHRef {
64  struct FloatVect2 accel;
65 
70  struct FloatVect2 speed;
71 
76  struct Int64Vect2 pos;
77 
78  float tau;
79  float omega;
80  float zeta;
81 
85  float max_speed;
86 
87  /*
88  * internal variables
89  */
90  float zeta_omega;
91  float omega_2;
92  float inv_tau;
93 
96  float dt;
97 };
98 
99 extern struct GuidanceHRef gh_ref;
100 
101 extern void gh_ref_init(void);
102 extern void gh_set_ref(struct Int32Vect2 pos, struct FloatVect2 speed, struct FloatVect2 accel);
103 extern void gh_update_ref_from_pos_sp(struct Int32Vect2 pos_sp);
105 extern void gh_update_ref_from_accel_sp(struct FloatVect2 accel_sp);
106 
112 extern float gh_set_max_speed(float max_speed);
113 
114 extern float gh_set_tau(float tau);
115 extern float gh_set_omega(float omega);
116 extern float gh_set_zeta(float zeta);
117 
118 #endif /* GUIDANCE_H_REF_H */
float gh_set_zeta(float zeta)
float gh_max_speed
Current maximum speed for waypoint navigation.
float zeta
second order model damping
struct FloatVect2 accel
Reference model acceleration.
void gh_set_ref(struct Int32Vect2 pos, struct FloatVect2 speed, struct FloatVect2 accel)
float tau
first order time constant
void gh_update_ref_from_accel_sp(struct FloatVect2 accel_sp)
float gh_set_tau(float tau)
float omega
second order model natural frequency
struct Int64Vect2 pos
Reference model position.
void gh_ref_init(void)
float gh_set_omega(float omega)
void gh_update_ref_from_pos_sp(struct Int32Vect2 pos_sp)
void gh_update_ref_from_speed_sp(struct FloatVect2 speed_sp)
struct FloatVect2 speed
Reference model speed.
struct GuidanceHRef gh_ref
float gh_set_max_speed(float max_speed)
Set a new maximum speed for waypoint navigation.
float dt
Integration timestep.
float max_speed
Current maximum speed for waypoint navigation.
struct FloatVect3 speed_sp
Definition: guidance_indi.c:77
Paparazzi generic algebra macros.
Paparazzi floating point algebra.
Paparazzi fixed point algebra.