Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Download v1.7 from https://zenodo.org/records/10684609/files/olb-1.7r0.tgz.

Code Block
UntarUncompress olb-1.7r0.tgz
cd olb-1.7r0
Edit config.mk

...

Code Block
#!/bin/bash
module load intel/2023.2
module load compiler mkl

MPI=impi-2021.10.0
MPI=hpcx-2.18
module load hpcx/2.18<MPI>
if [[ "$MPI" =~ ^impi ]]; then
        export MPICC=mpiicc
        export MPICXX=mpiicpc
elif [[ "$MPI" =~ ^hpcx ]]; then
        export OMPI_MPICC=icc
        export OMPI_MPICXX=icpc
        export MPICC=mpicc
        export MPICXX=mpicxx
fi
make clean
make

...

  1. Download the input

    View file
    nameisc2024-olb.zip
    .

    • Uncompress Unzip the file input to OpenLB root directory.

    • cd rayleighTaylor3d

    • make

  2. Run the application

    • mpirun -np <NPROC> <MPIFLAGS> rayleighTaylor3d

  3. Submit the stdout, config.mk, and Makefile. Do not submit binary output files nor multiple results.

...