Project

General

Profile

System architecture » History » Version 14

Rafael Bailon-Ruiz, 2020-09-10 13:21

1 4 Rafael Bailon-Ruiz
h1. System architecture
2 1 Rafael Bailon-Ruiz
3 8 Rafael Bailon-Ruiz
CAMS is a software framework for cloud exploration using fleets of UAVs. The system drives a *fleet of UAVs* inside *clouds* acoording to *user's plans* and *collects sensor data*. Afterwards the information is processed by *dedicated atmosphere analysis algorithms* to produce 4D *cloud maps* that are simultaneously *stored in a database* for future use and *shown to operator* through a *graphical user interface*. This graphical user interface also provides operators the means to *manage the fleet of UAVs* .
4 1 Rafael Bailon-Ruiz
5 12 Rafael Bailon-Ruiz
!system_overview.png!
6 1 Rafael Bailon-Ruiz
7
h2. Main features
8
9 11 Rafael Bailon-Ruiz
The goal of this system is to provide an easy to use [[Graphical User Interface]] to perform four main features:
10 1 Rafael Bailon-Ruiz
11
* **Monitor data acquisition :**
12 11 Rafael Bailon-Ruiz
** Predicted 4D cloud maps (3D + time).
13 1 Rafael Bailon-Ruiz
** Various data profiles, including raw data display and vertical atmospheric profiles.
14
%{background:lightgreen}insert images here ?%
15
16
* **Monitor fleet status :**
17
** Current UAV positions on map.
18
** Status updates for each UAVs, including current task, (predicted path ?), flight time, battery voltage and many others.
19
** Dedicated interface for telepilots as a tool to validate generated flight plans (for safety).
20
%{background:lightgreen}insert images here ?%
21
22
* **Generate flight plans :**
23
** Depending on current fleet status and map of cloud, the user will be able to require a UAV to execute a specific flight pattern. The interface aims at providing a user-friendly interface to generate complex flight plans.
24
%{background:lightgreen}insert images here ?%
25
26
* **Simulation :**
27
** Using the simulation capabilities of the Paparazzi framework and MesoNH atmospheric simulation data, the whole system is able to run entirely on simulation. See "here":https://redmine.laas.fr/projects/nephelae/wiki/Simulation for more details.
28
%{background:lightgreen}insert images here ?%
29
30 9 Rafael Bailon-Ruiz
h2. Modes of operation
31 1 Rafael Bailon-Ruiz
32 14 Rafael Bailon-Ruiz
33
%{background:yellow}TODO: Simpler images%
34
35 12 Rafael Bailon-Ruiz
CAMS designed to work in several modes of operation fulfilling different user use cases:
36 1 Rafael Bailon-Ruiz
37 12 Rafael Bailon-Ruiz
* Pure simulation
38
* Mixed-reality
39 1 Rafael Bailon-Ruiz
* Field deployment
40 12 Rafael Bailon-Ruiz
* Mission replay
41
42
h3. Pure simulation
43 1 Rafael Bailon-Ruiz
44 12 Rafael Bailon-Ruiz
Operation in pure simulated mode uses virtual Paparazzi UAVs flying into synthetic clouds from a MesoNH database.
45 13 Rafael Bailon-Ruiz
46 14 Rafael Bailon-Ruiz
!CAMS_current_state_simu.png!
47 1 Rafael Bailon-Ruiz
48 12 Rafael Bailon-Ruiz
h3. Mixed-reality
49 1 Rafael Bailon-Ruiz
50
In a real flight scenario, none of the MesoNH modules are required. The rest of the modules should work exactly the same thanks to the Paparazzi framework abstraction level.
51 13 Rafael Bailon-Ruiz
52 14 Rafael Bailon-Ruiz
%{background:lightgreen}(Missing picture)%
53 1 Rafael Bailon-Ruiz
54 12 Rafael Bailon-Ruiz
h3. Field deployment
55 1 Rafael Bailon-Ruiz
56
The hybrid scenario is meant to test the adaptive flight patterns without having to fly into a cloud. Real UAV are flying but the LWC data is read from a MesoNH database. It is then sent to the UAVs to emulate the LWC embedded sensor.
57
58 14 Rafael Bailon-Ruiz
!CAMS_current_state_exp.png!
59 13 Rafael Bailon-Ruiz
60 1 Rafael Bailon-Ruiz
h3. Mission replay
61
62 14 Rafael Bailon-Ruiz
!CAMS_current_state_replay.png!
63 9 Rafael Bailon-Ruiz
64
65
h2. Main software components
66
67
The software is made of several key sub-systems, most of them programmed in **Python 3.5** (NOT compatible with Python 2):
68
69
* **Graphical user interface :** Web browser interface (HTML, CSS, JavaScript). Made with the "Django framework":https://www.djangoproject.com to link the web-based front-end with the Python back-end. More details "here":https://redmine.laas.fr/projects/nephelae/wiki/Graphical_user_interface.
70
71
* **Paparazzi interface module :** Python interface with Paparazzi system. In charge of communication with UAVs and ground station via the IvyBus. The idea is to abstract the link between Paparazzi and the rest of the LAAS software. More details "here":https://redmine.laas.fr/projects/nephelae-devel/wiki/Paparazzi_framework.
72
73
* **Mapping module :** 
74
** Full dense maps of clouds using sparse data generated by the UAVs, with the help of "Gaussian Process Regression":https://scikit-learn.org/stable/modules/gaussian_process.html (GPR).
75
** Higher level functions to estimate some cloud parameters from a dense map (segmentation, area, border, etc...).
76
** Single map interface, behind which can be a GPR predicted map, or a section of MesoNH data to be used as ground-truth in simulation.
77
78
* **MesoNH interface module :** Provides helper function to read data in a "MesoNH":http://mesonh.aero.obs-mip.fr/mesonh54 atmospheric simulation database. Used to simulate UAV flights in a realistic atmosphere by emulating wind, pressure, liquid water content, and many other variables. Also used to emulate UAV sensor data.
79
80
* **Data server :** Aggregates all data coming down from flying or simulated UAVs (or any other source) into a single server instance. Any module which needs data, like the mapping module or the GUI module must require data from the data server. More details "here":.
81
82
For more information on the codebase see "here":https://redmine.laas.fr/projects/nephelae-devel/wiki.