Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
Manifest.toml
.vscode/settings.json
venv
results/TUDELFT_V3_LEI_KITE/polars/$C_L$ vs $C_D$.pdf
4 changes: 4 additions & 0 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ authors:
- family-names: "Poland"
given-names: "Jelle Agatho Wilhelm"
orcid: "https://orcid.org/0000-0003-3164-5648"
- family-names: "van de Lint"
given-names: "Bart"
- family-names: "Fechner"
given-names: "Uwe"
title: "VortexStepMethod.jl"
keywords:
- Airborne Wind Energy, AWE, AWES, Vortex step methods
Expand Down
19 changes: 19 additions & 0 deletions docs/developers.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
## Notes for developers

### How to check the .cff file

You can validate the `CITATION.cff` file with the command:
```bash
cffconvert --validate
```

You can install the script `cffconvert` with the command:
```bash
python3 -m venv venv
source venv/bin/activate
python3 -m pip install cffconvert
```
After using the tool, deactivate the Python environment with:
```bash
deactivate
```
Loading