Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 901 Bytes

README.md

File metadata and controls

20 lines (15 loc) · 901 Bytes

ModflowInterface.jl

Call Modflow 6, the USGS Modular Hydrologic Model, from Julia.

This is a port of xmipy.

This package relies on Modflow6_jll.jl to provide binaries of Modflow 6, and implements the BasicModelInterface.jl with calls to the Modflow 6 shared library.

Note that it is possible to crash julia if methods are called wrongly or in the wrong order. For instance initialize is safe since we track the initialization status in the ModflowModel struct, but prepare_time_step will crash julia if run twice.

See examples/mf6lake.jl for a usage example.