Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PBL, Convection and Microphysics Update for HR2 #1731

Merged
merged 18 commits into from
May 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion FV3
Submodule FV3 updated 1 files
+1 −1 ccpp/physics
1,375 changes: 676 additions & 699 deletions tests/RegressionTests_acorn.intel.log

Large diffs are not rendered by default.

462 changes: 231 additions & 231 deletions tests/RegressionTests_cheyenne.gnu.log

Large diffs are not rendered by default.

1,388 changes: 694 additions & 694 deletions tests/RegressionTests_cheyenne.intel.log

Large diffs are not rendered by default.

610 changes: 311 additions & 299 deletions tests/RegressionTests_hera.gnu.log

Large diffs are not rendered by default.

1,412 changes: 706 additions & 706 deletions tests/RegressionTests_hera.intel.log

Large diffs are not rendered by default.

1,360 changes: 674 additions & 686 deletions tests/RegressionTests_jet.intel.log

Large diffs are not rendered by default.

1,422 changes: 711 additions & 711 deletions tests/RegressionTests_orion.intel.log

Large diffs are not rendered by default.

1,185 changes: 581 additions & 604 deletions tests/RegressionTests_wcoss2.intel.log

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion tests/rt.conf
Original file line number Diff line number Diff line change
Expand Up @@ -309,4 +309,4 @@ COMPILE | -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON
RUN | regional_atmaq_debug | - jet.intel gaea.intel cheyenne.intel | fv3 |

COMPILE | -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON | | fv3 |
RUN | regional_atmaq_faster | - jet.intel | fv3 |
RUN | regional_atmaq_faster | - jet.intel wcoss2.intel acorn.intel | fv3 |
2 changes: 1 addition & 1 deletion tests/rt.sh
Original file line number Diff line number Diff line change
Expand Up @@ -468,7 +468,7 @@ if [[ $TESTS_FILE =~ '35d' ]] || [[ $TESTS_FILE =~ 'weekly' ]]; then
fi


BL_DATE=20230430
BL_DATE=20230504

RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-${BL_DATE}/${RT_COMPILER^^}}

Expand Down
15 changes: 10 additions & 5 deletions tests/rt_utils.sh
Original file line number Diff line number Diff line change
Expand Up @@ -360,13 +360,18 @@ check_results() {
printf ".......ALT CHECK.."
if [[ ${MACHINE_ID} =~ orion || ${MACHINE_ID} =~ hera || ${MACHINE_ID} =~ gaea || ${MACHINE_ID} =~ jet || ${MACHINE_ID} =~ cheyenne ]] ; then
nccmp -d -f -g -B --Attribute=checksum --warn=format ${RTPWD}/${CNTL_DIR}/${i} ${RUNDIR}/${i} > ${i}_nccmp.log 2>&1 && d=$? || d=$?
if [[ $d -ne 0 && $d -ne 1 ]]; then
echo "....ERROR" >> ${REGRESSIONTEST_LOG}
echo "....ERROR"
exit 1
fi
else
${PATHRT}/compare_ncfile.py ${RTPWD}/${CNTL_DIR}/$i ${RUNDIR}/$i > compare_ncfile.log 2>&1 && d=$? || d=$?
fi
if [[ $d -eq 1 ]]; then
echo "....ERROR" >> ${REGRESSIONTEST_LOG}
echo "....ERROR"
exit 1
if [[ $d -eq 1 ]]; then
echo "....ERROR" >> ${REGRESSIONTEST_LOG}
echo "....ERROR"
exit 1
fi
fi
fi
fi
Expand Down