Skip to content

Commit

Permalink
Lower minimum resistivity of objects to 0.1
Browse files Browse the repository at this point in the history
Lower the minimum resistivity allowed for the DC pseudosection to 0.1,
so students can fill the required table.
  • Loading branch information
santisoler committed Nov 7, 2023
1 parent 6ecf14d commit 632cf8c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions geoscilabs/dcip/DC_Pseudosections.py
Original file line number Diff line number Diff line change
Expand Up @@ -675,14 +675,14 @@ def DC2DPseudoWidget():
return interactive(
DC2DPseudoWidgetWrapper,
rhohalf=BoundedFloatText(
min=10,
min=0.1,
max=1000,
value=1000,
continuous_update=False,
description="$\\rho_1$",
),
rhosph=BoundedFloatText(
min=10,
min=0.1,
max=1000,
value=1000,
continuous_update=False,
Expand Down

0 comments on commit 632cf8c

Please sign in to comment.