Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Rm block on file cleanup (used testing purposes), clarify code comments.
  • Loading branch information
EdwardSafford-NOAA committed Jan 15, 2025
1 parent b54ccfc commit 3b776b2
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -441,8 +441,9 @@ program angle
! Note: When cyc_per_day == 24 (rgn sources) the 2nd period (d5_7) will
! actually only be 5 days (120 cycles). It will usually be the
! same as dmax, which is set to ncycles. Regional plots only
! include the d1 and d5, but I don't want to change the output
! format so as not to create backward compatibility problems.
! include the d1 and d5, but I'm keeping the dmax value in the
! output file because global sources still use it and I don't
! want to create a difference in file format.
!************************************************************************
d1 = cyc_per_day

Expand Down
6 changes: 3 additions & 3 deletions src/Radiance_Monitor/image_gen/ush/plot_angle.sh
Original file line number Diff line number Diff line change
Expand Up @@ -184,9 +184,9 @@ fi
#--------------------------------------------------------------------
# Clean $wrkdir
#
#cd ${wrkdir}
#cd ../
#rm -rf ${wrkdir}
cd ${wrkdir}
cd ../
rm -rf ${wrkdir}


exit
6 changes: 3 additions & 3 deletions src/Radiance_Monitor/image_gen/ush/plot_summary.sh
Original file line number Diff line number Diff line change
Expand Up @@ -218,9 +218,9 @@ done
#--------------------------------------------------------------------
# Clean $tmpdir.
#
#cd $tmpdir
#cd ../
#rm -rf $tmpdir
cd $tmpdir
cd ../
rm -rf $tmpdir

echo "End plot_summary.sh"; echo

Expand Down

0 comments on commit 3b776b2

Please sign in to comment.