bgd

Adding load cases

Before adding a load case, a proper trajectory must be included for the casing since this is required for calculating some forces. To do this, you can use well_profile.

Install it using pip:

$ pip install pwploads
>>> import well_profile as wp
>>> trajectory = wp.load('trajectory1.xlsx')
>>> casing.add_trajectory(trajectory)

Running in hole

Overpull

Green cement pressure test

Example

>>> casing.running()                            # add load case: running in hole
>>> casing.overpull()                           # add load case: overpull
>>> casing.green_cement()                       # add load case: green cement pressure test
>>> casing.plot(plot_type='pyplot').show()      # plot

casing_with_loads