Running CAMS in simulation mode (Tutorial) » History » Version 26
Rafael Bailon-Ruiz, 2020-12-08 14:53
1 | 14 | Rafael Bailon-Ruiz | h1. Running CAMS in simulation mode (Tutorial) |
---|---|---|---|
2 | 3 | Rafael Bailon-Ruiz | |
3 | This tutorial will teach you how to run the CAMS GUI with a simple scenario in simulation mode. |
||
4 | |||
5 | {{toc}} |
||
6 | |||
7 | 25 | Rafael Bailon-Ruiz | First of all, *make sure you have successfully completed the [[Installation]] tutorial*. Then, open a terminal and change the current directory to the folder where the core packages are installed. |
8 | 3 | Rafael Bailon-Ruiz | |
9 | 6 | Rafael Bailon-Ruiz | <pre><code class="shell"> |
10 | cd /path/to/nephelae_workspace |
||
11 | </code></pre> |
||
12 | |||
13 | 25 | Rafael Bailon-Ruiz | h2. Obtaining the simulated cloud environment files |
14 | 3 | Rafael Bailon-Ruiz | |
15 | 7 | Rafael Bailon-Ruiz | In order to run CAMS in fully simulated mode first yout need a mesoNH file describing a synthetic atmospheric environment. MesoNH files are databases in "NetCDF _(.nc)_ format":https://en.wikipedia.org/wiki/NetCDF. |
16 | 3 | Rafael Bailon-Ruiz | |
17 | 26 | Rafael Bailon-Ruiz | h3. Reduced cloud environment |
18 | |||
19 | A sample of a full cloud simulation can be found here: https://redmine.laas.fr/attachments/download/3293/cloud_example.nc (which is a crop of an small area from the file below) |
||
20 | |||
21 | h3. Complete cloud environment |
||
22 | 5 | Rafael Bailon-Ruiz | The computer @girofle@ at LAAS contains a mesoNH file that can be used with CAMS. You can use the command below to mount the folder the remote folder as a local directory: |
23 | 3 | Rafael Bailon-Ruiz | |
24 | <pre><code class="shell"> |
||
25 | sshfs girofle.laas.fr:/media/Nephelae-Data/data/Nephelae/ mesonh_girofle_mount/ |
||
26 | </code></pre> |
||
27 | |||
28 | 7 | Rafael Bailon-Ruiz | The recommended file for this tutorial is: |
29 | 1 | Rafael Bailon-Ruiz | |
30 | 7 | Rafael Bailon-Ruiz | <pre> |
31 | REFHR.1.ARMCu.4D.nc |
||
32 | </pre> |
||
33 | 3 | Rafael Bailon-Ruiz | |
34 | 25 | Rafael Bailon-Ruiz | Despite its huge size (~72 GB), the best way to work with this particular file is to download it to your computer. If you are at LAAS connected with an Ethernet cable, you have a high-bandwidth and low-latency link. Therefore you can read the files in the remote folder directly, but beware of errors that can occur if the quality of the connection degrades. |
35 | 1 | Rafael Bailon-Ruiz | |
36 | h2. Scenario setup |
||
37 | |||
38 | 9 | Rafael Bailon-Ruiz | A valid configuration file is required to run the graphical interface server. Scenario configuration files describe the atmospheric environment and the UAVs so CAMS can use the appropriate algorithms and models to manage them. For this tutorial a simple configuration file is provided describing a scenario built upon a simulated atmosphere with cumulus clouds and two UAVs. |
39 | 3 | Rafael Bailon-Ruiz | |
40 | 25 | Rafael Bailon-Ruiz | 1. Download the configuration file for this tutorial: https://redmine.laas.fr/projects/nephelae-devel/repository/nephelae_base/revisions/master/raw/examples/config/tutorial_simulation_mesonh_2uav.yaml |
41 | 3 | Rafael Bailon-Ruiz | |
42 | 25 | Rafael Bailon-Ruiz | 2. *You need adapt the following configuration values to match with the path of your CAMS workspace. Replace @/PATH/TO/@ with the actual path.* |
43 | 1 | Rafael Bailon-Ruiz | |
44 | |||
45 | <pre> |
||
46 | 10 | Rafael Bailon-Ruiz | database: filepath: '/PATH/TO/database01.neph' # CAMS database file. It stores the atmospheric and UAV information generated during the run |
47 | mesonh_files: &mesonh_files '/PATH/TO/REFHR.1.ARMCu.4D.nc' # MesoNH simulation file. |
||
48 | aircrafts: 200: plugins: Missions: backup_file: '/PATH/TO/backup_200.bin' # |
||
49 | aircrafts: 201: plugins: Missions: backup_file: '/PATH/TO/backup_201.bin' # |
||
50 | 8 | Rafael Bailon-Ruiz | </pre> |
51 | 1 | Rafael Bailon-Ruiz | |
52 | 20 | Rafael Bailon-Ruiz | There are many other options that can be set in this configuration file to adapt CAMS to your needs. For more information, there is a [[scenario configuration reference guide]] in the wiki but for now you should stay with the default setup. |
53 | 8 | Rafael Bailon-Ruiz | |
54 | 10 | Rafael Bailon-Ruiz | TODO: Introduce & explain the main parameter groups in the configuration file to give an overview of the situation the user will be managing. |
55 | 8 | Rafael Bailon-Ruiz | |
56 | 10 | Rafael Bailon-Ruiz | h2. Launch the UAV simulation with paparazzi |
57 | 8 | Rafael Bailon-Ruiz | |
58 | 11 | Rafael Bailon-Ruiz | h3. Configure the UAVs |
59 | |||
60 | 10 | Rafael Bailon-Ruiz | Open a new terminal, change the current directory to the paparazzi installation folder and open the _Paparazzi center_ : |
61 | 8 | Rafael Bailon-Ruiz | |
62 | 10 | Rafael Bailon-Ruiz | <pre><code class="shell"> |
63 | cd /PATH/TO/paparazzi |
||
64 | ./paparazzi |
||
65 | 8 | Rafael Bailon-Ruiz | </code></pre> |
66 | 1 | Rafael Bailon-Ruiz | |
67 | 11 | Rafael Bailon-Ruiz | 1. Select the aircraft *Lisa_Neph_0* from the A/C list |
68 | |||
69 | 1 | Rafael Bailon-Ruiz | 2. Click build |
70 | |||
71 | 11 | Rafael Bailon-Ruiz | 3. Repeat the same procedure with the *Lisa_Neph_1* aircraft |
72 | |||
73 | 16 | Rafael Bailon-Ruiz | {{thumbnail(paparazzi_center_instructions.png, size=600, title=Paparazzi center)}} |
74 | 1 | Rafael Bailon-Ruiz | |
75 | 19 | Rafael Bailon-Ruiz | _You only need to do this operation once, unless you modify the UAVs or change computers!_ |
76 | 11 | Rafael Bailon-Ruiz | |
77 | h3. Start the simulation |
||
78 | |||
79 | Open two new terminal windows and run respectively to start the simulation of both UAVs: |
||
80 | |||
81 | <pre><code class="shell"> |
||
82 | 22 | Rafael Bailon-Ruiz | cd nephelae_paparazzi/tests/sim_launchers && python3 sim_launcher.py Lisa_Neph_0 Lisa_Neph_1 |
83 | 11 | Rafael Bailon-Ruiz | </code></pre> |
84 | |||
85 | 22 | Rafael Bailon-Ruiz | Three new windows will appear |
86 | 11 | Rafael Bailon-Ruiz | |
87 | | !server_lisa_neph_0.png! | !server_lisa_neph_1.png! | |
||
88 | 1 | Rafael Bailon-Ruiz | |
89 | {{thumbnail(paparazzi_gcs_2_UAV_simulation_tutorial.png, size=600, title=Paparazzi GCS)}} |
||
90 | |||
91 | 19 | Rafael Bailon-Ruiz | Wait a couple of seconds for the simulation to warm up and then click on the *launch button* !gcs_launch_button.png! followed by the *takeoff button* !gcs_takeoff_button.png! on *Lisa_Neph_0* and *Lisa_Neph_1* |
92 | 13 | Rafael Bailon-Ruiz | |
93 | h2. Run the CAMS GUI |
||
94 | |||
95 | Go to the installation folder of nephelae_gui and in a terminal, run: |
||
96 | |||
97 | <pre><code class="shell"> |
||
98 | export NEPHELAE_CONFIG="/PATH/TO/tutorial_simulation_mesonh_2uav.yaml" |
||
99 | make runserver |
||
100 | </code></pre> |
||
101 | |||
102 | Replacing @/PATH/TO/@ with the actual path. |
||
103 | |||
104 | h2. Create a mission for a UAV |
||
105 | |||
106 | 15 | Rafael Bailon-Ruiz | Open the CAMS GUI on the _Mapping_ tab. Go http://0.0.0.0:8000/map/ |
107 | |||
108 | 16 | Rafael Bailon-Ruiz | {{thumbnail(CAMS gui mapping web.png, size=600, title=CAMS GUI mapping tab)}} |
109 | 15 | Rafael Bailon-Ruiz | |
110 | Click somewhere over the map —preferably over the center of a cloud indicated by green shades— and select _New mission_. The _create mission_ window for the aircraft 200 (Lisa_Neph_0) will appear. Click on _Create_ . |
||
111 | |||
112 | 16 | Rafael Bailon-Ruiz | {{thumbnail(CAMS gui create mission modal.png, size=300, title=CAMS GUI create mission dialog)}} |
113 | 15 | Rafael Bailon-Ruiz | |
114 | Go to the _Mission Validation_ tab and _Authorize_ the request to send the new mission to the paparazzi GCS. |
||
115 | |||
116 | 18 | Rafael Bailon-Ruiz | {{thumbnail(CAMS gui mission validation.png, size=600, title=CAMS GUI mission validation)}} |
117 | 15 | Rafael Bailon-Ruiz | |
118 | Switch to the paparazzi GCS window and click on the _Mission_ button !gcs_mission_button.png! corresponding to the Lisa_Neph_0 UAV. This will tell the drone to start the mission. |
||
119 | |||
120 | 16 | Rafael Bailon-Ruiz | Now you can follow the adaptive cloud mapping mission in the _Mapping_ tab of the CAMS GUI and monitor live raw data in the _Sensor data_ tab |
121 | 15 | Rafael Bailon-Ruiz | |
122 | 17 | Rafael Bailon-Ruiz | | {{thumbnail(CAMS gui adaptive mapping.png, size=400, title=CAMS GUI mapping)}} | {{thumbnail(CAMS GUI raw data.png, size=400, title=CAMS GUI raw data)}} | |
123 | 15 | Rafael Bailon-Ruiz | |
124 | !cloud_mapping_video.gif! |
||
125 | 21 | Rafael Bailon-Ruiz | |
126 | *For more information about the possibilities of CAMS you can continue exploring the [[Graphical User Interface Reference guide]].* |
||
127 | 23 | Rafael Bailon-Ruiz | |
128 | h2. Set an arbitrary horizontal wind for the UAVs |
||
129 | |||
130 | In the paparazzi center open the _Tools_ menu → _Environment Simulator_ to start the _Gaia_ window. You can select there the _desired wind_ and the _simulation speed_. |
||
131 | |||
132 | p{border: solid 1px #FF8C00; padding: 1em; margin: 1em; background: #FEE}. %{color:darkorange; font-weight: bold; font-size: large}Warning:% Changing the time scale setting can produce unintended consecuences with the accuracy of the flight simulation. *CAMS is tied to the wallclock so it will not be aware of this setting*! |