From a977865db9a32a73b3bc4c50d29d4db175003f2f Mon Sep 17 00:00:00 2001 From: weiwangncar Date: Mon, 29 Apr 2024 10:07:07 -0600 Subject: [PATCH] Remove print max/min w in microphysics driver (#2040) 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. --- phys/module_microphysics_driver.F | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phys/module_microphysics_driver.F b/phys/module_microphysics_driver.F index b2182998..53514d34 100644 --- a/phys/module_microphysics_driver.F +++ b/phys/module_microphysics_driver.F @@ -806,7 +806,7 @@ REAL, DIMENSION( ims:ime, kms:kme, jms:jme ), & 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) ) -- 2.11.4.GIT