33 lines
554 B
Markdown
33 lines
554 B
Markdown
Brownian Motion Integrator Implementation
|
|
===============
|
|
|
|
This is a sample Implementation for different BD Algorithm
|
|
|
|
1. Classic Euler algorithm
|
|
2. Heun algorithm
|
|
3. Exact solution
|
|
4. BDAS - RotationMatrix
|
|
5. MBD
|
|
|
|
The current implementation allows only the use for a 2D case
|
|
|
|
build
|
|
-----
|
|
|
|
To build this project you need to install
|
|
- conan ```pip3 install --user conan```
|
|
- CMake
|
|
|
|
To generate the build files
|
|
```shell
|
|
cmake -S . -B build
|
|
```
|
|
For build configuration use
|
|
```shell
|
|
ccmake build
|
|
```
|
|
and to build the program
|
|
```shell
|
|
cmake --build build
|
|
```
|