#!/bin/bash
cd "${0%/*}" || exit 1    # run from this directory

if [ -z "${SINGULARITY_NAME}" ]
then
    echo 'Not operating in Apptainer container - skipping test'
    exit 0
fi

# Source run functions
. "$WM_PROJECT_SITE/$WM_PROJECT_VERSION/bin/tools/RunFunctions"

runApplication  blockMesh
runApplication  decomposePar
runParallel     createZones

#------------------------------------------------------------------------------
