Skip to content

Commit

Permalink
Remove print max/min w in microphysics driver (#2040)
Browse files Browse the repository at this point in the history
TYPE: almost text only

KEYWORDS: extra print, microphysics driver

SOURCE: internal

DESCRIPTION OF CHANGES:
Problem:
PR-1876 accidentally turned on a diagnostic print for max and min vertical motions.

Solution:
The print is removed as in previous code.

LIST OF MODIFIED FILES: 
M       phys/module_microphysics_driver.F

TESTS CONDUCTED: 
The Jenkins tests are all passing.
  • Loading branch information
weiwangncar committed Apr 29, 2024
1 parent bbc7915 commit a977865
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion phys/module_microphysics_driver.F
Original file line number Diff line number Diff line change
Expand Up @@ -806,7 +806,7 @@ SUBROUTINE microphysics_driver( &
ENDIF

! set this to true to print out the global max/min for W on each time step.
IF ( .true. ) THEN
IF ( .false. ) THEN
wmax = maxval( w(ips:ipe,kps:kpe,jps:jpe) )
wmin = minval( w(ips:ipe,kps:kpe,jps:jpe) )
#if ( defined(DM_PARALLEL) && ! defined(STUBMPI) )
Expand Down

0 comments on commit a977865

Please sign in to comment.