Skip to content

Commit

Permalink
Merge pull request #107 from GEOS-ESM/develop
Browse files Browse the repository at this point in the history
Sync develop into main preparing for v2.0.4
  • Loading branch information
amdasilva authored Feb 18, 2022
2 parents bb4eb2c + b4f752f commit 150f6b8
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [2.0.4] - 2021-02-18

### Fixed

- Fix for layout regression failure (see Issue #103)

## [2.0.3] - 2021-02-14

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ cmake_policy (SET CMP0054 NEW)

project (
GOCART
VERSION 2.0.3
VERSION 2.0.4
LANGUAGES Fortran CXX C) # Note - CXX is required for ESMF

if ("${PROJECT_SOURCE_DIR}" STREQUAL "${PROJECT_BINARY_DIR}")
Expand Down
8 changes: 4 additions & 4 deletions Process_Library/GOCART2G_Process.F90
Original file line number Diff line number Diff line change
Expand Up @@ -6704,14 +6704,14 @@ subroutine SU_Wet_Removal ( km, nbins, klid, cdt, kin, grav, airMolWght, delp, f


! Adjust the flux out of the bottom of the layer--remove SO2 here!
DMS = max(DMS,tiny(1.0))
DMS(i,j,k) = max(DMS(i,j,k),tiny(1.0))
Fd(k,nDMS) = Fd(k,nDMS) - DC(nDMS)*pdog(i,j,k)
SO2 = max(SO2,tiny(1.0))
SO2(i,j,k) = max(SO2(i,j,k),tiny(1.0))
Fd(k,nSO2) = Fd(k,nSO2) - DC(nSO2)*pdog(i,j,k)
SO4 = max(SO4,tiny(1.0))
SO4(i,j,k) = max(SO4(i,j,k),tiny(1.0))
Fd(k,nSO4) = Fd(k,nSO4) - DC(nSO4)*pdog(i,j,k)
if (associated(MSA)) then
MSA = max(MSA,tiny(1.0))
MSA(i,j,k) = max(MSA(i,j,k),tiny(1.0))
Fd(k,nMSA) = Fd(k,nMSA) - DC(nMSA)*pdog(i,j,k)
end if
endif
Expand Down

0 comments on commit 150f6b8

Please sign in to comment.