Skip to content

Commit 26eb988

Browse files
committed
Change name
1 parent 5a3d517 commit 26eb988

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ version: 1.0.0
1818
# doi: "11.1111/11111"
1919
# date-released: YYYY-MM-DD
2020
license: MIT
21-
url: "https://github.com/Albatross-Kite-Transport/VortexStepMethod.jl"
21+
url: "https://github.com/OpenSourceAWE/VortexStepMethod.jl"
2222
preferred-citation:
2323
type: article
2424
authors:

NEWS.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,8 @@ This project is based on version 1.0 of the Python project [Vortex-Step-Method](
7777

7878
## Noteworthy Differences of v1.0.1 to the Python version
7979
- implemented in Julia, therefore about 50 times faster
80-
- an importer for `.obj` wing geometry files was added (see: [#10](https://github.com/Albatross-Kite-Transport/VortexStepMethod.jl/issues/10))
81-
- automatic creation of polars using Xfoil.jl was added (see: [#43](https://github.com/Albatross-Kite-Transport/VortexStepMethod.jl/pull/43))
80+
- an importer for `.obj` wing geometry files was added (see: [#10](https://github.com/OpenSourceAWE/VortexStepMethod.jl/issues/10))
81+
- automatic creation of polars using Xfoil.jl was added (see: [#43](https://github.com/OpenSourceAWE/VortexStepMethod.jl/pull/43))
8282
- a ram-air kite example was added
8383
- `Umag` was replaced with `v_a` as variable name for the norm of the apparent wind speed
8484
- memory allocations were significantly reduced

docs/src/explanation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ Flowchart that describes how this software works:
1010

1111
[Fast Aero-Structural Model of a Leading-Edge Inflatable Kite](https://www.mdpi.com/1996-1073/16/7/3061) by Oriol Canon, Mac Gaunaa and Roland Schmehl, Energies 2023 16(7), doi: 10.3390/en16073061
1212

13-
For extensions of the original work see: [News.md](https://github.com/Albatross-Kite-Transport/VortexStepMethod.jl/blob/main/NEWS.md).
13+
For extensions of the original work see: [News.md](https://github.com/OpenSourceAWE/VortexStepMethod.jl/blob/main/NEWS.md).

docs/src/index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ including low aspect ratio wings, as well as configurations with sweep, dihedral
1010

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

13-
This package was translated from the Python code version 1.0.0 available at [https://github.com/ocayon/Vortex-Step-Method](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).
13+
This package was translated from the Python code version 1.0.0 available at [https://github.com/ocayon/Vortex-Step-Method](https://github.com/ocayon/Vortex-Step-Method) with some extensions as documented in [News.md](https://github.com/OpenSourceAWE/VortexStepMethod.jl/blob/main/NEWS.md).
1414

1515
## Installation
1616
Install [Julia 1.10](https://ufechner7.github.io/2024/08/09/installing-julia-with-juliaup.html) or later,
@@ -50,7 +50,7 @@ If you have git installed, check out this repo because it makes it easier to und
5050
```bash
5151
mkdir repos
5252
cd repos
53-
git clone https://github.com/Albatross-Kite-Transport/VortexStepMethod.jl
53+
git clone https://github.com/OpenSourceAWE/VortexStepMethod.jl
5454
cd VortexStepMethod.jl
5555
```
5656
You can launch Julia with:
@@ -137,10 +137,10 @@ See also the [documentation](https://albatross-kite-transport.github.io/VortexSt
137137

138138
## Citation
139139
If you use this project in your research, please consider citing it.
140-
Citation details can be found in the [CITATION.cff](https://github.com/Albatross-Kite-Transport/VortexStepMethod.jl/blob/main/CITATION.cff) file included in this repository.
140+
Citation details can be found in the [CITATION.cff](https://github.com/OpenSourceAWE/VortexStepMethod.jl/blob/main/CITATION.cff) file included in this repository.
141141

142142
## License
143-
This project is licensed under the MIT License - see the [LICENSE](https://github.com/Albatross-Kite-Transport/VortexStepMethod.jl/blob/main/LICENSE) file for details.
143+
This project is licensed under the MIT License - see the [LICENSE](https://github.com/OpenSourceAWE/VortexStepMethod.jl/blob/main/LICENSE) file for details.
144144

145145
## WAIVER
146146
Technische Universiteit Delft hereby disclaims all copyright interest in the package “VortexStepMethod.jl” written by the Author(s).

docs/src/tips_and_tricks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Currently, the `solve!()` function returns the results as [VSMSolution](@ref) st
2020
Calling `init!(body_aero; init_aero=false)` is very fast. After calling `deform!(wing)`, you have to run `init!(body_aero; init_aero=false)` to apply the deformed wing to the body aerodynamics. This is in turn necessary for the linearization from deformation to aerodynamic coefficients for RAM-air kites.
2121

2222
## Contributing
23-
Please, read [CONTRIBUTING.md](https://github.com/Albatross-Kite-Transport/VortexStepMethod.jl/blob/main/CONTRIBUTING.md)
23+
Please, read [CONTRIBUTING.md](https://github.com/OpenSourceAWE/VortexStepMethod.jl/blob/main/CONTRIBUTING.md)
2424

2525
## Building the documentation locally
2626
You can build the documentation locally after checking out the source code with git, launching Julia and executing:

0 commit comments

Comments
 (0)