mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
10 lines
374 B
Python
10 lines
374 B
Python
# Load ResInsight Processing Server Client Library
|
|
import rips
|
|
# Connect to ResInsight instance
|
|
resinsight = rips.Instance.find()
|
|
# Example code
|
|
print("ResInsight version: " + resinsight.version_string())
|
|
|
|
case = resinsight.project.case(case_id=0)
|
|
case.replace(new_grid_file='C:/Users/lindkvis/Projects/ResInsight/TestModels/Case_with_10_timesteps/Real0/BRUGGE_0000.EGRID')
|