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 #75 #80

Merged
merged 1 commit into from
Sep 10, 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 timml/inhomogeneity.py
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ def __init__(
self.order = order
self.ndeg = ndeg

self.layers = layers # layers with impermeable wall
self.layers = np.atleast_1d(layers) # layers with impermeable wall
self.nonimplayers = list(
set(range(self.model.aq.naq)) - set(self.layers)
) # layers without wall
Expand Down
4 changes: 2 additions & 2 deletions timml/trace.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def timtraceline(
silent=False,
returnlayers=False,
*,
metadata=False
metadata=False,
):
verbose = False # used for debugging
if not metadata:
Expand Down Expand Up @@ -257,7 +257,7 @@ def timtracelines(
silent=".",
win=[-1e30, 1e30, -1e30, 1e30],
*,
metadata=False
metadata=False,
):
xyztlist = []
for x, y, z in zip(xstart, ystart, zstart):
Expand Down
4 changes: 2 additions & 2 deletions timml/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def contour(
newfig=True,
figsize=None,
legend=True,
**kwargs
**kwargs,
):
"""Contour plot

Expand Down Expand Up @@ -245,7 +245,7 @@ def tracelines(
figsize=None,
*,
return_traces=False,
metadata=False
metadata=False,
):
"""Draw trace lines"""
if color is None:
Expand Down
4 changes: 2 additions & 2 deletions timml/well.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ def capzone(
nstepmax=100,
silent=".",
*,
metadata=False
metadata=False,
):
"""Compute a capture zone

Expand Down Expand Up @@ -249,7 +249,7 @@ def plotcapzone(
figsize=None,
*,
return_traces=False,
metadata=False
metadata=False,
):
"""Plot a capture zone

Expand Down