#7834 Ensemble Well Logs: add depth equalization (#7914)

This commit is contained in:
Kristian Bendiksen
2021-08-30 09:18:34 +02:00
committed by GitHub
parent 2f580a0c52
commit 414ee77aa8
11 changed files with 473 additions and 10 deletions

View File

@@ -11,7 +11,11 @@ resinsight = rips.Instance.find()
home_dir = expanduser("~")
properties = [("STATIC_NATIVE", "PORO", 0), ("DYNAMIC_NATIVE", "PRESSURE", 0)]
properties = [
("STATIC_NATIVE", "PORO", 0),
("DYNAMIC_NATIVE", "PRESSURE", 0),
("STATIC_NATIVE", "INDEX_K", 0),
]
export_folder = tempfile.mkdtemp()
@@ -77,3 +81,5 @@ for path in case_file_paths:
export_folder = export_folder_path.as_posix()
well_log_plot.export_data_as_las(export_folder=export_folder)
resinsight.project.close()