|
| 1 | +{ |
| 2 | + "SummaryStateClass":{ |
| 3 | + "type": "class", |
| 4 | + "signature": "opm.io.sim.SummaryState", |
| 5 | + "doc": "The SummaryState class - this is where the current summary results of the simulator are stored.\nThe SummaryState class has methods to get hold of well, group and general variables." |
| 6 | + }, |
| 7 | + "SummaryState_update_well_var": { |
| 8 | + "signature": "opm.io.sim.SummaryState.update_well_var(well_name: str, variable_name: str, new_value: double) -> None", |
| 9 | + "doc": "Updates the variable of a well.\n\n:param well_name: The name of the well.\n:type well_name: str\n:param variable_name: The name of the variable to update.\n:type variable_name: str\n:param new_value: The new value of the variable.\n:type new_value: double" |
| 10 | + }, |
| 11 | + "SummaryState_update_group_var": { |
| 12 | + "signature": "opm.io.sim.SummaryState.update_group_var(group_name: str, variable_name: str, new_value: double) -> None", |
| 13 | + "doc": "Updates the variable of a group.\n\n:param group_name: The name of the group.\n:type group_name: str\n:param variable_name: The name of the variable to update.\n:type variable_name: str\n:param new_value: The new value of the variable.\n:type new_value: double" |
| 14 | + }, |
| 15 | + "SummaryState_well_var": { |
| 16 | + "signature": "opm.io.sim.SummaryState.well_var(well_name: str, variable_name: str) -> double", |
| 17 | + "doc": "Gets the value of a variable for a well.\n\n:param well_name: The name of the well.\n:type well_name: str\n:param variable_name: The name of the variable to retrieve.\n:type variable_name: str\n\n:return: The value of the specified variable for the well. \n:type return: double" |
| 18 | + }, |
| 19 | + "SummaryState_group_var": { |
| 20 | + "signature": "opm.io.sim.SummaryState.group_var(group_name: str, variable_name: str) -> double", |
| 21 | + "doc": "Gets the value of a variable for a group.\n\n:param group_name: The name of the group.\n:type group_name: str\n:param variable_name: The name of the variable to retrieve.\n:type variable_name: str\n\n:return: The value of the specified variable for the group. \n:type return: double" |
| 22 | + }, |
| 23 | + "SummaryState_elapsed": { |
| 24 | + "signature": "opm.io.sim.SummaryState.elapsed() -> double", |
| 25 | + "doc": "Returns the elapsed time in seconds of the current simulation.\n\n:return: The elapsed time in seconds. \n:type return: double" |
| 26 | + }, |
| 27 | + "SummaryState_groups": { |
| 28 | + "signature": "opm.io.sim.SummaryState.groups -> list", |
| 29 | + "doc": "Returns a list of strings containing all group names.\n\n:return: A list of strings representing all group names. \n:type return: list" |
| 30 | + }, |
| 31 | + "SummaryState_wells": { |
| 32 | + "signature": "opm.io.sim.SummaryState.wells -> list", |
| 33 | + "doc": "Returns a list of strings containing all well names.\n\n:return: A list of strings representing all well names. \n:type return: list" |
| 34 | + }, |
| 35 | + "SummaryState_has_well_var": { |
| 36 | + "signature": "opm.io.sim.SummaryState.has_well_var(well_name: str, variable_name: str) -> bool", |
| 37 | + "doc": "Checks if a well variable exists.\n\n:param well_name: The name of the well.\n:type well_name: str\n:param variable_name: The name of the variable to check.\n:type variable_name: str\n\n:return: True if the variable exists for the well, False otherwise. \n:type return: bool" |
| 38 | + }, |
| 39 | + "SummaryState_has_group_var": { |
| 40 | + "signature": "opm.io.sim.SummaryState.has_group_var(group_name: str, variable_name: str) -> bool", |
| 41 | + "doc": "Checks if a group variable exists.\n\n:param group_name: The name of the group.\n:type group_name: str\n:param variable_name: The name of the variable to check.\n:type variable_name: str\n\n:return: True if the variable exists for the group, False otherwise. \n:type return: bool" |
| 42 | + }, |
| 43 | + "EclipseStateClass": { |
| 44 | + "type": "class", |
| 45 | + "signature": "opm.io.ecl_state.EclipseState", |
| 46 | + "doc": "The EclipseState class - this is a representation of all static properties in the model,ranging from porosity to relperm tables.\nThe content of the EclipseState is immutable and may not be changed at runtime." |
| 47 | + }, |
| 48 | + "EclipseState_input_nnc": { |
| 49 | + "signature": "opm.io.ecl_state.EclipseState.input_nnc() -> list", |
| 50 | + "doc": "Returns a list of non-neighboring connections.\n\nOne non-neighboring connection is a tuple containing the following elements:\n- index1 (int): Index of the first cell.\n- index2 (int): Index of the second cell.\n- transmissibility (double): Transmissibility between the two cells.\n\n:return: A list of non-neighboring connections. \n:type return: list" |
| 51 | + }, |
| 52 | + "EclipseState_faultNames": { |
| 53 | + "signature": "opm.io.ecl_state.EclipseState.faultNames() -> list", |
| 54 | + "doc": "Returns a list of fault names.\n\n:return: A list containing the names of faults. \n:type return: list" |
| 55 | + }, |
| 56 | + "EclipseState_faultFaces": { |
| 57 | + "signature": "opm.io.ecl_state.EclipseState.faultFaces(fault_name: str) -> list", |
| 58 | + "doc": "Returns a list of faces of a fault with the given name.\n\n:param fault_name: The name of the fault.\n:type fault_name: str\n\n:return: A list containing the faces of the specified fault. \n:type return: list" |
| 59 | + }, |
| 60 | + "EclipseState_jfunc": { |
| 61 | + "signature": "opm.io.ecl_state.EclipseState.jfunc() -> dict", |
| 62 | + "doc": "Function returning a dictionary with the following entries: ['FLAG', 'DIRECTION', 'ALPHA_FACTOR', 'BETA_FACTOR', 'OIL_WATER', 'GAS_OIL']\n\n:return: A dictionary containing the specified entries. \n:type return: dict" |
| 63 | + }, |
| 64 | + "EclipseState_simulation": { |
| 65 | + "signature": "opm.io.ecl_state.EclipseState.simulation() -> SimulationConfiguration", |
| 66 | + "doc": "Returns the simulation configuration.\n\n:return: The simulation configuration. \n:type return: SimulationConfiguration" |
| 67 | + }, |
| 68 | + "ScheduleClass": { |
| 69 | + "type": "class", |
| 70 | + "signature": "opm.io.schedule.Schedule", |
| 71 | + "doc": "The Schedule class - this is a representation of all the content from the SCHEDULE section, notably all well and group information and the timestepping." |
| 72 | + }, |
| 73 | + "Schedule_getitem": { |
| 74 | + "signature": "opm.io.schedule.Schedule.__getitem__(report_step: int) -> ScheduleState", |
| 75 | + "doc": "Returns the ScheduleState at the given report step.\n\n:param report_step: The report step.\n:type report_step: int\n\n:return: The ScheduleState at the given report step.\n:type return: ScheduleState" |
| 76 | + }, |
| 77 | + "Schedule_shut_well_well_name_step": { |
| 78 | + "signature": "opm.io.schedule.Schedule.shut_well(well_name: str, step: int) -> None", |
| 79 | + "doc": "Shuts down a well at a given report step.\n\n:param well_name: The name of the well to shut down.\n:type well_name: str\n:param step: The report step at which to shut down the well.\n:type step: int" |
| 80 | + }, |
| 81 | + "Schedule_shut_well_well_name": { |
| 82 | + "signature": "opm.io.schedule.Schedule.shut_well(well_name: str) -> None", |
| 83 | + "doc": "Shuts down a well at the current report step.\n\n:param well_name: The name of the well to shut down.\n:type well_name: str" |
| 84 | + }, |
| 85 | + "Schedule_open_well_well_name_step": { |
| 86 | + "signature": "opm.io.schedule.Schedule.open_well(well_name: str, step: int) -> None", |
| 87 | + "doc": "Opens a well at a given report step.\n\n:param well_name: The name of the well to open.\n:type well_name: str\n:param step: The report step at which to open the well.\n:type step: int\n:raises ValueError: If the report step is in the past or exceeds the duration of the simulation." |
| 88 | + }, |
| 89 | + "Schedule_open_well_well_name": { |
| 90 | + "signature": "opm.io.schedule.Schedule.open_well(well_name: str) -> None", |
| 91 | + "doc": "Opens a well at the current report step.\n\n:param well_name: The name of the well to open.\n:type well_name: str" |
| 92 | + }, |
| 93 | + "Schedule_stop_well_well_name_step":{ |
| 94 | + "signature": "opm.io.schedule.Schedule.stop_well(well_name: str, step: int) -> None", |
| 95 | + "doc": "Stops a well at a given report step.\n\n:param well_name: The name of the well to stop.\n:type well_name: str\n:param step: The report step at which to stop the well.\n:type step: int\n:raises ValueError: If the report step is in the past or exceeds the duration of the simulation." |
| 96 | + }, |
| 97 | + "Schedule_stop_well_well_name": { |
| 98 | + "signature": "opm.io.schedule.Schedule.stop_well(well_name: str) -> None", |
| 99 | + "doc": "Stops a well at the current report step.\n\n:param well_name: The name of the well to stop.\n:type well_name: str" |
| 100 | + }, |
| 101 | + "Schedule_get_injection_properties": { |
| 102 | + "signature": "opm.io.schedule.Schedule.get_injection_properties(well_name: str, report_step: int) -> dict", |
| 103 | + "doc": "Gets injection properties for a well at a specific report step.\n\n:param well_name: The name of the well.\n:type well_name: str\n:param report_step: The report step to retrieve properties for.\n:type report_step: int\n\n:return: A dict containing the properties surf_inj_rate, resv_inj_rate, bhp_target, thp_target. \n:type return: dict" |
| 104 | + }, |
| 105 | + "Schedule_get_production_properties": { |
| 106 | + "signature": "opm.io.schedule.Schedule.get_production_properties(well_name: str, report_step: int) -> dict", |
| 107 | + "doc": "Gets production properties for a well at a specific report step.\n\n:param well_name: The name of the well.\n:type well_name: str\n:param report_step: The report step to retrieve properties for.\n:type report_step: int\n\n:return: A dict containing the properties oil_rate, gas_rate, water_rate, liquid_rate, resv_rate, bhp_target, thp_target, alq_value. \n:type return: dict" |
| 108 | + }, |
| 109 | + "Schedule_groups": { |
| 110 | + "signature": "opm.io.schedule.Schedule._groups(report_step: int) -> list", |
| 111 | + "doc": "Gets a list of all groups at a specified report step.\n\n:param report_step: The report step to retrieve groups for.\n:type report_step: int\n\n:return: A list containing all groups at the specified report step. \n:type return: list" |
| 112 | + }, |
| 113 | + "Schedule_get_well": { |
| 114 | + "signature": "opm.io.schedule.Schedule.get_well(well_name: str, report_step: int) -> Well", |
| 115 | + "doc": "Retrieves a well at a given report step.\n\n:param well_name: The name of the well.\n:type well_name: str\n:param report_step: The report step.\n:type report_step: int\n\n:return: Well object at the given report step. \n:type return: well" |
| 116 | + }, |
| 117 | + "Schedule_get_wells": { |
| 118 | + "signature": "opm.io.schedule.Schedule.get_wells(well_name_pattern: str) -> list", |
| 119 | + "doc": "Gets the names of wells matching a specified pattern.\n\n:param well_name_pattern: The pattern for well names, where '*' acts as a wildcard.\n:type well_name_pattern: str\n\n:return: A list containing the names of wells that match the specified pattern. \n:type return: list" |
| 120 | + }, |
| 121 | + "GroupClass": { |
| 122 | + "signature": "Group", |
| 123 | + "type": "class", |
| 124 | + "doc": "The Group class." |
| 125 | + }, |
| 126 | + "Group_name": { |
| 127 | + "signature": "Group.name", |
| 128 | + "doc": "Returns the name of this group.\n\n:return: The name of this group.\n:type return: str" |
| 129 | + }, |
| 130 | + "Group_num_wells": { |
| 131 | + "signature": "Group.num_wells", |
| 132 | + "doc": "Returns the number of wells in this group.\n\n:return: The number of wells in this group.\n:type return: int" |
| 133 | + }, |
| 134 | + "Group_well_names": { |
| 135 | + "signature": "Group.well_names", |
| 136 | + "doc": "Returns a list of all well names in this group.\n\n:return: A list of all well names in this group.\n:type return: list" |
| 137 | + }, |
| 138 | + "ScheduleStateClass": { |
| 139 | + "signature": "ScheduleState", |
| 140 | + "type": "class", |
| 141 | + "doc": "The ScheduleState class." |
| 142 | + }, |
| 143 | + "ScheduleState_nupcol": { |
| 144 | + "signature": "ScheduleState.nupcol", |
| 145 | + "doc": "The NUPCOL value at this Schedule State. This is a positive integer that defines the maximum number of Newton iterations used to update well targets within a time step." |
| 146 | + }, |
| 147 | + "ScheduleState_get_group": { |
| 148 | + "signature": "ScheduleState.get_group(group_name: str) -> Group", |
| 149 | + "doc": "Gets the group with the specified name from the schedule state.\n\n:param group_name: The name of the group to retrieve from the schedule state.\n:type group_name: str\n\n:return: The group with the specified name from the schedule state. \n:type return: Group" |
| 150 | + }, |
| 151 | + "WellClass": { |
| 152 | + "type": "class", |
| 153 | + "signature": "Well", |
| 154 | + "doc": "The Well class." |
| 155 | + }, |
| 156 | + "Well_pos": { |
| 157 | + "signature": "Well.pos() -> tuple", |
| 158 | + "doc": "Retrieves the position of the well.\n\n:return: A tuple containing the (i, j) coordinates and the reference depth of the well. \n:type return: tuple" |
| 159 | + }, |
| 160 | + "Well_isdefined": { |
| 161 | + "signature": "Well.isdefined(report_step: int) -> bool", |
| 162 | + "doc": "Checks if the well is defined at a specific report step.\n\n:param report_step: The report step to check for the well's definition.\n:type report_step: int\n\n:return: True if the well is defined at the specified report step, False otherwise. \n:type return: bool" |
| 163 | + }, |
| 164 | + "Well_available_gctrl": { |
| 165 | + "signature": "Well.available_gctrl() -> bool", |
| 166 | + "doc": "Checks if the well is available for group control.\n\n:return: True if the well is available for group control, False otherwise. \n:type return: bool" |
| 167 | + }, |
| 168 | + "Well_connections": { |
| 169 | + "signature": "Well.connections() -> list", |
| 170 | + "doc": "Gets a list of all connections associated with the well.\n\n:return: A list containing all connections of the well. \n:type return: list" |
| 171 | + } |
| 172 | +} |
0 commit comments