Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix usgbcf #1959

Merged
merged 2 commits into from
Sep 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion flopy/mfusg/mfusgbcf.py
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ def __init__(
locat=self.unit_number[0],
)
if not structured:
self.ksat = Util3d(
self.ksat = Util2d(
model,
(njag,),
np.float32,
Expand Down
10 changes: 10 additions & 0 deletions flopy/modflow/mfsfr2.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,16 @@ class ModflowSfr2(Package):
Numpy record array of length equal to nss, with columns for each
variable entered in items 6a, 6b and 6c (see SFR package input
instructions). Segment numbers are one-based.
channel_geometry_data : dict of dicts containing lists
Optional. Outer dictionary keyed by stress period (0-based); inner
dictionaries keyed by segment number (1-based), for which 8-point channel
cross section geometries are desired. Inner dict values are lists of shape
(2,8) - with the first dimension referring to two lists: one of 8 XCPT
values, and the other of 8 ZCPT values.
Example structure: {kper: {segment: [[xcpt1...xcpt8],[zcpt1...zcpt8]]}}.
Note that for these to be applied, the user must also specify an icalc
value of 2 for each corresponding segment in segment_data for the
relevant stress periods.
dataset_5 : dict of lists
Optional; will be built automatically from segment_data unless
specified. Dict of lists, with key for each stress period. Each list
Expand Down