Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed PDOWN definition and re-evaporation requirement for washout #2573

Open
wants to merge 2 commits into
base: dev/14.6.0
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
### Fixed
- Fixed CEDS `HEMCO_Config.rc` entries to emit TMB into the TMB species (and not HCOOH)
- Added C6H14 emissions into the ALK6 species for CMIP6 & HTAPv3 inventories
- Fixed PDOWN definition to lower rather than upper edge

### Removed
- `CEDSv2`, `CEDS_GBDMAPS`, `CEDS_GBDMAPSbyFuelType` emissions entries from HEMCO and ExtData template files
- Removed re-evaporation requirement for washout

## [14.5.1] - 2025-01-10
### Added
Expand Down
12 changes: 5 additions & 7 deletions GeosCore/convection_mod.F90
Original file line number Diff line number Diff line change
Expand Up @@ -573,12 +573,12 @@ SUBROUTINE DO_CLOUD_CONVECTION( Input_Opt, &
SpcInfo => NULL() ! Species database entry

! PFICU and PFLCU are on level edges
PFICU => State_Met%PFICU (I,J,2:State_Grid%NZ+1) ! Dwnwd flx of conv
PFICU => State_Met%PFICU (I,J,1:State_Grid%NZ) ! Dwnwd flx of conv
! ice precip
! [kg/m2/s]
PFLCU => State_Met%PFLCU (I,J,2:State_Grid%NZ+1) ! Dwnwd flux of conv
! [kg/m2/s] [down edge]
PFLCU => State_Met%PFLCU (I,J,1:State_Grid%NZ) ! Dwnwd flux of conv
! liquid precip
! [kg/m2/s]
! [kg/m2/s] [down edge]

! # of levels and # of species
NLAY = State_Grid%NZ
Expand Down Expand Up @@ -1136,10 +1136,8 @@ SUBROUTINE DO_CLOUD_CONVECTION( Input_Opt, &

! Check if...
! (1) there is precip coming into box (I,J,K) from (I,J,K+1)
! (2) there is re-evaporation happening in grid box (I,J,K)
! (3) there is species to re-evaporate
! (2) there is species to re-evaporate
IF ( PDOWN(K+1) > 0 .and. &
REEVAPCN(K) > 0 .and. &
T0_SUM > 0 ) THEN

! Compute F_WASHOUT, the fraction of grid box (I,J,L)
Expand Down