Skip to content

Commit

Permalink
Fix typo and Update ChangeLog
Browse files Browse the repository at this point in the history
# Conflicts:
#	CHANGELOG.md

Signed-off-by: Lizzie Lundgren <[email protected]>
  • Loading branch information
lizziel committed Dec 4, 2024
1 parent e02ec44 commit 47f4160
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
### Added
- Added code to `src/CMakeLists.txt` to build & install the KPP standalone executable when `fullchem` or `custom` mechanisms are selected

### Fixed
- Fixed dry mass flux derivation in GCHPctmEnv when using mass flux imports
- Fixed UpwardsMassFlux sign to make positive represent upwards direction

## [14.5.0] - 2024-11-08
### Added
- Added documentation about GEOS convection change affecting meteorology starting June 1, 2020
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -953,7 +953,7 @@ subroutine prepare_massflux_exports(IMPORT, EXPORT, PLE, dt, RC)
! Get vertical mass flux
call fv_getVerticalMassFlux(MFX_EXPORT, MFY_EXPORT, UpwardsMassFlux, dt)

! Flip vertical so that GCHP diagnostic level is follwing GEOS-Chem convetion
! Flip vertical so that GCHP diagnostic level is following GEOS-Chem convetion
! Add negative sign to make positive = "up"
UpwardsMassFlux(:,:,:) = -UpwardsMassFlux(:,:,LM:0:-1)/dt
end if
Expand Down

0 comments on commit 47f4160

Please sign in to comment.