MODFLOW 6  version 6.7.0.dev3
USGS Modular Hydrologic Model
Cell.f90
Go to the documentation of this file.
1 module cellmodule
2 
4  use domainmodule, only: domaintype
5  use kindmodule, only: i4b
6  implicit none
7  private
8  public :: celltype
9 
10  !> @brief Base type for grid cells of a concrete type. Contains
11  !! a cell-definition which is information shared by cell types.
12  type, abstract, extends(domaintype) :: celltype
13  type(celldefntype), pointer :: defn => null() ! cell defn
14  end type celltype
15 
16 end module cellmodule
This module defines variable data types.
Definition: kind.f90:8
Base grid cell definition.
Definition: CellDefn.f90:25
Base type for grid cells of a concrete type. Contains a cell-definition which is information shared b...
Definition: Cell.f90:12
A tracking domain.
Definition: Domain.f90:8