Skip to content
Open
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
4 changes: 2 additions & 2 deletions octant/depths.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,8 +234,8 @@ def get_Vstretching_4(theta_s, theta_b):
This double transformation is continuous with respect to "theta_s"
and "theta_b", as both values approach to zero.
'''
assert 0.0 < theta_s <= 10.0, 'theta_s not in valid range for Vstretching == 4'
assert 0.0 <= theta_b <= 3.0, 'theta_s not in valid range for Vstretching == 4'
if 0.0 < theta_s <= 10.0: print 'theta_s not in valid range for Vstretching == 4'
if 0.0 < theta_b <= 3.0: print 'theta_b not in valid range for Vstretching == 4'

@check_s_limits
def C(s):
Expand Down
Loading