Skip to content
Merged
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
5 changes: 5 additions & 0 deletions doc/ReleaseNotes/develop.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,8 @@ solution = "SOLUTION"
exchanges = "EXCHANGES"
parallel = "PARALLEL"
netcdf = "NETCDF"

[[items]]
section = "fixes"
subsection = "stress"
description = "The default values for DENSITY\\_WATER, HEAT\\_CAPACITY\\_WATER, LATENT\\_HEAT\\_VAPORIZATION specified in the OPTIONS block were not set as indicated in the MF6IO guide. Defaults for these three variables now set as documented in the MF6IO guide."
6 changes: 3 additions & 3 deletions src/Model/GroundWaterEnergy/gwe-est.f90
Original file line number Diff line number Diff line change
Expand Up @@ -665,9 +665,9 @@ subroutine allocate_scalars(this)
call mem_allocate(this%idcysrc, 'IDCYSRC', this%memoryPath)
!
! -- Initialize
this%cpw = DZERO
this%rhow = DZERO
this%latheatvap = DZERO
this%cpw = 4184.0_DP
this%rhow = DEP3
this%latheatvap = 2453500.0_DP
this%idcy = IZERO
this%idcysrc = IZERO
end subroutine allocate_scalars
Expand Down
Loading