@@ -395,7 +395,6 @@ def export_well_path_completions(
395395 include_perforations = True ,
396396 include_fishbones = True ,
397397 fishbones_exclude_main_bore = True ,
398- combination_mode = "INDIVIDUALLY" ,
399398 export_welspec = True ,
400399 export_comments = True ,
401400 custom_file_name = "" ,
@@ -414,7 +413,6 @@ def export_well_path_completions(
414413 include_perforations | Export perforations? | bool
415414 include_fishbones | Export fishbones? | bool
416415 fishbones_exclude_main_bore | Exclude main bore when exporting fishbones? | bool
417- combination_mode | Settings for multiple completions in same cell | String Enum
418416 export_welspec | Export WELSPEC keyword | bool
419417 export_comments | Export completion data source as comment | bool
420418 custom_file_name | Custom filename when file_split is "UNIFIED_FILE"| String
@@ -425,7 +423,6 @@ def export_well_path_completions(
425423 ----------------------------------- | ------------
426424 "UNIFIED_FILE" | A single file with all combined transmissibilities
427425 "SPLIT_ON_WELL" | One file for each well with combined transmissibilities
428- "SPLIT_ON_WELL_AND_COMPLETION_TYPE" | One file for each completion type for each well
429426
430427 **Enum compdat_export**::
431428
@@ -434,13 +431,6 @@ def export_well_path_completions(
434431 "TRANSMISSIBILITIES" | Direct export of transmissibilities
435432 "WPIMULT_AND_DEFAULT_CONNECTION_FACTORS" | Include WPIMULT in addition to transmissibilities
436433
437- **Enum combination_mode**::
438-
439- Option | Description
440- ------------------- | ------------
441- "INDIVIDUALLY" | Exports the different completion types into separate sections
442- "COMBINED" | Export one combined transmissibility for each cell
443-
444434 """
445435 if isinstance (well_path_names , str ):
446436 well_path_names = [well_path_names ]
@@ -454,7 +444,6 @@ def export_well_path_completions(
454444 includePerforations = include_perforations ,
455445 includeFishbones = include_fishbones ,
456446 excludeMainBoreForFishbones = fishbones_exclude_main_bore ,
457- combinationMode = combination_mode ,
458447 exportWelspec = export_welspec ,
459448 exportComments = export_comments ,
460449 customFileName = custom_file_name ,
0 commit comments