From efa883644f51bd64294d1a332c1f2d411e653661 Mon Sep 17 00:00:00 2001 From: zmoon Date: Tue, 20 Aug 2024 19:59:30 -0500 Subject: [PATCH 1/2] k should be integer --- Process_Library/GOCART2G_Process.F90 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Process_Library/GOCART2G_Process.F90 b/Process_Library/GOCART2G_Process.F90 index 6892082c..2973f127 100644 --- a/Process_Library/GOCART2G_Process.F90 +++ b/Process_Library/GOCART2G_Process.F90 @@ -5714,11 +5714,11 @@ subroutine SUvolcanicEmissions (nVolc, vStart, vEnd, vSO2, vElev, vCloud, iPoint ! 22July2020 E.Sherman ! ! !Local Variables - integer :: i, j, it + integer :: i, j, k, it real, dimension(:,:,:), allocatable :: emissions_point real :: so2volcano - real :: hup, hlow, dzvolc, dz, z1, k + real :: hup, hlow, dzvolc, dz, z1 real :: deltaSO2v real, dimension(:,:), allocatable :: z0 real, allocatable, dimension(:,:) :: srcSO2volc From 30aebc0b58b14e6828065a5cd0068239221cb67b Mon Sep 17 00:00:00 2001 From: Zachary Moon Date: Fri, 20 Sep 2024 13:40:51 -0400 Subject: [PATCH 2/2] Add changelog item --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 975fc501..4d457f5b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -25,6 +25,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Corrected the units of the gravimetric soil moisture to percent instead of fractional in the FENGSHA dust scheme. - Fix issue of GOCART/GEOSgcm circular CMake dependencies when used as external project - Fix UFS/Standalone CMake issue +- Fix type of `k` in `SUvolcanicEmissions` ### Added