Skip to content

Commit 75e5d29

Browse files
authored
Do not use LaTeX for CI (#118)
* Do not use LaTeX * Update README.md --------- Co-authored-by: Uwe Fechner <[email protected]>
1 parent 276e99a commit 75e5d29

File tree

3 files changed

+4
-10
lines changed

3 files changed

+4
-10
lines changed

.github/workflows/CI.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,6 @@ jobs:
3737
- name: Install matplotlib
3838
run: if [ "$RUNNER_OS" = "Linux" ]; then sudo apt-get install -y python3-matplotlib; fi
3939
shell: bash
40-
- name: Install LaTeX
41-
run: if [ "$RUNNER_OS" = "Linux" ]; then sudo apt-get -qq install texlive-full; fi
42-
shell: bash
4340
- uses: actions/checkout@v4
4441
- uses: julia-actions/setup-julia@v2
4542
with:

README.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,17 @@
88
# Aerodynamic models of 3D wings using the Vortex Step Method
99

1010
The Vortex Step Method (VSM) is an enhanced lifting line method that improves upon the classic approach by solving the circulation system at the three-quarter chord position, among the most important details. This adjustment allows for more accurate calculations of lift and drag forces, particularly addressing the shortcomings in induced drag prediction.
11-
VSM is further refined by coupling it with 2D viscous airfoil polars, making it well-suited for complex geometries,
12-
including low aspect ratio wings, as well as configurations with sweep, dihedral, and anhedral angles.
11+
VSM is further refined by coupling it with 2D viscous airfoil polars, making it well-suited for complex geometries, including low aspect ratio wings, as well as configurations with sweep, dihedral, and anhedral angles.
1312

1413
The software presented here includes a couple of examples: a rectangular wing, a leading-edge inflatable kite and a ram-air kite.
1514

1615
This package was translated from the Python code version 1.0.0 available at https://github.com/ocayon/Vortex-Step-Method with some extensions as documented in [News.md](https://github.com/Albatross-Kite-Transport/VortexStepMethod.jl/blob/main/NEWS.md).
1716

1817
## Installation
1918
Install [Julia 1.10](https://ufechner7.github.io/2024/08/09/installing-julia-with-juliaup.html) or later,
20-
if you haven't already. On Linux, make sure that Python3, Matplotlib and LaTeX are installed:
19+
if you haven't already. On Linux, make sure that Python3 and Matplotlib are installed:
2120
```
2221
sudo apt install python3-matplotlib
23-
sudo apt install texlive-full texlive-fonts-extra cm-super
2422
```
2523
Furthermore, the packages `TestEnv` and `ControlPlots` must be installed globally:
2624
```
@@ -80,7 +78,7 @@ To browse the code, it is suggested to use [VSCode](https://code.visualstudio.co
8078
Three kinds of input data is needed:
8179

8280
- The wing geometry, defined by section:
83-
- for the rectangualar wing two sections, two points in CAD reference frame + polars
81+
- for the rectangular wing two sections, two points in CAD reference frame + polars
8482
(three different options to provide them) per section
8583
- kite wing: model of polars included, n sections to define
8684

docs/src/index.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,9 @@ This package was translated from the Python code version 1.0.0 available at [htt
1414

1515
## Installation
1616
Install [Julia 1.10](https://ufechner7.github.io/2024/08/09/installing-julia-with-juliaup.html) or later,
17-
if you haven't already. On Linux, make sure that Python3, Matplotlib and LaTeX are installed:
17+
if you haven't already. On Linux, make sure that Python3 and Matplotlib are installed:
1818
```
1919
sudo apt install python3-matplotlib
20-
sudo apt install texlive-full texlive-fonts-extra cm-super
2120
```
2221
Furthermore, the packages `TestEnv` and `ControlPlots` must be installed globally:
2322
```

0 commit comments

Comments
 (0)