Files
ResInsight/GrpcInterface/Python/rips/PythonExamples/set_cell_result.py

10 lines
370 B
Python
Raw Normal View History

######################################################################
# This script applies a cell result to the first view in the project
######################################################################
import rips
2021-01-26 20:48:01 +01:00
resinsight = rips.Instance.find()
2019-11-21 08:13:15 +01:00
view = resinsight.project.views()[0]
2021-01-26 20:48:01 +01:00
view.apply_cell_result(result_type="STATIC_NATIVE", result_variable="DX")