Paparazzi UAS v7.0_unstable
Paparazzi is a free software Unmanned Aircraft System.
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
nav_trinity.c
Go to the documentation of this file.
1/*
2 * Copyright (C) 2018-2021 Gautier Hattenberger <gautier.hattenberger@enac.fr>
3 * Titouan Verdu <titouan.verdu@enac.fr>
4 *
5 * This file is part of paparazzi.
6 *
7 * paparazzi is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2, or (at your option)
10 * any later version.
11 *
12 * paparazzi is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with paparazzi; see the file COPYING. If not, see
19 * <http://www.gnu.org/licenses/>.
20 */
21
29
31#include "state.h"
32#include "autopilot.h"
33#include "generated/flight_plan.h"
34#include "modules/core/abi.h"
35
36#ifndef NAV_TRINITY_RECOVER_MAX_TURN
37#define NAV_TRINITY_RECOVER_MAX_TURN 1.5f
38#endif
39
40#ifndef NAV_TRINITY_BORDER_FILTER
41#define NAV_TRINITY_BORDER_FILTER 20.f
42#endif
43
54
59
77
78static struct NavTrinity nav_trinity;
79
80static const float nav_dt = 1.f / NAVIGATION_FREQUENCY;
81
82static float change_rep(float dir)
83{
84 return M_PI_2 - dir;
85}
86
87static struct EnuCoor_f process_new_point_trinity(struct EnuCoor_f *position, float alt_sp, float uav_direction)
88{
89 struct EnuCoor_f new_point;
90 float rot_angle;
91
94 } else{
96 }
97
100 new_point.z = alt_sp;
101
102 return new_point;
103}
104
105static struct EnuCoor_f process_first_point_trinity(struct EnuCoor_f *position, float alt_sp, float uav_direction)
106{
109 } else{
111 }
112
114}
115
116static void update_target_point(struct EnuCoor_f *target, struct EnuCoor_f *border, float dt, float tau)
117{
118 // with a proper discrete transform, coeff should be exp(-dt/tau) and (1-exp(-dt/tau))
119 // but to make it simpler with the same behavior at the limits, we use tau/(dt+tau) and dt/(dt+tau)
120 // with a positive value for tau
121 if (tau > 1e-4) {
122 float alpha = dt / (dt + tau);
123 target->x = (border->x * alpha) + (target->x * (1.f - alpha));
124 target->y = (border->y * alpha) + (target->y * (1.f - alpha));
125 }
126}
127
128
129#if USE_MISSION
131
132static bool nav_trinity_mission(uint8_t nb, float *params, enum MissionRunFlag flag)
133{
134 if (flag == MissionInit && nb == 8) {
135 float start_x = params[0];
136 float start_y = params[1];
137 float start_z = params[2];
138 int first_turn = params[3];
139 float circle_radius = params[4];
140 float vx = params[5];
141 float vy = params[6];
142 float vz = params[7];
144 return true;
145 }
146 else if (flag == MissionUpdate && nb == 3) {
147 // update target 3D position (ENU frame, above ground alt)
148 float x = params[0];
149 float y = params[1];
150 float z = params[2];
152 return true;
153 }
154 else if (flag == MissionUpdate && nb == 2) {
155 // update horizontal speed
156 float vx = params[0];
157 float vy = params[1];
160 return true;
161 }
162 else if (flag == MissionUpdate && nb == 1) {
163 // update vertical speed
164 float vz = params[0];
166 return true;
167 }
168 else if (flag == MissionRun) {
169 return nav_trinity_run();
170 }
171 return false; // not a valid case
172}
173#endif
174
175// ABI message
176
177#ifndef NAV_TRINITY_LWC_ID
178#define NAV_TRINITY_LWC_ID ABI_BROADCAST
179#endif
180
182
184 if (data_type == 1 && size == 1) {
185 nav_trinity.inside_cloud = (bool) data[0];
186 }
187}
188
204
206 float init_z, int turn,
207 float desired_radius, float vx,
208 float vy, float vz)
209{
210 struct EnuCoor_f start = {init_x, init_y, init_z};
211 // increment based on speed
213
214 nav_trinity.target = start;
218
219 if (turn == 1) {
222 } else {
224 nav_trinity.radius_sign = -1.0f;
225 }
226
228}
229
231{
232 float pre_climb = 0.f;
233 float time = get_sys_time_float();
234
235 NavVerticalAutoThrottleMode(0.f); /* No pitch */
236
237 switch (nav_trinity.status) {
238 case TRINITY_ENTER:
239 // init stage
241 // reach target point
244
247 }
248 break;
250 // prepare inside circle
254 // init stage
256 // update border and target for recover
260 // fly inside
262 break;
263 case TRINITY_INSIDE:
264 // increment center position
269
271 // found border, start outside
273 }
275 // most likely lost inside
277 }
278 break;
280 // prepare outside circle
284 // init stage
286 // upadte border and target for recover
290 // fly outside
292 break;
293 case TRINITY_OUTSIDE:
294 // increment center position
299
301 // found border, continue inside
303 }
305 // most likely lost outside
307 }
308 break;
310 // prepare recovery circle or line
313 // initial recovery radius
316 // init stage
320 }
321 else {
323 }
324 break;
326 // increment border position
327 // fly in opposite direction to cover more space
331 }
332 break;
334 // increment center position
337 // increment recover circle radius
340 }
341 // found a new border
344 }
345 break;
346 default:
347 // error, leaving
348 return false;
349 }
350 // increment border and target positions
353#ifdef WP_TARGET
356#endif
357
358 return true;
359}
Main include for ABI (AirBorneInterface).
Event structure to store callbacks in a linked list.
Definition abi_common.h:67
Core autopilot interface common to all firmwares.
#define UNUSED(x)
void nav_send_waypoint(uint8_t wp_id)
Send a waypoint throught default telemetry channel.
Definition common_nav.c:226
float ground_alt
size == nb_waypoint, waypoint 0 is a dummy waypoint
Definition common_nav.c:46
void nav_move_waypoint_enu(uint8_t wp_id, float x, float y, float alt)
Move a waypoint in local frame.
Definition common_nav.c:200
#define VECT3_ASSIGN(_a, _x, _y, _z)
#define VECT3_ADD(_a, _b)
static struct EnuCoor_f * stateGetPositionEnu_f(void)
Get position in local ENU coordinates (float).
Definition state.h:848
static float stateGetHorizontalSpeedDir_f(void)
Get dir of horizontal ground speed (float).
Definition state.h:1085
uint16_t foo
Definition main_demo5.c:58
bool mission_register(mission_custom_cb cb, char *type)
Register a new navigation or action callback function.
mission planner library
MissionRunFlag
@ MissionInit
first exec
@ MissionRun
normal run
@ MissionUpdate
param update
void nav_init_stage(void)
needs to be implemented by fixedwing and rotorcraft seperately
Definition nav.c:92
void nav_route_xy(float last_wp_x, float last_wp_y, float wp_x, float wp_y)
Computes the carrot position along the desired segment.
Definition nav.c:382
void nav_circle_XY(float x, float y, float radius)
Navigates around (x, y).
Definition nav.c:108
Fixedwing Navigation library.
#define NavCircleCountNoRewind()
Definition nav.h:154
#define NAVIGATION_FREQUENCY
Default fixedwing navigation frequency.
Definition nav.h:49
#define NavVerticalAltitudeMode(_alt, _pre_climb)
Set the vertical mode to altitude control with the specified altitude setpoint and climb pre-command.
Definition nav.h:191
#define NavVerticalAutoThrottleMode(_pitch)
Set the climb control to auto-throttle with the specified pitch pre-command.
Definition nav.h:177
RotationDir
Definition nav_lace.c:56
static void lwc_cb(uint8_t sender_id UNUSED, uint32_t stamp UNUSED, int32_t data_type, uint32_t size, uint8_t *data)
enum TrinityStatus status
Definition nav_trinity.c:61
enum RotationDir rotation
Definition nav_trinity.c:62
float radius_sign
Definition nav_trinity.c:72
#define NAV_TRINITY_RECOVER_MAX_TURN
Definition nav_trinity.c:37
static struct EnuCoor_f process_first_point_trinity(struct EnuCoor_f *position, float alt_sp, float uav_direction)
float radius
Definition nav_trinity.c:71
#define NAV_TRINITY_LWC_ID
TrinityStatus
Definition nav_trinity.c:44
@ TRINITY_INSIDE
Definition nav_trinity.c:47
@ TRINITY_RECOVER_OUTSIDE
Definition nav_trinity.c:52
@ TRINITY_OUTSIDE_START
Definition nav_trinity.c:48
@ TRINITY_RECOVER_INSIDE
Definition nav_trinity.c:51
@ TRINITY_OUTSIDE
Definition nav_trinity.c:49
@ TRINITY_RECOVER_START
Definition nav_trinity.c:50
@ TRINITY_ENTER
Definition nav_trinity.c:45
@ TRINITY_INSIDE_FIRST
Definition nav_trinity.c:46
struct EnuCoor_f target
Definition nav_trinity.c:65
void nav_trinity_setup(float init_x, float init_y, float init_z, int turn, float desired_radius, float vx, float vy, float vz)
Initialized the exploration with a first target point inside the cloud Called from flight plan or wit...
static struct NavTrinity nav_trinity
Definition nav_trinity.c:78
bool inside_cloud
Definition nav_trinity.c:63
static struct EnuCoor_f process_new_point_trinity(struct EnuCoor_f *position, float alt_sp, float uav_direction)
Definition nav_trinity.c:87
struct EnuCoor_f estim_border
Definition nav_trinity.c:67
struct EnuCoor_f recover_circle
Definition nav_trinity.c:68
struct EnuCoor_f circle
Definition nav_trinity.c:66
struct EnuCoor_f actual
Definition nav_trinity.c:64
#define NAV_TRINITY_BORDER_FILTER
Definition nav_trinity.c:41
float recover_radius
Definition nav_trinity.c:74
struct FloatVect3 pos_incr
Definition nav_trinity.c:69
static void update_target_point(struct EnuCoor_f *target, struct EnuCoor_f *border, float dt, float tau)
static const float nav_dt
Definition nav_trinity.c:80
RotationDir
Definition nav_trinity.c:55
@ TRINITY_RIGHT
Definition nav_trinity.c:57
@ TRINITY_LEFT
Definition nav_trinity.c:56
bool nav_trinity_run(void)
Navigation function Called by flight plan or mission run function.
static float change_rep(float dir)
Definition nav_trinity.c:82
float last_border_time
Definition nav_trinity.c:73
static abi_event lwc_ev
void nav_trinity_init(void)
Init function called by modules init.
float max_recover_radius
Definition nav_trinity.c:75
float direction
Definition nav_trinity.c:70
float y
in meters
float x
in meters
float z
in meters
vector in East North Up coordinates Units: meters
#define DEFAULT_CIRCLE_RADIUS
default nav_circle_radius in meters
Definition navigation.h:42
static const float dir[]
API to get/set the generic vehicle states.
static float get_sys_time_float(void)
Get the time in seconds since startup.
Definition sys_time.h:138
struct target_t target
Definition target_pos.c:65
float alpha
Definition textons.c:133
int int32_t
Typedef defining 32 bit int type.
unsigned int uint32_t
Typedef defining 32 bit unsigned int type.
unsigned char uint8_t
Typedef defining 8 bit unsigned char type.