You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Unless I'm missing something, it is currently not possible to read time-series of auxiliary variables from the cell-by-cell budget file using the get_ts() method. Darcy fluxes ('DATA-SPDIS') and saturated thickness ('DATA-SAT') are saved to the budget file as auxiliary variables, but get_ts() only returns the q variable, which in those cases is set to a dummy value of zero.
Describe the solution you'd like
A way for get_ts() to retrieve the values of one (or all) auxiliary variables for a given record. Perhaps all aux variables are always returned, or the user gets to set some sort or variable argument in get_ts() which defaults to 'q'?
Describe alternatives you've considered
For specific discharge, loop over the required times and get the full gridded values using get_data(text='DATA-SPDIS', totim=t)[0], then use flopy.utils.postprocessing.get_specific_discharge() and subset the required cell id.
Additional context
Flopy v3.8.0
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Unless I'm missing something, it is currently not possible to read time-series of auxiliary variables from the cell-by-cell budget file using the
get_ts()
method. Darcy fluxes ('DATA-SPDIS'
) and saturated thickness ('DATA-SAT'
) are saved to the budget file as auxiliary variables, butget_ts()
only returns theq
variable, which in those cases is set to a dummy value of zero.Example code
Describe the solution you'd like
A way for
get_ts()
to retrieve the values of one (or all) auxiliary variables for a given record. Perhaps all aux variables are always returned, or the user gets to set some sort orvariable
argument inget_ts()
which defaults to'q'
?Describe alternatives you've considered
For specific discharge, loop over the required times and get the full gridded values using
get_data(text='DATA-SPDIS', totim=t)[0]
, then useflopy.utils.postprocessing.get_specific_discharge()
and subset the required cell id.Additional context
Flopy v3.8.0
The text was updated successfully, but these errors were encountered: