Skip to content
Draft
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
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ module GEOS_LandiceGridCompMod
use DragCoefficientsMod

implicit none
public :: NUM_SNOW_LAYERS
public :: NUM_ICE_LAYERS
private

integer, parameter :: ICE = 1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,14 @@ module GEOS_RouteGridCompMod

! !PUBLIC MEMBER FUNCTIONS:

public SetServices
public :: SetServices

!EOP
! used by its ensavg
public :: pfaf_grid
public :: pfaf_locstream

type (ESMF_Grid) :: pfaf_grid
type (MAPL_LocStream) :: pfaf_locstream

contains

Expand Down Expand Up @@ -389,12 +394,12 @@ subroutine INITIALIZE (GC,IMPORT, EXPORT, CLOCK, RC )
integer :: ROUTE_DT, route_flag
REAL :: HEARTBEAT
type(ESMF_Grid) :: tileGrid
type(ESMF_Grid) :: pfaf_tilegrid, pfaf_grid
type(ESMF_Grid) :: pfaf_tilegrid
character(len=ESMF_MAXSTR) :: SURFRC
type(ESMF_Config) :: SCF, CF

type(MAPL_MetaComp), pointer :: MAPL
type(MAPL_LocStream) :: locstream, pfaf_LocStream
type(MAPL_LocStream) :: locstream

character(len=ESMF_MAXSTR) :: RIVER_INPUT_FILE

Expand Down
Loading