Skip to content

Commit

Permalink
Merge pull request #288 from zmoon/k-int
Browse files Browse the repository at this point in the history
Set `k` in `SUvolcanicEmissions` to be integer
  • Loading branch information
vbuchard authored Sep 27, 2024
2 parents b07e2d3 + 9409a8f commit b13cdb7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ set to "-1" which means no use of this function.
- 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

Expand Down
4 changes: 2 additions & 2 deletions Process_Library/GOCART2G_Process.F90
Original file line number Diff line number Diff line change
Expand Up @@ -5776,11 +5776,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
Expand Down

0 comments on commit b13cdb7

Please sign in to comment.