MODFLOW 6  version 6.6.0.dev0
USGS Modular Hydrologic Model
NetCDFCommon.f90
Go to the documentation of this file.
1 !> @brief This module contains the NetCDFCommonModule
2 !!
3 !! Common NetCDF interfaces and constants
4 !!
5 !<
7 
8  use kindmodule, only: dp, i4b, lgp
9  use constantsmodule, only: linelength
10  use simvariablesmodule, only: errmsg
12  use netcdf
13 
14  implicit none
15  private
16  public :: nc_fopen, nc_fclose
17  public :: netcdf_max_dim
18  public :: netcdf_attr_strlen
19  public :: nf_verify
20 
21  integer(I4B), parameter :: netcdf_max_dim = 6
22  integer(I4B), parameter :: netcdf_attr_strlen = 80
23 
24 contains
25 
26  !> @brief Open netcdf file
27  !<
28  function nc_fopen(nc_fname, iout) result(ncid)
29  character(len=*), intent(in) :: nc_fname
30  integer(I4B), intent(in) :: iout
31  ! -- return
32  integer(I4B) :: ncid
33  ! -- local
34  !
35  ! -- initialize
36  ncid = -1
37  !
38  ! -- open netcdf file
39  call nf_verify(nf90_open(nc_fname, nf90_nowrite, ncid), nc_fname)
40  end function nc_fopen
41 
42  !> @brief Close netcdf file
43  !<
44  subroutine nc_fclose(ncid, nc_fname)
45  integer(I4B), intent(in) :: ncid
46  character(len=*), intent(in) :: nc_fname
47  ! -- local
48  !
49  ! -- close netcdf file
50  call nf_verify(nf90_close(ncid), nc_fname)
51  end subroutine nc_fclose
52 
53  !> @brief error check a netcdf-fortran interface call
54  !<
55  subroutine nf_verify(res, nc_fname)
56  integer(I4B), intent(in) :: res
57  character(len=*), intent(in) :: nc_fname
58  ! -- local variables
59  character(len=LINELENGTH) :: errstr
60  !
61  ! -- strings are set for a subset of errors
62  ! but the exit status will always be reported
63  if (res /= nf90_noerr) then
64  !
65  select case (res)
66  case (-33) ! (NC_EBADID)
67  errstr = 'Not a netcdf id'
68  case (nf90_einval) ! (-36)
69  errstr = 'Invalid Argument'
70  case (nf90_eperm) ! (-37)
71  errstr = 'Write to read only'
72  case (-38) ! (NC_ENOTINDEFINE)
73  errstr = 'Operation not allowed in data mode'
74  case (-39) ! (NC_EINDEFINE)
75  errstr = 'Operation not allowed in define mode'
76  case (nf90_einvalcoords) ! (-40)
77  errstr = 'Index exceeds dimension bound'
78  case (nf90_enameinuse) ! (-42)
79  errstr = 'String match to name in use'
80  case (nf90_enotatt) ! (-43)
81  errstr = 'Attribute not found'
82  case (-45) ! (NC_EBADTYPE)
83  errstr = 'Not a netcdf data type'
84  case (nf90_ebaddim) ! (-46)
85  errstr = 'Invalid dimension id or name'
86  case (nf90_enotvar) ! (-49)
87  errstr = 'Variable not found'
88  case (nf90_enotnc) ! (-51)
89  errstr = 'Not a netcdf file'
90  case (nf90_echar) ! (-56)
91  errstr = 'Attempt to convert between text & numbers'
92  case (nf90_eedge) ! (-57)
93  errstr = 'Edge+start exceeds dimension bound'
94  case (nf90_estride) ! (-58)
95  errstr = 'Illegal stride'
96  case (nf90_ebadname) ! (-59)
97  errstr = 'Attribute or variable name contains illegal characters'
98  case (-127) ! (NC_EBADCHUNK)
99  errstr = 'Bad chunksize.'
100  case default
101  errstr = ''
102  end select
103  !
104  if (errstr /= '') then
105  write (errmsg, '(a,a,a,i0,a)') 'NetCDF library error [error="', &
106  trim(errstr), '", exit code=', res, '].'
107  else
108  write (errmsg, '(a,i0,a)') 'NetCDF library error [exit code=', &
109  res, '].'
110  end if
111  !
112  call store_error(errmsg)
113  call store_error_filename(nc_fname)
114  end if
115  end subroutine nf_verify
116 
117 end module netcdfcommonmodule
This module contains simulation constants.
Definition: Constants.f90:9
integer(i4b), parameter linelength
maximum length of a standard line
Definition: Constants.f90:45
This module defines variable data types.
Definition: kind.f90:8
This module contains the NetCDFCommonModule.
Definition: NetCDFCommon.f90:6
integer(i4b), parameter, public netcdf_attr_strlen
integer(i4b), parameter, public netcdf_max_dim
subroutine, public nc_fclose(ncid, nc_fname)
Close netcdf file.
subroutine, public nf_verify(res, nc_fname)
error check a netcdf-fortran interface call
integer(i4b) function, public nc_fopen(nc_fname, iout)
Open netcdf file.
This module contains simulation methods.
Definition: Sim.f90:10
subroutine, public store_error(msg, terminate)
Store an error message.
Definition: Sim.f90:92
subroutine, public store_error_filename(filename, terminate)
Store the erroring file name.
Definition: Sim.f90:203
This module contains simulation variables.
Definition: SimVariables.f90:9
character(len=maxcharlen) errmsg
error message string