Changelog#
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
[Unreleased]#
Fixed#
imod.mf6.Simulation._validate()
now print all validation errors for all models and packages in one message.
[0.13.1] - 2023-05-05#
Added#
imod.mf6.SpecificStorage
andimod.mf6.StorageCoefficient
now have asave_flow
argument.
Fixed#
imod.mf6.open_cbc()
can now read storage fluxes without error.
[0.13.0] - 2023-05-02#
Added#
imod.mf6.OutputControl
now takes parametershead_file
,concentration_file
, andbudget_file
to specify where to store MODFLOW6 output files.imod.util.from_mdal_compliant_ugrid2d()
to “restack” the variables that have have been “unstacked” inimod.util.mdal_compliant_ugrid2d()
.Added support for the Modflow6 Lake package
imod.select.points_in_bounds()
,imod.select.points_indices()
,imod.select.points_values()
now support unstructured grids.Added support for the Modflow 6 Lake package:
imod.mf6.Lake
,imod.mf6.LakeData
,imod.mf6.OutletManning
,OutletSpecified
,OutletWeir
. See the examples for an application of the Lake package.
Fixed#
imod.wq.bas.BasicFlow.thickness()
returns a DataArray with the correct dimension order again. This confusingly resulted in an error when writing theimod.wq.btn.BasicTransport
package.Fixed bug in
imod.mf6.dis.StructuredDiscretization
andimod.mf6.dis.VerticesDiscretization
whereinactive bottom above active cell
was incorrectly raised.
[0.12.0] - 2023-03-17#
Added#
imod.prj.read_projectfile()
to read the contents of a project file into a Python dictionary.imod.prj.open_projectfile_data()
to read/open the data that is pointed to in a project file.imod.gen.read_ascii()
to read the geometry stored in ASCII text .gen files.imod.mf6.hfb.HorizontalFlowBarrier
to support Modflow6’s HFB package, works well with xugrid.snap_to_grid function.
Fixed#
imod.evaluate.budget.flow_velocity()
now properly computes velocity by dividing by the porosity. Before, this function computed the Darcian velocity.
Changed#
imod.ipf.save()
will error on duplicate IDs for associated files if a"layer"
column is present. As a dataframe is automatically broken down into a single IPF per layer, associated files for the first layer would be overwritten by the second, and so forth.imod.wq.Well.save()
will now write time varying data to associated files for extration rate and concentration.Choosing
method="geometric_mean"
in the Regridder will now result in NaN values in the regridded result if a geometric mean is computed over negative values; in general, a geometric mean should only be computed over physical quantities with a “true zero” (e.g. conductivity, but not elevation).
[0.11.6] - 2023-02-01#
Added#
Added an extra optional argument in
imod.couplers.metamod.MetaMod.write()
namedmodflow6_write_kwargs
, which can be used to provide keyword arguments to the writing of the Modflow 6 Simulation.
Fixed#
imod.mf6.out.disv.read_grb()
Remove repeated construction ofUgridDataArray
fortop
[0.11.5] - 2022-12-15#
Fixed#
imod.mf6.Modflow6Simulation.write()
withbinary=False
no longer results in invalid MODFLOW6 input for 2D grid data, such as DIS top.imod.flow.ImodflowModel.write()
no longer writes incorrect project files for non-grid values with a time and layer dimension.imod.evaluate.interpolate_value_boundaries()
: Fix edge case when successive values in z direction are exactly equal to the boundary value.
Changed#
Removed
meshzoo
dependency.Minor changes to
imod.gen.gen
backend, to support Shapely 2.0 , Shapely version above equal v1.8 is now required.
Added#
imod.flow.ImodflowModel.write()
now supports writing aconfig_run.ini
to convert the projectfile to a runfile or modflow 6 namfile with iMOD5.Added validation of Modflow6 Flow and Transport models. Incorrect model input will now throw a
ValidationError
. To turn off the validation, setvalidate=False
upon package initialization and/or when callingimod.mf6.Modflow6Simulation.write()
.
[0.11.4] - 2022-09-05#
Fixed#
imod.mf6.GroundwaterFlowModel.write()
will no longer error when a 3D DataArray with a single layer is written. It will now accept both 2D and 3D arrays with a single layer coordinate.Hotfixes for
imod.wq.model.SeawatModel.clip()
, until this merge request is fulfilled.imod.flow.ImodflowModel.write()
will set the timestring in the projectfile tosteady-state
forBoundaryConditions
without a time dimension.Added
imod.flow.OutputControl
as this was still missing.imod.ipf.read()
will no longer error when an associated files with 0 rows is read.imod.evaluate.calculate_gxg()
now correctly uses (March 14, March 28, April 14) to calculate GVG rather than (March 28, April 14, April 28).imod.mf6.out.open_cbc()
now correctly loads boundary fluxes.imod.prepare.LayerRegridder.regrid()
will now correctly skip values iftop_source
orbottom_source
are NaN.imod.gen.write()
no longer errors on dataframes with empty columns.
Changed#
Deprecate the current documentation URL: https://imod.xyz. For the coming months, redirection is automatic to: https://deltares.gitlab.io/imod/imod-python/.
imod.ipf.save()
will now store associated files in separate directories namedlayer1
,layer2
, etc. The ID in the main IPF file is updated accordingly. Previously, if IDs were shared between different layers, the associated files would be overwritten as the IDs would result in the same file name being used over and over.imod.flow.ImodflowModel.time_discretization()
,imod.wq.SeawatModel.time_discretization()
,imod.mf6.Simulation.time_discretization()
, are renamed to:imod.flow.ImodflowModel.create_time_discretization()
,imod.wq.SeawatModel.create_time_discretization()
,imod.mf6.Simulation.create_time_discretization()
,Moved tests inside imod directory, added an entry point for pytest fixtures. Running the tests now requires an editable install, and also existing installations have to be reinstalled to run the tests.
The
imod.mf6
model packages now all run type checks on input. This is a breaking change for scripts which provide input with an incorrect dtype.imod.mf6.Solution
now requires a model_names argument to specify which models should be solved in a single numerical solution. This is required to simulate groundwater flow and transport as they should be in separate solutions.When writing MODFLOW6 input option blocks, a NaN value is now recognized as an alternative to None (and the entry will not be included in the options block).
Added#
Added support to write MetaSWAP models,
imod.msw.MetaSwapModel
.Addes support to write coupled MetaSWAP and Modflow6 simulations,
imod.couplers.MetaMod
imod.util.replace()
has been added to find and replace different values in a DataArray.imod.evaluate.calculate_gxg_points()
has been added to compute GXG values for time varying point data (i.e. loaded from IPF and presented as a Pandas dataframe).imod.evaluate.calculate_gxg()
will return the number of years used in the GxG calculation as separate variables in the output dataset.imod.visualize.spatial.plot_map()
now accepts a fix and ax argument, to enable adding maps to existing axes.imod.flow.ImodflowModel.create_time_discretization()
,imod.wq.SeawatModel.create_time_discretization()
,imod.mf6.Simulation.create_time_discretization()
, now have a documentation section.imod.mf6.GroundwaterTransportModel
has been added with associated simple classes to allow creation of solute transport models. Advanced boundary conditions such as LAK or UZF are not yet supported.imod.mf6.Buoyancy
has been added to simulate density dependent groundwater flow.
[0.11.1] - 2021-12-23#
Fixed#
contextily
,geopandas
,pyvista
,rasterio
, andshapely
are now fully optional dependencies. Import errors are only raised when accessing functionality that requires their use.Include declxml as
imod.declxml
(should be internal use only!): declxml is no longer maintained on the official repository: gatkin/declxml. Furthermore, it has no conda feedstock, which makes distribution via conda difficult.
[0.11.0] - 2021-12-21#
Fixed#
imod.ipf.read()
accepts list of file names.imod.mf6.open_hds()
did not read the appropriate bytes from the heads file, apart for the first timestep. It will now read the right records.Use the appropriate array for modflow6 timestep duration: the
imod.mf6.GroundwaterFlowModel.write()
would write the timesteps multiplier in place of the duration array.imod.mf6.GroundwaterFlowModel.write()
will now respect the layer coordinate of DataArrays that had multiple coordinates, but were discontinuous from 1; e.g. layers [1, 3, 5] would’ve been transformed to [1, 2, 3] incorrectly.imod.mf6.Modflow6Simulation.write()
will no longer change working directory while writing model input – this could lead to errors when multiple processes are writing models in parallel.imod.prepare.laplace_interpolate()
will no longer ZeroDivisionError when given a value foribound
.
Added#
imod.idf.open_subdomains()
will now also accept iMOD-WQ output of multiple species runs.imod.wq.SeawatModel.to_netcdf()
has been added to write all model packages to netCDF files.imod.mf6.open_cbc()
has been added to read the budget data of structured (DIS) MODFLOW6 models. The data is read lazily into xarray DataArrays per timestep.imod.visualize.streamfunction()
andimod.visualize.quiver()
were added to plot a 2D representation of the groundwater flow field using either streamlines or quivers over a cross section plot (imod.visualize.cross_section()
).imod.evaluate.streamfunction_line()
andimod.evaluate.streamfunction_linestring()
were added to extract the 2D projected streamfunction of the 3D flow field for a given cross section.imod.evaluate.quiver_line()
andimod.evaluate.quiver_linestring()
were added to extract the u and v components of the 3D flow field for a given cross section.Added
imod.mf6.GroundwaterFlowModel.write_qgis_project()
to write a QGIS project for easier inspection of model input in QGIS.Added
imod.wq.SeawatModel.clip()
to clip a model to a provided extent. Boundary conditions of clipped model can be automatically derived from parent model calculation results and are applied along the edges of the extent.Added
imod.gen.read()
andimod.gen.write()
for reading and writing binary iMOD GEN files to and from geopandas GeoDataFrames.Added
imod.prepare.zonal_aggregate_raster()
andimod.prepare.zonal_aggregate_polygons()
to efficiently compute zonal aggregates for many polygons (e.g. the properties every individual ditch in the Netherlands).Added
imod.flow.ImodflowModel
to write to model iMODFLOW project file.imod.mf6.Simulation.write()
now has abinary
keyword. When set toFalse
, all MODFLOW6 input is written to text rather than binary files.Added
imod.mf6.DiscretizationVertices
to write MODFLOW6 DISV model input.Packages for
imod.mf6.GroundwaterFlowModel
will now acceptxugrid.UgridDataArray
objects for (DISV) unstructured grids, next toxarray.DataArray
objects for structured (DIS) grids.Transient wells are now supported in
imod.mf6.WellDisStructured
andimod.mf6.WellDisVertices
.imod.util.to_ugrid2d()
has been added to convert a (structured) xarray DataArray or Dataset to a quadrilateral UGRID dataset.Functions created to create empty DataArrays with greater ease:
imod.util.empty_2d()
,imod.util.empty_2d_transient()
,imod.util.empty_3d()
, andimod.util.empty_3d_transient()
.imod.util.where()
has been added for easier if-then-else operations, especially for preserving NaN nodata values.imod.mf6.Simulation.run()
has been added to more easily run a model, especially in examples and tests.imod.mf6.open_cbc()
andimod.mf6.open_hds()
will automatically return axugrid.UgridDataArray
for MODFLOW6 DISV model output.
Changed#
Documentation overhaul: different theme, add sample data for examples, add Frequently Asked Questions (FAQ) section, restructure API Reference. Examples now ru
Datetime columns in IPF associated files (via
imod.ipf.write_assoc()
) will not be placed within quotes, as this can break certain iMOD batch functions.imod.mf6.Well
has been renamed intoimod.mf6.WellDisStructured
.imod.mf6.GroundwaterFlowModel.write()
will now write package names into the simulation namefile.imod.mf6.open_cbc()
will now return a dictionary with keysflow-front-face, flow-lower-face, flow-right-face
for the face flows, rather thanfront-face-flow
for better consistency.Switched to composition from inheritance for all model packages: all model packages now contain an internal (xarray) Dataset, rather than inheriting from the xarray Dataset.
imod.mf6.SpecificStorage
orimod.mf6.StorageCoefficient
is now mandatory for every MODFLOW6 model to avoid accidental steady-state configuration.
Removed#
Module
imod.tec
for reading Tecplot files has been removed.
[0.10.1] - 2020-10-19#
Changed#
imod.wq.SeawatModel.write()
now generates iMOD-WQ runfiles with more intelligent use of the “macro tokens”.:
is used exclusively for ranges;$
is used to signify all layers. (This makes runfiles shorter, speeding up parsing, which takes a significant amount of time in the runfile to namefile conversion of iMOD-WQ.)Datetime formats are inferred based on length of the time string according to
%Y%m%d%H%M%S
; supported lengths 4 (year only) to 14 (full format string).
Added#
imod.wq.MassLoading
andimod.wq.TimeVaryingConstantConcentration
have been added to allow additional concentration boundary conditions.IPF writing methods support an
assoc_columns
keyword to allow greater flexibility in including and renaming columns of the associated files.Optional basemap plotting has been added to
imod.visualize.plot_map()
.
Fixed#
IO methods for IDF files will now correctly identify double precision IDFs. The correct record length identifier is 2295 rather than 2296 (2296 was a typo in the iMOD manual).
imod.wq.SeawatModel.write()
will now write the correct path for recharge package concentration given in IDF files. It did not prepend the name of the package correctly (resulting in paths likeconcentration_l1.idf
instead ofrch/concentration_l1.idf
).imod.idf.save()
will simplify constant cellsize arrays to a scalar value – this greatly speeds up drawing in the iMOD-GUI.
[0.10.0] - 2020-05-23#
Changed#
imod.wq.SeawatModel.write()
no longer automatically appends the model name to the directory where the input is written. Instead, it simply writes to the directory as specified.imod.select.points_set_values()
returns a new DataArray rather than mutating the inputda
.imod.select.points_values()
returns a DataArray with an index taken from the data of the first provided dimensions if it is apandas.Series
.imod.wq.SeawatModel.write()
now writes a runfile withstart_hour
andstart_minute
(this results in output IDFs with datetime format"%Y%m%d%H%M"
).
Added#
from_file()
constructors have been added to all imod.wq.Package. This allows loading directly package from a netCDF file (or any file supported byxarray.open_dataset
), or a path to a Zarr directory with suffix “.zarr” or “.zip”.This can be combined with the cache argument in
from_file()
to enable caching of answers to avoid repeated computation duringimod.wq.SeawatModel.write()
; it works by checking whether input and output files have changed.The
resultdir_is_workspace
argument has been added toimod.wq.SeawatModel.write()
. iMOD-wq writes a number of files (e.g. list file) in the directory where the runfile is located. This results in mixing of input and output. By setting itTrue
, all model output is written in the results directory.imod.visualize.imshow_topview()
has been added to visualize a complete DataArray with atleast dimensionsx
andy
; it dumps PNGs into a specified directory.Some support for 3D visualization has been added.
imod.visualize.grid_3d()
andimod.visualize.line_3d()
have been added to producepyvista
meshes fromxarray.DataArray
’s andshapely
polygons, respectively.imod.visualize.GridAnimation3D
andimod.visualize.StaticGridAnimation3D
have been added to setup 3D animations of DataArrays with transient data.Support for out of core computation by
imod.prepare.Regridder
ifsource
is chunked.imod.ipf.read()
now reports the problematic file if reading errors occur.imod.prepare.polygonize()
added to polygonize DataArrays to GeoDataFrames.Added more support for multiple species imod-wq models, specifically: scalar concentration for boundary condition packages and well IPFs.
Fixed#
imod.prepare.Regridder()
detects if thelike
DataArray is a subset along a dimension, in which case the dimension is not regridded.imod.prepare.Regridder()
now slices thesource
array accurately before regridding, taking cell boundaries into account rather than only cell midpoints.density
is no longer an optional argument inimod.wq.GeneralHeadboundary
andimod.wq.River
. The reason is that iMOD-WQ fully removes (!) these packages if density is not present.imod.idf.save()
andimod.rasterio.save()
will now also save DataArrays in which a coordinate other thanx
ory
is descending.imod.visualize.plot_map()
enforces decreasingy
, which ensures maps are not plotted upside down.imod.util.coord_reference()
now returns a scalar cellsize if coordinate is equidistant.imod.prepare.Regridder.regrid()
returns cellsizes as scalar when coordinates are equidistant.Raise proper ValueError in
imod.prepare.Regridder.regrid()
consistenly when the number of dimensions to regrid does not match the regridder dimensions.When writing DataArrays that have size 1 in dimension
x
ory
: raise error if cellsize (dx
ordy
) is not specified; and actually usedy
ordx
when size is 1.
[0.9.0] - 2020-01-19#
Added#
IDF files representing data of arbitrary dimensionality can be opened and saved. This enables reading and writing files with more dimensions than just x, y, layer, and time.
Added multi-species support for (
imod.wq
)GDAL rasters representing N-dimensional data can be opened and saved similar to (
imod.idf
) in (imod.rasterio
)Writing GDAL rasters using
imod.rasterio.save()
and (imod.rasterio.write()
) auto-detects GDAL driver based on file extension64-bit IDF files can be opened
imod.idf.open()
64-bit IDF files can be written using
imod.idf.save()
and (imod.idf.write()
) using keyworddtype=np.float64
sel
andisel
methods toSeawatModel
to support taking out a subdomainDocstrings for the Modflow 6 classes in
imod.mf6
imod.select.upper_active_layer()
function to get the upper active layer from iboundxr.DataArray
Changed#
imod.idf.read()
is deprecated, useimod.idf.open
insteadimod.rasterio.read()
is deprecated, useimod.rasterio.open
instead
Fixed#
imod.prepare.reproject()
working instead of silently failing when given a"+init=ESPG:XXXX
CRS string
[0.8.0] - 2019-10-14#
Added#
Laplace grid interpolation
imod.prepare.laplace_interpolate()
Experimental Modflow 6 structured model write support
imod.mf6
More supported visualizations
imod.visualize
More extensive reading and writing of GDAL raster in
imod.rasterio
Changed#
The documentation moved to a custom domain name: https://imod.xyz/
[0.7.1] - 2019-08-07#
Added#
"multilinear"
has been added as a regridding option toimod.prepare.Regridder
to do linear interpolation up to three dimensions.Boundary condition packages in
imod.wq
support a method calledadd_timemap
to do cyclical boundary conditions, such as summer and winter stages.
Fixed#
imod.idf.save
no longer fails on a single IDF when it is a voxel IDF (when it has top and bottom data).imod.prepare.celltable
now succesfully does parallel chunkwise operations, rather than raising an error.imod.Regridder
’sregrid
method now succesfully returnssource
if all dimensions already have the right cell sizes, rather than raising an error.imod.idf.open_subdomains
is much faster now at merging different subdomain IDFs of a parallel modflow simulation.imod.idf.save
no longer suffers from extremely slow execution when the DataArray to save is chunked (it got extremely slow in some cases).Package checks in
imod.wq.SeawatModel
succesfully reduces over dimensions.Fix last case in
imod.prepare.reproject
where it did not allocate a new array yet, but returnedlike
instead of the reprojected result.
[0.7.0] - 2019-07-23#
Added#
imod.wq
module to create iMODFLOW Water Quality modelsconda-forge recipe to install imod (conda-forge/imod-feedstock)
significantly extended documentation and examples
imod.prepare
module with many data mangling functionsimod.select
module for extracting data along cross sections or at pointsimod.visualize
module added to visualize resultsimod.idf.open_subdomains()
function to open and merge the IDF results of a parallelized runimod.ipf.read()
now infers delimeters for the headers and the bodyimod.ipf.read()
can now deal with heterogeneous delimiters between multiple IPF files, and between the headers and body in a single file
Changed#
Namespaces: lift many functions one level, such that you can use e.g. the function
imod.prepare.reproject
instead ofimod.prepare.reproject.reproject
Removed#
All that was deprecated in v0.6.0
Deprecated#
imod.seawat_write()
is deprecated, use the write method ofimod.wq.SeawatModel
insteadimod.run.seawat_get_runfile()
is deprecated, useimod.wq
insteadimod.run.seawat_write_runfile()
is deprecated, useimod.wq
instead
[0.6.1] - 2019-04-17#
Added#
Support nonequidistant models in runfile
Fixed#
Time conversion in runfile now also accepts cftime objects
[0.6.0] - 2019-03-15#
The primary change is that a number of functions have been renamed to better communicate what they do.
The load
function name was not appropriate for IDFs, since the IDFs
are not loaded into memory. Rather, they are opened and the headers are
read; the data is only loaded when needed, in accordance with
xarray
’s design; compare for example xarray.open_dataset
. The
function has been renamed to open
.
Similarly, load
for IPFs has been deprecated. imod.ipf.read
now
reads both single and multiple IPF files into a single
pandas.DataFrame
.
Removed#
imod.idf.setnodataheader
Deprecated#
Opening IDFs with
imod.idf.load
, useimod.idf.open
insteadOpening a set of IDFs with
imod.idf.loadset
, useimod.idf.open_dataset
insteadReading IPFs with
imod.ipf.load
, useimod.ipf.read
Reading IDF data into a dask array with
imod.idf.dask
, useimod.idf._dask
insteadReading an iMOD-seawat .tec file, use
imod.tec.read
instead.
Changed#
Use
np.datetime64
when dates are within time bounds, usecftime.DatetimeProlepticGregorian
when they are not (matchesxarray
defaults)assert
is no longer used to catch faulty input arguments, appropriate exceptions are raised instead
Fixed#
idf.open
: sorts both paths and headers consistently so data does not end up mixed up in the DataArrayidf.open
: Return anxarray.CFTimeIndex
rather than an array ofcftime.DatimeProlepticGregorian
objectsidf.save
properly forwardsnodata
argument towrite
idf.write
coerces coordinates to floats before writingipf.read
: Significant performance increase for reading IPF timeseries by specifying the datetime formatipf.write
no longer writes,,
for missing data (which iMOD does not accept)
[0.5.0] - 2019-02-26#
Removed#
Reading IDFs with the
chunks
option
Deprecated#
Reading IDFs with the
memmap
optionimod.idf.dataarray
, useimod.idf.load
instead
Changed#
Reading IDFs gives delayed objects, which are only read on demand by dask
IDF: instead of
res
andtransform
attributes, usedx
anddy
coordinates (0D or 1D)Use
cftime.DatetimeProlepticGregorian
to support time instead ofnp.datetime64
, allowing longer timespansRepository moved from
https://gitlab.com/deltares/
tohttps://gitlab.com/deltares/imod/
Added#
Notebook in
examples
folder for synthetic model exampleSupport for nonequidistant IDF files, by adding
dx
anddy
coordinates
Fixed#
IPF support implicit
itype