diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index d8b226d1..6ca6e8cd 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -37,9 +37,6 @@ jobs: - name: Install matplotlib run: if [ "$RUNNER_OS" = "Linux" ]; then sudo apt-get install -y python3-matplotlib; fi shell: bash - - name: Install LaTeX - run: if [ "$RUNNER_OS" = "Linux" ]; then sudo apt-get -qq install texlive-full; fi - shell: bash - uses: actions/checkout@v4 - uses: julia-actions/setup-julia@v2 with: diff --git a/README.md b/README.md index 34a207dd..560936d3 100644 --- a/README.md +++ b/README.md @@ -8,8 +8,7 @@ # Aerodynamic models of 3D wings using the Vortex Step Method 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. -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. +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. The software presented here includes a couple of examples: a rectangular wing, a leading-edge inflatable kite and a ram-air kite. @@ -17,10 +16,9 @@ This package was translated from the Python code version 1.0.0 available at http ## Installation 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, Matplotlib and LaTeX are installed: +if you haven't already. On Linux, make sure that Python3 and Matplotlib are installed: ``` sudo apt install python3-matplotlib -sudo apt install texlive-full texlive-fonts-extra cm-super ``` Furthermore, the packages `TestEnv` and `ControlPlots` must be installed globally: ``` @@ -80,7 +78,7 @@ To browse the code, it is suggested to use [VSCode](https://code.visualstudio.co Three kinds of input data is needed: - The wing geometry, defined by section: - - for the rectangualar wing two sections, two points in CAD reference frame + polars + - for the rectangular wing two sections, two points in CAD reference frame + polars (three different options to provide them) per section - kite wing: model of polars included, n sections to define diff --git a/docs/src/index.md b/docs/src/index.md index b3a16bde..63018428 100644 --- a/docs/src/index.md +++ b/docs/src/index.md @@ -14,10 +14,9 @@ This package was translated from the Python code version 1.0.0 available at [htt ## Installation 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, Matplotlib and LaTeX are installed: +if you haven't already. On Linux, make sure that Python3 and Matplotlib are installed: ``` sudo apt install python3-matplotlib -sudo apt install texlive-full texlive-fonts-extra cm-super ``` Furthermore, the packages `TestEnv` and `ControlPlots` must be installed globally: ```