-
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New subpackage: assets New module: output.base
- Loading branch information
Showing
38 changed files
with
370 additions
and
226 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
# Authors | ||
|
||
* [Ashwin Vishnu Mohanan](mailto:[email protected]) | ||
* [Luigi Antonialli](mailto:[email protected]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# Project *eTurb* | ||
|
||
[![](https://github.com/exabl/eturb/workflows/Tests/badge.svg)](https://github.com/exabl/eturb/actions?workflow=Tests) | ||
[![](https://github.com/exabl/eturb/workflows/Docs/badge.svg)](https://github.com/exabl/eturb/actions?workflow=Docs) | ||
[![](https://github.com/exabl/snek5000/workflows/Tests/badge.svg)](https://github.com/exabl/snek5000/actions?workflow=Tests) | ||
[![](https://github.com/exabl/snek5000/workflows/Docs/badge.svg)](https://github.com/exabl/snek5000/actions?workflow=Docs) | ||
|
||
**Efficient** simulations of **turbulent** atmospheric boundary layer. | ||
|
||
|
@@ -10,10 +10,10 @@ | |
|
||
```sh | ||
# Clone | ||
git clone --recursive [email protected]:exabl/eturb.git | ||
git clone --recursive [email protected]:exabl/snek5000.git | ||
|
||
# Activate paths: Start here. Always! | ||
cd eturb | ||
cd snek5000 | ||
source activate.sh | ||
|
||
# Build Nek5000 | ||
|
@@ -38,8 +38,8 @@ do this (and it has to be done only once): | |
``` | ||
- Using `conda` | ||
```sh | ||
conda env create -n eturb -f environment.yml | ||
conda activate eturb | ||
conda env create -n snek5000 -f environment.yml | ||
conda activate snek5000 | ||
pip install -e . | ||
``` | ||
After setting up Python, you can do either of the following: | ||
|
@@ -60,11 +60,11 @@ After setting up Python, you can do either of the following: | |
snakemake clean | ||
cd - | ||
|
||
2. Use the **[`eturb` Python | ||
API](https://exabl.github.io/eturb/_generated/eturb.html)**, based on | ||
2. Use the **[`snek5000` Python | ||
API](https://exabl.github.io/snek5000/_generated/snek5000.html)**, based on | ||
[fluidsim](https://fluidsim.readthedocs.io) | ||
```python | ||
from eturb.solvers.abl import Simul | ||
from snek5000.solvers.abl import Simul | ||
params = Simul.create_default_params() | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
[metadata] | ||
author = Ashwin Vishnu Mohanan | ||
author_email = [email protected] | ||
url = https://exabl.github.io/eturb | ||
name = eturb | ||
description = Python utilities for eturb project | ||
url = https://github.com/exabl/snek5000-abl | ||
name = abl | ||
description = Python utilities for snek5000 project | ||
long_description = file: README.md, HISTORY.md | ||
long_description_content_type = text/markdown | ||
license = BSD-3-Clause | ||
|
@@ -65,5 +65,5 @@ ignore = E501,W503,W505 | |
max-line-lenght = 82 | ||
|
||
[isort] | ||
known_first_party = fluiddyn, fluidsim, eturb, abl | ||
known_first_party = fluiddyn, fluidsim, snek5000, abl | ||
multi_line_output = 3 |
Oops, something went wrong.