Skip to content

Commit

Permalink
Remove resubmission option for assim_advance
Browse files Browse the repository at this point in the history
driver.csh has ability to check for assim_advance
jobs that fail, and resubmits. Switch to derecho
has led to false detections, which leads to errors.
Removed resubmission and replaced with warning
  • Loading branch information
braczka committed Aug 9, 2024
1 parent 6baf537 commit e7de249
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions models/wrf/shell_scripts/driver.csh
Original file line number Diff line number Diff line change
Expand Up @@ -473,19 +473,18 @@ while ( 1 == 1 )

else if ( $SUPER_PLATFORM == 'derecho' ) then

# Prevent double submission for member 1 only
if ( $n == 1) then
sleep 5
endif

if ( `qstat -wa | grep assim_advance_${n} | wc -l` == 0 ) then

echo "assim_advance_${n} is missing from the queue"
qsub assim_advance_mem${n}.csh
echo "Warning, detected that assim_advance_${n} is missing from the queue"
echo "If this warning leads to missing output from ensemble ${n}"
echo "consider enabling the qsub command within keep_trying while statement in driver.csh"

#qsub assim_advance_mem${n}.csh
endif

endif
sleep 15
sleep 5

end
set start_time = `head -1 start_member_${n}`
Expand Down

0 comments on commit e7de249

Please sign in to comment.