Skip to content

Commit

Permalink
Merge pull request #80 from mbakker7/75-buildingpit-layers
Browse files Browse the repository at this point in the history
fix #75
  • Loading branch information
dbrakenhoff authored Sep 10, 2023
2 parents e0ecd50 + 9d4edcd commit b2cb772
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
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

0 comments on commit b2cb772

Please sign in to comment.