mirror of
https://github.com/OPM/opm-upscaling.git
synced 2026-08-26 21:17:11 -05:00
39 lines
1.1 KiB
Bash
Executable File
39 lines
1.1 KiB
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
if test $# -eq 0
|
|
then
|
|
echo -e "Usage:\t$0 <options> -- [additional simulator options]"
|
|
echo -e "\tMandatory options:"
|
|
echo -e "\t\t -i <path> Path to read deck from"
|
|
echo -e "\t\t -r <path> Path to store results in"
|
|
echo -e "\t\t -b <path> Path to simulator binary"
|
|
echo -e "\t\t -n <name> Test name"
|
|
echo -e "\t\t -a <tol> Absolute tolerance in comparison"
|
|
echo -e "\t\t -t <tol> Relative tolerance in comparison"
|
|
echo -e "\t\t -e <filename> Simulator binary to use"
|
|
exit 1
|
|
fi
|
|
|
|
OPTIND=1
|
|
while getopts "i:r:b:n:a:t:e:" OPT
|
|
do
|
|
case "${OPT}" in
|
|
i) INPUT_DATA_PATH=${OPTARG} ;;
|
|
r) RESULT_PATH=${OPTARG} ;;
|
|
b) BINPATH=${OPTARG} ;;
|
|
n) TEST_NAME=${OPTARG} ;;
|
|
a) ABS_TOL=${OPTARG} ;;
|
|
t) REL_TOL=${OPTARG} ;;
|
|
e) EXE_NAME=${OPTARG} ;;
|
|
esac
|
|
done
|
|
shift $(($OPTIND-1))
|
|
TEST_ARGS="$@"
|
|
|
|
rm -Rf ${RESULT_PATH}
|
|
mkdir -p ${RESULT_PATH}
|
|
|
|
${BINPATH}/${EXE_NAME} ${TEST_ARGS}
|
|
${BINPATH}/compareUpscaling ${INPUT_DATA_PATH}/reference_solutions/${TEST_NAME}.txt ${RESULT_PATH}/${TEST_NAME}.txt ${ABS_TOL} ${REL_TOL}
|