Project

General

Profile

System architecture » History » Version 11

Rafael Bailon-Ruiz, 2020-09-09 18:15

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 6 Rafael Bailon-Ruiz
!https://redmine.laas.fr/attachments/download/3045/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
h3. Full simulation
33
34
In a simulation scenario, the full stack of LAAS software is used. The simulated UAVs fly into simulated wind and their Liquid Water Content (LWC) sensor is also simulated. Both data come from a MesoNH database.
35
36
!https://redmine.laas.fr/attachments/download/1629/functional_diagram_simulation.svg!
37
38
39
h3. Real flight
40
41
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.
42
43
!https://redmine.laas.fr/attachments/download/1628/functional_diagram_real_flight.svg!
44
45
46
h3. Hybrid
47
48
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.
49
50
!https://redmine.laas.fr/attachments/download/1627/functional_diagram_hybrid.svg!
51 9 Rafael Bailon-Ruiz
52
53
54
h2. Main software components
55
56
The software is made of several key sub-systems, most of them programmed in **Python 3.5** (NOT compatible with Python 2):
57
58
* **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.
59
60
* **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.
61
62
* **Mapping module :** 
63
** 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).
64
** Higher level functions to estimate some cloud parameters from a dense map (segmentation, area, border, etc...).
65
** 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.
66
67
* **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.
68
69
* **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":.
70
71
For more information on the codebase see "here":https://redmine.laas.fr/projects/nephelae-devel/wiki.