From 7b84309ebe5631f7a8446bf625177e284d63416e Mon Sep 17 00:00:00 2001 From: Sebastian David Eastham Date: Tue, 11 Jan 2022 14:00:59 -0500 Subject: [PATCH] Squash unnecessary warning from FVdycore When the user does NOT want to exclude advection tracers, there is currently no way to safely ensure this without causing a warning to be pushed to stdout on every time step. This can now be prevented by setting `EXCLUDE_ADVECTION_TRACERS: NO` in the relevant resource file. --- AdvCore_GridCompMod.F90 | 3 +++ 1 file changed, 3 insertions(+) diff --git a/AdvCore_GridCompMod.F90 b/AdvCore_GridCompMod.F90 index bea7838..50d2e41 100755 --- a/AdvCore_GridCompMod.F90 +++ b/AdvCore_GridCompMod.F90 @@ -599,6 +599,9 @@ subroutine Run(GC, IMPORT, EXPORT, CLOCK, RC) adjustTracers = .true. end if end if + else if (adjustTracerMode == 'NO') then + ! Proceed without warning + adjustTracers = .false. else call WRITE_PARALLEL('Invalid option, ignored') adjustTracers = .false.