mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
25 lines
826 B
Python
25 lines
826 B
Python
import os
|
|
import rips
|
|
|
|
resinsight = rips.Instance.find()
|
|
|
|
test_model_path = "e:/gitroot-second/ResInsight/TestModels"
|
|
|
|
case_paths = []
|
|
case_paths.append(test_model_path + "/Case_with_10_timesteps/Real0/BRUGGE_0000.EGRID")
|
|
case_paths.append(test_model_path + "/Case_with_10_timesteps/Real10/BRUGGE_0010.EGRID")
|
|
case_paths.append(test_model_path + "/Case_with_10_timesteps/Real30/BRUGGE_0030.EGRID")
|
|
case_paths.append(test_model_path + "/Case_with_10_timesteps/Real40/BRUGGE_0040.EGRID")
|
|
|
|
for case_path in case_paths:
|
|
assert os.path.exists(
|
|
case_path
|
|
), "You need to set valid case paths for this script to work"
|
|
|
|
case_group = resinsight.project.create_grid_case_group(case_paths=case_paths)
|
|
|
|
case_group.compute_statistics()
|
|
|
|
view = case_group.views()[0]
|
|
view.apply_cell_result("DYNAMIC_NATIVE", "PRESSURE_DEV")
|