Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
emorway-usgs committed Aug 17, 2023
1 parent bb92222 commit 14515c3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Model/GroundWaterTransport/gwt1.f90
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,6 @@ subroutine gwt_cr(filename, id, modelname)
! -- Set memory path before allocation in memory manager can be done
this%memoryPath = create_mem_path(modelname)
!
call this%allocate_tsp_scalars(modelname)
call this%allocate_gwt_scalars(modelname)
model => this
call AddBaseModelToList(basemodellist, model)
Expand Down Expand Up @@ -719,6 +718,9 @@ subroutine allocate_gwt_scalars(this, modelname)
class(GwtModelType) :: this
character(len=*), intent(in) :: modelname
! ------------------------------------------------------------------------------
!
! -- allocate parent class scalars
call this%allocate_tsp_scalars(modelname)
!
! -- allocate additional members specific to GWT model type
call mem_allocate(this%inmst, 'INMST', this%memoryPath)
Expand Down

0 comments on commit 14515c3

Please sign in to comment.