Skip to article frontmatterSkip to article content

This Month In Fluiddyn - Feb 2024 edition

#ThisMonthInFluiddyn - Feb 2024 edition

A big one, where many FluidDyn packages starts rolling on wheels πŸš— 🏁 !

pip install fluidfft pyfftw
# Installation in a ubuntu-based distro MPI+FFTW+fluidfft
sudo apt install openmpi-bin libopenmpi-dev
sudo apt install libfftw3-mpi-dev
python3 -m venv venv
source venv/bin/activate
pip install fluidfft mpi4py
pip install pyfftw  # easiest FFTW backend to install
pip install fluidfft-fftw  # optional sequential FluidFFT plugins
pip install fluidfft-fftwmpi fluidfft-mpi-with-fftw  # optional parallelized FluidFFT plugins
FootnotesΒΆ
  1. These are source distributions (a.k.a. sdists / *.tar.gz files). You will need to install an MPI runtime + library and FFTW library to use them. In Ubuntu-based distro, the above instructions should work.