Skip to content

Commit

Permalink
bugfix: typo for r_well>0 in grf-laplace
Browse files Browse the repository at this point in the history
  • Loading branch information
MuellerSeb committed Mar 7, 2019
1 parent 99dfcbc commit c41309e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion anaflow/flow/laplace.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ def grf_laplace(
diff_sr0 = np.sqrt(Spart[0] / Kpart[0])
# set the general pumping-condtion depending on the well-radius
if rpart[0] > 0.0:
Qs = -s ** (-1.5) / diff_sr0 * rpart[0] ** (1 - nu)
Qs = -s ** (-1.5) / diff_sr0 * rpart[0] ** (nu - 1)
else:
Qs = (2 / diff_sr0) ** nu / gamma(1 - nu) * s ** (-nu / 2 - 1)

Expand Down

0 comments on commit c41309e

Please sign in to comment.