A set of tools for pre and postprocessing prepared for the high-order Navier-Stokes solver XCompact3d
Project description
Xcompact3d Toolbox
QA | |
Docs | |
Package | |
Meta |
It is a Python package designed to handle the pre and postprocessing of the high-order Navier-Stokes solver XCompact3d. It aims to help users and code developers to build case-specific solutions with a set of tools and automated processes.
The physical and computational parameters are built on top of traitlets, a framework that lets Python classes have attributes with type checking, dynamically calculated default values, and ‘on change’ callbacks. In addition to ipywidgets for an user friendly interface.
Data structure is provided by xarray (see Why xarray?), that introduces labels in the form of dimensions, coordinates and attributes on top of raw NumPy-like arrays, which allows for a more intuitive, more concise, and less error-prone developer experience. It integrates tightly with dask for parallel computing and hvplot for interactive data visualization.
Finally, Xcompact3d-toolbox is fully integrated with the new Sandbox Flow Configuration. The idea is to easily provide everything that XCompact3d needs from a Jupyter Notebook, like initial conditions, solid geometry, boundary conditions, and the parameters. It makes life easier for beginners, that can run any new flow configuration without worrying about Fortran and 2decomp. For developers, it works as a rapid prototyping tool, to test concepts and then compare results to validate any future Fortran implementation.
Useful links
- Documentation;
- Changelog;
- Suggestions for new features and bug report;
- See what is coming next (Project page);
- Xcompact3d's repository.
Installation
It is possible to install using pip:
pip install xcompact3d-toolbox
There are other dependency sets for extra functionality:
pip install xcompact3d-toolbox[visu] # interactive visualization with hvplot and others
To install from source, clone de repository:
git clone https://github.com/fschuch/xcompact3d_toolbox.git
And then install it interactively with pip:
cd xcompact3d_toolbox
pip install -e .
You can install additional dependencies as well:
pip install -e .[visu]
Now, any change you make at the source code will be available at your local installation, with no need to reinstall the package every time.
Examples
-
Importing the package:
import xcompact3d_toolbox as x3d
-
Loading the parameters file (both
.i3d
and.prm
are supported, see #7) from the disc:prm = x3d.Parameters(loadfile="input.i3d") prm = x3d.Parameters(loadfile="incompact3d.prm")
-
Specifying how the binary fields from your simulations are named, for instance:
-
If the simulated fields are named like
ux-000.bin
:prm.dataset.filename_properties.set( separator = "-", file_extension = ".bin", number_of_digits = 3 )
-
If the simulated fields are named like
ux0000
:prm.dataset.filename_properties.set( separator = "", file_extension = "", number_of_digits = 4 )
-
There are many ways to load the arrays produced by your numerical simulation, so you can choose what best suits your post-processing application. All arrays are wrapped into xarray objects, with many useful methods for indexing, comparisons, reshaping and reorganizing, computations and plotting. See the examples:
-
Load one array from the disc:
ux = prm.dataset.load_array("ux-0000.bin")
-
Load the entire time series for a given variable:
ux = prm.dataset["ux"]
-
Load all variables from a given snapshot:
snapshot = prm.dataset[10]
-
Loop through all snapshots, loading them one by one:
for ds in prm.dataset: # compute something vort = ds.uy.x3d.first_derivative("x") - ds.ux.x3d.first_derivative("y") # write the results to the disc prm.dataset.write(data = vort, file_prefix = "w3")
-
Or simply load all snapshots at once (if you have enough memory):
ds = prm.dataset[:]
-
It is possible to produce a new xdmf file, so all data can be visualized on any external tool:
-
Loop through all snapshots, loading them one by one:
-
User interface for the parameters with IPywidgets:
ds = prm.dataset[:]
-
It is possible to produce a new xdmf file, so all data can be visualized on any external tool:
prm.dataset.write_xdmf()
-
User interface for the parameters with IPywidgets:
prm = x3d.ParametersGui() prm
Copyright and License
© 2020 Felipe N. Schuch. All content is under GPL-3.0 License.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file xcompact3d_toolbox-1.2.1.tar.gz
.
File metadata
- Download URL: xcompact3d_toolbox-1.2.1.tar.gz
- Upload date:
- Size: 405.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 402a84a50056ae14e83a4179db50cf5b8abb955b7cde9a46452905249e94d63a |
|
MD5 | 4cc415047a994520ea310013d6b513af |
|
BLAKE2b-256 | 3dc32a756b981a68d43523728e3a6fa4187efd79fd37e1db48067f54272d2505 |
File details
Details for the file xcompact3d_toolbox-1.2.1-py3-none-any.whl
.
File metadata
- Download URL: xcompact3d_toolbox-1.2.1-py3-none-any.whl
- Upload date:
- Size: 68.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ff646c162308402be730b253dbf350ce44b842ee93329703ab86e53302cf43c6 |
|
MD5 | 965ade3bada56b5550df09dc2b936f18 |
|
BLAKE2b-256 | addee2d65ac485986673452b3d15f7ec458dd59b2942513ea9bbbb3023777c8d |