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
2 changes: 1 addition & 1 deletion .github/workflows/check_and_test_package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ jobs:
run: python3 -m pip install --editable .[test]

- name: Run tests
run: python3 -m pytest -n 2 tests
run: python3 -m pytest tests

- name: Upload coverage report to codecov
if: matrix.os == 'ubuntu-latest'
Expand Down
38 changes: 38 additions & 0 deletions CITATION.cff
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
cff-version: 1.2.0
message: "If you use this software, please cite the following paper."
type: software
title: "VaSP - Vascular Fluid-Structure Interaction Pipeline"
version: "0.1.0"
license: "GPL-3.0-or-later"
repository-code: "https://github.com/KVSlab/VaSP"
url: "https://kvslab.github.io/VaSP/"
authors:
- family-names: Yamamoto
given-names: Kei
- family-names: Ring
given-names: Johannes
- family-names: Bruneau
given-names: David A.
- family-names: Dokken
given-names: Jørgen S.
preferred-citation:
type: article
title: "VaSP: Vascular Fluid–Structure Interaction Pipeline"
authors:
- family-names: Yamamoto
given-names: Kei
- family-names: Bruneau
given-names: David A.
- family-names: Ring
given-names: Johannes
- family-names: Dokken
given-names: Jørgen S.
- family-names: Valen-Sendstad
given-names: Kristian
journal: SoftwareX
volume: "32"
pages: "102392"
year: 2025
doi: "10.1016/j.softx.2025.102392"
issn: "2352-7110"
url: "https://www.sciencedirect.com/science/article/pii/S2352711025003589"
19 changes: 19 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,25 @@ More details on installation via `conda` can be found [here](https://kvslab.gith
## Documentation
The documentation is hosted [here](https://kvslab.github.io/VaSP/).

## Citation
If you use VaSP in your research, please cite:

```bibtex
@article{Yamamoto2025VaSP,
title = {VaSP: Vascular Fluid–Structure Interaction Pipeline},
author = {Yamamoto, Kei and Bruneau, David A. and Ring, Johannes and Dokken, Jørgen S. and Valen-Sendstad, Kristian},
journal = {SoftwareX},
volume = {32},
pages = {102392},
year = {2025},
issn = {2352-7110},
doi = {10.1016/j.softx.2025.102392},
url = {https://www.sciencedirect.com/science/article/pii/S2352711025003589}
}
```

The paper is available [here](https://doi.org/10.1016/j.softx.2025.102392).

## License
This software is licensed under the **GNU General Public License (GPL), version 3 or (at your option) any later version**.

Expand Down
Loading