-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathevt.py
More file actions
271 lines (250 loc) Β· 10.1 KB
/
evt.py
File metadata and controls
271 lines (250 loc) Β· 10.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
from typing import Any, Optional
import numpy as np
from imod.common.interfaces.iregridpackage import IRegridPackage
from imod.logging import init_log_decorator
from imod.mf6.boundary_condition import BoundaryCondition
from imod.mf6.regrid.regrid_schemes import EvapotranspirationRegridMethod
from imod.mf6.validation import BOUNDARY_DIMS_SCHEMA, CONC_DIMS_SCHEMA
from imod.schemata import (
AllCoordsValueSchema,
AllInsideNoDataSchema,
AllNoDataSchema,
AllValueSchema,
CoordsSchema,
DimsSchema,
DTypeSchema,
IdentityNoDataSchema,
IndexesSchema,
OtherCoordsSchema,
)
from imod.util.spatial import unstack_dim_into_variable
SEGMENT_BOUNDARY_DIMS_SCHEMA = (
DimsSchema("segment", "time", "layer", "y", "x")
| DimsSchema("segment", "layer", "y", "x")
| DimsSchema("segment", "time", "layer", "{face_dim}")
| DimsSchema("segment", "layer", "{face_dim}")
# Layer dim not necessary, as long as there is a layer coordinate present.
| DimsSchema("segment", "time", "y", "x")
| DimsSchema("segment", "y", "x")
| DimsSchema("segment", "time", "{face_dim}")
| DimsSchema("segment", "{face_dim}")
)
class Evapotranspiration(BoundaryCondition, IRegridPackage):
"""
Evapotranspiration (EVT) Package.
Any number of EVT Packages can be specified for a single groundwater flow
model. All single-valued variables are free format.
https://water.usgs.gov/water-resources/software/MODFLOW-6/mf6io_6.0.4.pdf#page=86
Parameters
----------
surface: array of floats (xr.DataArray)
Is the elevation of the ET surface (L).
rate: array of floats (xr.DataArray)
Is the maximum ET flux rate (L/T).
depth: array of floats (xr.DataArray)
Is the ET extinction depth (L).
proportion_rate: array of floats (xr.DataArray, optional)
Is the proportion of the maximum ET flux rate at the bottom of a segment
(dimensionless). "petm" in MODFLOW 6. Requires a "segment" dimension.
proportion_depth: array of floats (xr.DataArray, optional)
Is the proportion of the ET extinction depth at the bottom of a segment
(dimensionless). "pxdp" in MODFLOW 6. Requires a "segment" dimension
concentration: array of floats (xr.DataArray, optional)
if this flow package is used in simulations also involving transport, then this array is used
as the concentration for inflow over this boundary.
concentration_boundary_type: ({"AUX", "AUXMIXED"}, optional)
if this flow package is used in simulations also involving transport, then this keyword specifies
how outflow over this boundary is computed.
fixed_cell: array of floats (xr.DataArray)
indicates that evapotranspiration will not be reassigned to a cell
underlying the cell specified in the list if the specified cell is
inactive.
print_input: ({True, False}, optional)
keyword to indicate that the list of evapotranspiration information will
be written to the listing file immediately after it is read.
Default is False.
print_flows: ({True, False}, optional)
Indicates that the list of evapotranspiration flow rates will be printed
to the listing file for every stress period time step in which "BUDGET
PRINT" is specified in Output Control. If there is no Output Control
option and PRINT FLOWS is specified, then flow rates are printed for the
last time step of each stress period.
Default is False.
save_flows: ({True, False}, optional)
Indicates that evapotranspiration flow terms will be written to the file
specified with "BUDGET FILEOUT" in Output Control.
Default is False.
observations: [Not yet supported.]
Default is None.
validate: {True, False}
Flag to indicate whether the package should be validated upon
initialization. This raises a ValidationError if package input is
provided in the wrong manner. Defaults to True.
repeat_stress: dict or xr.DataArray of datetimes, optional
Used to repeat data for e.g. repeating stress periods such as
seasonality without duplicating the values. If provided as dict, it
should map new dates to old dates present in the dataset.
``{"2001-04-01": "2000-04-01", "2001-10-01": "2000-10-01"}`` if provided
as DataArray, it should have dimensions ``("repeat", "repeat_items")``.
The ``repeat_items`` dimension should have size 2: the first value is
the "key", the second value is the "value". For the "key" datetime, the
data of the "value" datetime will be used.
Examples
--------
Without ET extinction depth:
>>> evt = Evapotranspiration(surface=surface, rate=rate, depth=depth)
With ET extinction depth and segments:
>>> segments = xr.DataArray(
... data=[1, 2, 3], coords={"segment": [1, 2, 3]}, dims=("segment",)
... )
>>> segments_reversed = segments.copy()
>>> segments_reversed.values = [3, 2, 1]
>>> proportion_depth = segments * xr.full_like(like, 0.3)
>>> proportion_rate = segments_reversed * xr.full_like(like, 0.3)
>>> evt = Evapotranspiration(
... surface=surface,
... rate=rate,
... depth=depth,
... proportion_rate=proportion_rate,
... proportion_depth=proportion_depth,
... )
"""
_pkg_id = "evt"
_init_schemata = {
"surface": [
DTypeSchema(np.floating),
IndexesSchema(),
CoordsSchema(("layer",)),
BOUNDARY_DIMS_SCHEMA,
AllCoordsValueSchema("layer", ">", 0),
],
"rate": [
DTypeSchema(np.floating),
IndexesSchema(),
CoordsSchema(("layer",)),
BOUNDARY_DIMS_SCHEMA,
AllCoordsValueSchema("layer", ">", 0),
],
"depth": [
DTypeSchema(np.floating),
IndexesSchema(),
CoordsSchema(("layer",)),
BOUNDARY_DIMS_SCHEMA,
AllCoordsValueSchema("layer", ">", 0),
],
"proportion_rate": [
DTypeSchema(np.floating),
IndexesSchema(),
CoordsSchema(("layer",)),
SEGMENT_BOUNDARY_DIMS_SCHEMA,
AllCoordsValueSchema("layer", ">", 0),
],
"proportion_depth": [
DTypeSchema(np.floating),
IndexesSchema(),
CoordsSchema(("layer",)),
SEGMENT_BOUNDARY_DIMS_SCHEMA,
AllCoordsValueSchema("layer", ">", 0),
],
"concentration": [
DTypeSchema(np.floating),
IndexesSchema(),
CoordsSchema(
(
"species",
"layer",
)
),
CONC_DIMS_SCHEMA,
],
"print_flows": [DTypeSchema(np.bool_), DimsSchema()],
"save_flows": [DTypeSchema(np.bool_), DimsSchema()],
}
_write_schemata = {
"surface": [
OtherCoordsSchema("idomain"),
AllNoDataSchema(), # Check for all nan, can occur while clipping
AllInsideNoDataSchema(other="idomain", is_other_notnull=(">", 0)),
],
"rate": [IdentityNoDataSchema("surface")],
"depth": [IdentityNoDataSchema("surface")],
"proportion_rate": [IdentityNoDataSchema("surface")],
"proportion_depth": [
IdentityNoDataSchema("surface"),
AllValueSchema(">=", 0.0),
AllValueSchema("<=", 1.0),
],
"concentration": [IdentityNoDataSchema("surface"), AllValueSchema(">=", 0.0)],
}
_period_data = ("surface", "rate", "depth")
_optional_data = ("proportion_depth", "proportion_rate")
_keyword_map = {}
_template = BoundaryCondition._initialize_template(_pkg_id)
_auxiliary_data = {"concentration": "species"}
_regrid_method = EvapotranspirationRegridMethod()
@init_log_decorator()
def __init__(
self,
surface,
rate,
depth,
proportion_rate=None,
proportion_depth=None,
concentration=None,
concentration_boundary_type="auxmixed",
fixed_cell=False,
print_input=False,
print_flows=False,
save_flows=False,
observations=None,
validate: bool = True,
repeat_stress=None,
):
if (proportion_rate is None) ^ (proportion_depth is None):
raise ValueError(
"Both 'proportion_rate' and 'proportion_depth' must both be provided,"
" or neither of them."
)
dict_dataset = {
"surface": surface,
"rate": rate,
"depth": depth,
"proportion_rate": proportion_rate,
"proportion_depth": proportion_depth,
"concentration": concentration,
"concentration_boundary_type": concentration_boundary_type,
"fixed_cell": fixed_cell,
"print_input": print_input,
"print_flows": print_flows,
"save_flows": save_flows,
"observations": observations,
"repeat_stress": repeat_stress,
}
# Remove optional data if None
for key in self._optional_data:
if dict_dataset[key] is None:
del dict_dataset[key]
super().__init__(dict_dataset)
self._validate_init_schemata(validate)
def _validate(self, schemata, **kwargs):
# Insert additional kwargs
kwargs["surface"] = self["surface"]
errors = super()._validate(schemata, **kwargs)
return errors
def _get_pkg_options(
self,
predefined_options: dict[str, Any],
not_options: Optional[list[str]] = None,
):
options = super()._get_pkg_options(predefined_options, not_options=not_options)
# Add amount of segments
if "segment" in self.dataset.dims:
options["nseg"] = self.dataset.sizes["segment"] + 1
else:
options["nseg"] = 1
return options
def _get_bin_ds(self):
bin_ds = super()._get_bin_ds()
# Unstack "segment" dimension into different variables
bin_ds = unstack_dim_into_variable(bin_ds, "segment")
return bin_ds