You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+22Lines changed: 22 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,28 @@ The software presented here includes a couple of examples: a rectangular wing an
8
8
9
9
This package was translated from the Python code available at https://github.com/awegroup/Vortex-Step-Method .
10
10
11
+
## Installation
12
+
Install [Julia 1.10](https://ufechner7.github.io/2024/08/09/installing-julia-with-juliaup.html) or later, if you haven't already. On Linux, make sure that Python3 and Matplotlib are installed:
13
+
```
14
+
sudo apt install python3-matplotlib
15
+
```
16
+
17
+
Before installing this software it is suggested to create a new project, for example like this:
18
+
```bash
19
+
mkdir test
20
+
cdtest
21
+
julia --project=.
22
+
```
23
+
Then add VortexStepMethod from Julia's package manager, by typing:
24
+
```julia
25
+
using Pkg
26
+
pkg"add VortexStepMethod"
27
+
```
28
+
at the Julia prompt. You can run the unit tests with the command:
0 commit comments