mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
9 lines
265 B
Python
9 lines
265 B
Python
|
|
# Load ResInsight Processing Server Client Library
|
||
|
|
import rips
|
||
|
|
# Connect to ResInsight instance
|
||
|
|
resinsight = rips.Instance.find()
|
||
|
|
|
||
|
|
# Open a project
|
||
|
|
resinsight.project.open(
|
||
|
|
"C:/Users/lindk/Projects/ResInsight/TestModels/TEST10K_FLT_LGR_NNC/10KWithWellLog.rsp")
|