Skip to main content

A set of tools for pre and postprocessing prepared for the high-order Navier-Stokes solver XCompact3d

Project description

Xcompact3d Toolbox

Build Status Documentation Status PyPI version Code style: black

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 (see examples). 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

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
pip install xcompact3d-toolbox[doc]  # dependencies to build the documentation
pip install xcompact3d-toolbox[dev]  # tools for development
pip install xcompact3d-toolbox[test] # tools for testing
pip install xcompact3d-toolbox[all]  # all the above

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 all dependencies as well:

pip install -e .[all]

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.

Try it Online

badge badge

Click on any link above to launch Binder and interact with our notebooks in a live environment!

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:

      prm.dataset.write_xdmf()
      
  • User interface for the parameters with IPywidgets:

    prm = x3d.ParametersGui()
    prm
    

    An animation showing the graphical user interface in action

Copyright and License

All content is under GPL-3.0 License.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

xcompact3d_toolbox-1.1.0.tar.gz (87.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

xcompact3d_toolbox-1.1.0-py3-none-any.whl (71.9 kB view details)

Uploaded Python 3

File details

Details for the file xcompact3d_toolbox-1.1.0.tar.gz.

File metadata

  • Download URL: xcompact3d_toolbox-1.1.0.tar.gz
  • Upload date:
  • Size: 87.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for xcompact3d_toolbox-1.1.0.tar.gz
Algorithm Hash digest
SHA256 d0aca3d4a4af2bd6d0f0e7b47b7f03c36dcaab4805e01c97a625417c69217ee1
MD5 d606c0265c7f6f5f3cc6e4c5fce8bc06
BLAKE2b-256 237ea77e9f3524c6e7dda15ef6566af5aa7f76a74454b87567eb869d8fdd9523

See more details on using hashes here.

File details

Details for the file xcompact3d_toolbox-1.1.0-py3-none-any.whl.

File metadata

  • Download URL: xcompact3d_toolbox-1.1.0-py3-none-any.whl
  • Upload date:
  • Size: 71.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for xcompact3d_toolbox-1.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 7912af9fe99fe6fc10197b9296fab49fb7012650f866bf3772634e14713fa150
MD5 6929c124376cca28b34f5979bea4f2ff
BLAKE2b-256 7bdd7f53cd2a98af89146c4d4bfead69568c8ce1eae4e990ada99fc4e2eeed35

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page