mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
18 lines
589 B
Python
18 lines
589 B
Python
###################################################################################
|
|
# This example will connect to ResInsight, retrieve a list of wells and print info
|
|
#
|
|
###################################################################################
|
|
|
|
# Import the ResInsight Processing Server Module
|
|
import rips
|
|
|
|
# Connect to ResInsight
|
|
resinsight = rips.Instance.find()
|
|
if resinsight is not None:
|
|
# Get a list of all wells
|
|
wells = resinsight.project.well_paths()
|
|
|
|
print("Got " + str(len(wells)) + " wells: ")
|
|
for well in wells:
|
|
print("Well name: " + well.name)
|