In [1]:
Copied!
import geoeq as ge
import numpy as np
import geoeq as ge
import numpy as np
Infinite Slope¶
In [2]:
Copied!
# Infinite slope (returns dict with 'FS')
result = ge.infinite_slope(beta=25, phi=32)
print(f'FOS = {result["FS"]:.2f}')
# Infinite slope (returns dict with 'FS')
result = ge.infinite_slope(beta=25, phi=32)
print(f'FOS = {result["FS"]:.2f}')
FOS = 1.34
Practice Exercises¶
Try the functions above with your own data!
In [3]:
Copied!
# YOUR CODE HERE
# YOUR CODE HERE