| ... | @@ -28,9 +28,13 @@ make | 
... | @@ -28,9 +28,13 @@ make | 
| 
 | 
```  
 | 
 | 
```  
 | 
| 
 | 
to compile W-SLDA codes. Note `make` command will compile all available versions of the code, see [here](https://gitlab.fizyka.pw.edu.pl/gabrielw/wslda/-/wikis/Types-of-codes) for more info. In order to compile only selected version of the code use:  
 | 
 | 
to compile W-SLDA codes. Note `make` command will compile all available versions of the code, see [here](https://gitlab.fizyka.pw.edu.pl/gabrielw/wslda/-/wikis/Types-of-codes) for more info. In order to compile only selected version of the code use:  
 | 
| 
 | 
```bash
 | 
 | 
```bash
 | 
| 
 | 
make 3d  # to create 3D version of the only
 | 
 | 
make 3d  # to create 3D version of the code only
 | 
| 
 | 
make 2d  # to create 2D version of the only
 | 
 | 
make 2d  # to create 2D version of the code only
 | 
| 
 | 
make 1d  # to create 1D version of the only
 | 
 | 
make 1d  # to create 1D version of the code only
 | 
 | 
 | 
 | 
```
 | 
 | 
 | 
 | 
In order to remove files generated by compilation command use:
 | 
 | 
 | 
 | 
```bash 
 | 
 | 
 | 
 | 
make clean
 | 
| 
 | 
```
 | 
 | 
```
 | 
| 
 | 
# Step 5: Define your problem
 | 
 | 
# Step 5: Define your problem
 | 
| 
 | 
You need to edit [problem-definition.h](https://gitlab.fizyka.pw.edu.pl/gabrielw/wslda/-/tree/public/st-project-template/problem-definition.h) in order to define your problem.  Update also [logger.h](https://gitlab.fizyka.pw.edu.pl/gabrielw/wslda/-/tree/public/st-project-template/logger.h) file if you need to report more refined quantities than only basic statistics (particle number, energy, etc.).  
 | 
 | 
You need to edit [problem-definition.h](https://gitlab.fizyka.pw.edu.pl/gabrielw/wslda/-/tree/public/st-project-template/problem-definition.h) in order to define your problem.  Update also [logger.h](https://gitlab.fizyka.pw.edu.pl/gabrielw/wslda/-/tree/public/st-project-template/logger.h) file if you need to report more refined quantities than only basic statistics (particle number, energy, etc.).  
 | 
| ... |  | ... |  |