Skip to content
Merged
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
f78aa42
Reset to zero coupling arrays for accumulated snow,
rmontuoro Dec 3, 2019
75654ac
Properly set kind type of literal constants
rmontuoro Dec 3, 2019
2870f5e
Initialize to zero canopy resistance output variable
rmontuoro Dec 3, 2019
37fb245
Re-implement radiation diagnostic output involving spectral
rmontuoro Dec 3, 2019
1c0a9ba
Reset to zero instantaneous total moisture tendency
rmontuoro Dec 3, 2019
afb4c67
Merge NOAA-EMC branch 'develop' into develop.
rmontuoro Apr 21, 2020
3004022
Merge NOAA-EMC branch 'develop' into develop.
rmontuoro Apr 24, 2020
617b907
Merge NOAA-EMC branch 'develop' into develop.
rmontuoro May 8, 2020
bdd1131
Merge EMC-NOAA branch 'develop' into develop.
rmontuoro Oct 19, 2020
735eb9e
Temporarily disable filling export fields during
rmontuoro Oct 19, 2020
59cf366
Moving previous commit to a branch.
rmontuoro Oct 19, 2020
6f730ae
Merge EMC branch 'develop' into develop
rmontuoro May 2, 2021
deda93d
Merge NOAA-EMC branch 'develop' into develop
rmontuoro May 11, 2021
bb754cc
Merge EMC branch 'develop' into develop
rmontuoro May 13, 2021
fefc233
Merge NOAA-EMC branch 'develop' into develop
rmontuoro May 21, 2021
0ec3000
Merge NOAA-EMC branch 'develop' into develop
rmontuoro May 21, 2021
3c4d18f
Merge NOAA-EMC branch 'develop' into develop
rmontuoro Jun 3, 2021
a119ee8
Merge branch 'NOAA-EMC:develop' into develop
rmontuoro Jul 26, 2021
71a5fd4
Merge branch 'NOAA-EMC:develop' into develop
rmontuoro Jul 29, 2021
4c2a7b2
Merge branch 'NOAA-EMC:develop' into develop
rmontuoro Aug 9, 2021
80e6ea6
Merge branch 'NOAA-EMC:develop' into develop
rmontuoro Aug 10, 2021
f3f4d00
Merge branch 'NOAA-EMC:develop' into develop
rmontuoro Aug 12, 2021
24a15fc
Merge branch 'NOAA-EMC:develop' into develop
rmontuoro Sep 23, 2021
7b1e88d
Merge branch 'NOAA-EMC:develop' into develop
rmontuoro Sep 27, 2021
4f8c34b
Merge branch 'NOAA-EMC:develop' into develop
rmontuoro Sep 29, 2021
8f28b16
Merge branch 'NOAA-EMC:develop' into develop
rmontuoro Oct 1, 2021
310b4ac
Merge branch 'NOAA-EMC:develop' into develop
rmontuoro Oct 4, 2021
c6449b9
Merge branch 'NOAA-EMC:develop' into develop
rmontuoro Oct 5, 2021
19eb9b6
Merge branch 'NOAA-EMC:develop' into develop
rmontuoro Nov 5, 2021
6c4d2e9
Merge branch 'NOAA-EMC:develop' into develop
rmontuoro Dec 15, 2021
f762bb4
Merge branch 'NOAA-EMC:develop' into develop
rmontuoro Jan 24, 2022
5910ae6
Merge branch 'NOAA-EMC:develop' into develop
rmontuoro Jan 26, 2022
e6832bc
Merge branch 'NOAA-EMC:develop' into develop
rmontuoro Jan 27, 2022
c6af891
Merge branch 'NOAA-EMC:develop' into develop
rmontuoro Feb 2, 2022
fff811d
Merge branch 'NOAA-EMC:develop' into develop
rmontuoro Feb 5, 2022
5965071
Merge branch 'NOAA-EMC:develop' into develop
rmontuoro Feb 11, 2022
fa996df
Enable Thompson microphysics when coupling with chemistry.
rmontuoro Feb 11, 2022
90bdace
Merge branch 'NOAA-EMC:develop' into develop
rmontuoro Feb 16, 2022
7f2a44a
Merge branch 'develop' into feature/enable-thompson-with-gocart
rmontuoro Feb 16, 2022
acaeb47
Merge branch 'NOAA-EMC:develop' into develop
rmontuoro Feb 18, 2022
20c2632
Merge branch 'develop' into feature/enable-thompson-with-gocart
rmontuoro Feb 18, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions ccpp/data/GFS_typedefs.F90
Original file line number Diff line number Diff line change
Expand Up @@ -7589,9 +7589,7 @@ subroutine interstitial_setup_tracers(Interstitial, Model)
endif

if (Model%cplchm) then
! Only Zhao/Carr/Sundqvist and GFDL microphysics schemes are supported
! when coupling with chemistry. PBL diffusion of aerosols is only supported
! for GFDL microphysics and MG microphysics.
! Only the following microphysics schemes are supported with coupled chemistry
if (Model%imp_physics == Model%imp_physics_zhao_carr) then
Interstitial%nvdiff = 3
elseif (Model%imp_physics == Model%imp_physics_mg) then
Expand All @@ -7602,8 +7600,14 @@ subroutine interstitial_setup_tracers(Interstitial, Model)
endif
elseif (Model%imp_physics == Model%imp_physics_gfdl) then
Interstitial%nvdiff = 7
elseif (Model%imp_physics == Model%imp_physics_thompson) then
if (Model%ltaerosol) then
Interstitial%nvdiff = 12
else
Interstitial%nvdiff = 9
endif
else
write(0,*) "Only Zhao/Carr/Sundqvist and GFDL microphysics schemes are supported when coupling with chemistry"
write(0,*) "Selected microphysics scheme is not supported when coupling with chemistry"
stop
endif
if (Interstitial%trans_aero) Interstitial%nvdiff = Interstitial%nvdiff + Model%ntchm
Expand Down