Project Tree Classes

ResInsight provides access to a number of other objects in the Project Tree. These all inherit the PdmObjectBase class class.

You can look for objects of a specific type by using the descendants method of rips.project

import rips
# Connect to ResInsight instance
resinsight = rips.Instance.find()
# Example code
print("ResInsight version: " + resinsight.version_string())
# Get a list of all Eclipse views in the project
views = resinsight.project.descendants(rips.EclipseView)

The classes are grouped by topic. Select a topic below to see its classes; each class links to its full API reference. Members shared by every class are documented once on PdmObjectBase class.