Skip to content

xcompact3d/x3d2

Repository files navigation

x3d2: Next-Generation High-Fidelity CFD Solver

x3d2 is an open-source Computational Fluid Dynamics (CFD) solver, designed as the next-generation evolution of Xcompact3d. It uses high-order compact finite-difference methods for discretisation, and leverages GPU acceleration while maintaining spectral-like accuracy of its predecessor. x3d2 is optimised for High-Performance Computing (HPC) environments and supports both CPU and GPU parallelisation.

Key Features

  • High-Order Finite-Difference Methods: Compact finite-difference schemes delivering spectral-like accuracy on a monobloc Cartesian mesh, ensuring high-fidelity simulations.
  • Dual Parallelisation Backends:
    • OpenMP: Optimised for multi-core CPU execution.
    • CUDA: Designed for GPU acceleration on NVIDIA hardware.
  • Scalable Parallel Computing: Efficient MPI-based parallelisation for Direct and Large Eddy Simulations (DNS/LES) of turbulent flows, allowing for simulations on thousands of CPUs or GPUs.
  • Incompressible Flow Solver: Solves the Navier-Stokes equations with fractional time-stepping and spectral Poisson solvers.
  • Modern Software Engineering: x3d2 is being actively developed with a focus on maintainability, extensibility, and code quality.

Performance and Scalability

x3d2 is built for high-performance computing and is designed to scale efficiently on modern HPC architectures. Its performance is enhanced by:

  • DistD2-TDS: A novel algorithm for solving tridiagonal systems with improved data locality and minimal data movement. This algorithm is specifically optimised for both CPUs (using vectorisation) and GPUs (using thread-level parallelism) and significantly reduces inter-process communication.
  • 2D Domain Decomposition for FFT: x3d2 utilises 2D domain decomposition for Fast Fourier Transforms (FFTs), enabling greater scalability and allows for efficient parallelisation of the Poisson solver, especially for large simulations. x3d2 uses optimised FFT implementations (cuFFTMp library on NVIDIA GPUs and 2DECOMP&FFT on CPUs) to accelerate the solution of the Poisson equation.

Installation

See Getting Started for installation instructions for Linux and macOS platforms.

Documentation

Comprehensive user and developer documentation is available at Read the Docs. Documentation on the source code can be found in the API reference.

Contributing

We welcome contributions from the CFD community! Please check out Contributing to x3d2 for guidelines on submitting Pull Requests and reporting issues.

Acknowledgments

x3d2 builds upon Xcompact3d and benefits from contributions across multiple institutions. We acknowledge funding support and contributions from the Imperial College London Department of Aeronautics.

Current Status and Roadmap

x3d2 is under active development. We are actively working on implementing new features and adding more canonical simulation cases.