#!/bin/bash ####################################################################################################################### # Variables that are required to define the test case EXPID="rfipsp" ICON_CASE="real-from-ideal" ICON_VERSION="psp" PLATFORM="LOCAL" EXTRA_NAMELIST=$( cat <<-END atmosphere_namelist: | nwp_phy_nml: inwp_psp: 1 psp_scale: 5.0 atmosphere_namelist_ideal: | nwp_phy_nml: inwp_psp: 1 psp_scale: 5.0 END ) EXTRA_CONFIGURATION="" ####################################################################################################################### set -euo pipefail # Get path to the script directory SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null 2>&1 && pwd)" # Import the function run_autoicon_example source ${SCRIPT_DIR}/example_utils.sh # Setup and run the experiment run_autoicon_example "$EXPID" "$ICON_CASE" "$ICON_VERSION" "$PLATFORM" "${EXTRA_NAMELIST}" "${EXTRA_CONFIGURATION}"