read_huf reads in a MODFLOW hydrogeologic unit flow file and returns it as an RMODFLOW huf object.

rmf_read_huf(
  file = {     cat("Please select huf file ...\n")     file.choose() },
  dis = {     cat("Please select corresponding dis file ...\n")    
    rmf_read_dis(file.choose()) },
  mlt = NULL,
  zon = NULL,
  ...
)

Arguments

file

filename; typically '*.huf'

dis

discretization file object; defaults to that with the same filename but with extension '.dis'

mlt

a RMODFLOW mlt object. Only needed when reading parameter arrays defined by multiplier arrays

zon

a RMODFLOW zon object. Only needed when reading parameter arrays defined by zone arrays

...

arguments passed to rmfi_parse_array. Can be ignored when input arrays are free-format and INTERNAL or CONSTANT.

Value

object of class huf

Details

rmf_convert_huf_to_grid can be used to convert parameters defined on the HUF grid to the numerical grid

See also