mirror of
https://github.com/OPM/opm-simulators.git
synced 2024-12-24 00:10:02 -06:00
changed: compareECL now needs -t UNRST
previously this was the default, now the default is to compare files of all types.
This commit is contained in:
parent
c4bcd9e467
commit
cdd1048b68
@ -37,11 +37,11 @@ then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
echo "=== Executing comparison for restart file ==="
|
echo "=== Executing comparison for restart file ==="
|
||||||
${COMPARE_ECL_COMMAND} -l ${RESULT_PATH}/${FILENAME} ${RESULT_PATH}/mpi/${FILENAME} ${ABS_TOL} ${REL_TOL}
|
${COMPARE_ECL_COMMAND} -l -t UNRST ${RESULT_PATH}/${FILENAME} ${RESULT_PATH}/mpi/${FILENAME} ${ABS_TOL} ${REL_TOL}
|
||||||
if [ $? -ne 0 ]
|
if [ $? -ne 0 ]
|
||||||
then
|
then
|
||||||
ecode=1
|
ecode=1
|
||||||
${COMPARE_ECL_COMMAND} -a -l ${RESULT_PATH}/${FILENAME} ${RESULT_PATH}/mpi/${FILENAME} ${ABS_TOL} ${REL_TOL}
|
${COMPARE_ECL_COMMAND} -a -l -t UNRST ${RESULT_PATH}/${FILENAME} ${RESULT_PATH}/mpi/${FILENAME} ${ABS_TOL} ${REL_TOL}
|
||||||
fi
|
fi
|
||||||
|
|
||||||
exit $ecode
|
exit $ecode
|
||||||
|
@ -47,11 +47,11 @@ then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
echo "=== Executing comparison for restart file ==="
|
echo "=== Executing comparison for restart file ==="
|
||||||
${COMPARE_ECL_COMMAND} -l ${RESULT_PATH}/${FILENAME} ${RESULT_PATH}/${FILENAME}_RESTART ${ABS_TOL} ${REL_TOL}
|
${COMPARE_ECL_COMMAND} -l -t UNRST ${RESULT_PATH}/${FILENAME} ${RESULT_PATH}/${FILENAME}_RESTART ${ABS_TOL} ${REL_TOL}
|
||||||
if [ $? -ne 0 ]
|
if [ $? -ne 0 ]
|
||||||
then
|
then
|
||||||
ecode=1
|
ecode=1
|
||||||
${COMPARE_ECL_COMMAND} -a -l ${RESULT_PATH}/${FILENAME} ${RESULT_PATH}/${FILENAME}_RESTART ${ABS_TOL} ${REL_TOL}
|
${COMPARE_ECL_COMMAND} -a -l -t UNRST ${RESULT_PATH}/${FILENAME} ${RESULT_PATH}/${FILENAME}_RESTART ${ABS_TOL} ${REL_TOL}
|
||||||
fi
|
fi
|
||||||
|
|
||||||
exit $ecode
|
exit $ecode
|
||||||
|
Loading…
Reference in New Issue
Block a user