Additions
This commit is contained in:
parent
0f011d5001
commit
f30732fa3e
|
@ -3,8 +3,12 @@
|
|||
CARLA has integrated Carsim so we can forward all vehicle controls to Carsim and let him make all the physics calculations of the vehicle and send back the new state of the vehicle to CARLA.
|
||||
|
||||
* [__Requisites__](#requisites)
|
||||
* [__Prepare Carsim simulation__](#prepare-carsim-simulation)
|
||||
* [Carsim simulation file](#carsim-simulation-file)
|
||||
* [__Setup Carsim__](#setup-carsim)
|
||||
* [__SIM file__](#sim-file)
|
||||
* [__on Windows__](#on-windows)
|
||||
* [__on Ubuntu__](#on-ubuntu)
|
||||
* [__Vehicle sizes__](#vehicle-sizes)
|
||||
* [__Run simulation__](#run-simulation)
|
||||
|
||||
---
|
||||
## Requisites
|
||||
|
@ -17,14 +21,20 @@ We need to have a licence for Carsim software setup and running.
|
|||
|
||||
For the comunication with Unreal we need to install the plugin in UE called **vehicle dynamics** (it is free)
|
||||
|
||||
If you use the CARLA from source, then you need to compile the server part with the **--carsim** flag:
|
||||
If you use CARLA from source, then you need to compile the server part with the **--carsim** flag:
|
||||
```sh
|
||||
make CarlaUE4Editor ARGS="--carsim"
|
||||
```
|
||||
All packages are already compiled with the **--carsim**, so they are ready to use with Carsim.
|
||||
|
||||
## Prepare Carsim simulation
|
||||
## Setup Carsim
|
||||
#### SIM file
|
||||
|
||||
* Setup the simulation and generate the .sim file that UE4 plugin needs
|
||||
We need to generate the .sim file that describes the simulation to run in both parts (CARLA and Carsim). The Carsim plugin needs this file to know about the simulation to run.
|
||||
|
||||
##### on Windows
|
||||
|
||||
You can use the GUI to generate the file once you have all the parameters configured.
|
||||
|
||||
![generate .sim file](img/carsim_generate.jpg)
|
||||
|
||||
|
@ -60,8 +70,8 @@ PORTS_EXP 0
|
|||
DLLFILE D:\carsim\Programs\solvers\carsim_64.dll
|
||||
END
|
||||
```
|
||||
### Simfiles in Ubuntu
|
||||
For Ubuntu there is no a GUI way to create these files. You need to generate them in Windows and move the related .par, .txt, .vs files to Ubuntu. Then you need to modify the .sim file so that the variables `INPUT`, `INPUTARCHIVE`, `LOGFILE`, etc point towards the same files in your Ubuntu system. Finally, you need to replace the `DLLFILE` line to point towards the CarSim solver which th default installation will be `SOFILE /opt/carsim_2020.0/lib64/libcarsim.so.2020.0`. Your .sim file should similar to this:
|
||||
##### on Ubuntu
|
||||
For Ubuntu there is no a GUI way to create these files. You need to generate them in Windows and move the related .par, .txt, .vs files to Ubuntu. Then you need to modify the .sim file so that the variables `INPUT`, `INPUTARCHIVE`, `LOGFILE`, etc point towards the same files in your Ubuntu system. Finally, you need to replace the `DLLFILE` line to point towards the CarSim solver which th default installation will be `SOFILE /opt/carsim_2020.0/lib64/libcarsim.so.2020.0`. Your .sim file should be similar to this:
|
||||
|
||||
```
|
||||
SIMFILE
|
||||
|
@ -76,19 +86,30 @@ ERDFILE /path/to/LastRun.vs
|
|||
PROGDIR /opt/carsim_2020.0/lib64/
|
||||
DATADIR .
|
||||
PRODUCT_ID CarSim
|
||||
PRODUCT_VER 2020.1
|
||||
PRODUCT_VER 2020.0
|
||||
VEHICLE_CODE i_i
|
||||
|
||||
SOFILE /opt/carsim_2020.0/lib64/libcarsim.so.2020.0
|
||||
END
|
||||
```
|
||||
#### Vehicle sizes
|
||||
|
||||
* Create a vehicle and enable it for Carsim:
|
||||
|
||||
```sh
|
||||
vehicle.enable_carsim(<path_to_ue4simfile.sim>)
|
||||
```
|
||||
Now all controls sent to the vehicle will be forwarded to Carsim, who will update the physics and send back the status of the vehicle (the transform). Once the simulation has finished (or terminated) you can analyze the data with Carsim.
|
||||
Some mention need to be done about the vehicles sizes. Carsim let you specify each dimension of the vehicle to use, but currently there is no correspondence between a Carsim vehicle and a CARLA vehicle. That means that the vehicles in both parts have different dimensions, and the CARLA vehicle is only used as a placeholder in the simulation.
|
||||
|
||||
![carsim vehicle sizes](img/carsim_vehicle_sizes.jpg)
|
||||
|
||||
## Run simulation
|
||||
|
||||
You only need to spawn a CARLA vehicle and enable Carsim on that with the Python API function
|
||||
|
||||
```sh
|
||||
vehicle.enable_carsim(<path_to_ue4simfile.sim>)
|
||||
```
|
||||
|
||||
Now all input controls sent to the vehicle will be forwarded to Carsim, who will update the physics and send back the status of the vehicle (the transform) back to the CARLA vehicle.
|
||||
|
||||
Once the simulation has finished you can analyze all the data in Carsim as usually.
|
||||
|
||||
![carsim analysis](img/carsim_analysis.jpg)
|
||||
|
||||
|
||||
|
|
Binary file not shown.
After Width: | Height: | Size: 46 KiB |
Binary file not shown.
After Width: | Height: | Size: 86 KiB |
Loading…
Reference in New Issue