mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
10 lines
370 B
Python
10 lines
370 B
Python
######################################################################
|
|
# This script applies a cell result to the first view in the project
|
|
######################################################################
|
|
import rips
|
|
|
|
resinsight = rips.Instance.find()
|
|
|
|
view = resinsight.project.views()[0]
|
|
view.apply_cell_result(result_type="STATIC_NATIVE", result_variable="DX")
|