Skip to content

Commit

Permalink
duh
Browse files Browse the repository at this point in the history
  • Loading branch information
emorway-usgs committed Aug 27, 2024
1 parent c6382ee commit a52a7f3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Model/GroundWaterEnergy/gwe-est.f90
Original file line number Diff line number Diff line change
Expand Up @@ -772,12 +772,12 @@ subroutine read_data(this)
this%parser%iuactive, this%decay, &
aname(2))
lname(2) = .true.
case ('CPS')
case ('HEAT_CAPACITY_SOLID')
call this%dis%read_grid_array(line, lloc, istart, istop, this%iout, &
this%parser%iuactive, this%cps, &
aname(3))
lname(3) = .true.
case ('RHOS')
case ('DENSITY_SOLID')
call this%dis%read_grid_array(line, lloc, istart, istop, this%iout, &
this%parser%iuactive, this%rhos, &
aname(4))
Expand All @@ -801,11 +801,11 @@ subroutine read_data(this)
call store_error(errmsg)
end if
if (.not. lname(3)) then
write (errmsg, '(a)') 'CPS not specified in griddata block.'
write (errmsg, '(a)') 'HEAT_CAPACITY_SOLID not specified in griddata block.'
call store_error(errmsg)
end if
if (.not. lname(4)) then
write (errmsg, '(a)') 'RHOS not specified in griddata block.'
write (errmsg, '(a)') 'DENSITY_SOLID not specified in griddata block.'
call store_error(errmsg)
end if
!
Expand Down

0 comments on commit a52a7f3

Please sign in to comment.