dataio.export.rms.structure_depth_fault_surfaces module

export_structure_depth_fault_surfaces(project, structural_model_name)[source]

Simplified interface when exporting triangulated fault surfaces from RMS.

Parameters:
  • project (Any) – the ‘magic’ project variable in RMS

  • structural_model_name (str) – name of the structural model

Return type:

ExportResult

Examples

Example usage in an RMS script:

from fmu.dataio.export.rms import export_structure_depth_fault_surfaces

export_results = export_structure_depth_fault_surfaces(
    project,
    "structural_model_name"
)

for result in export_results.items:
    print(f"Output surfaces to {result.absolute_path}")