Aquifer¶
- class Aquifers(**kwargs)[source]¶
Aquifers component class.
- apply(func, attr, *args, inplace=False, **kwargs)¶
Apply function to attributes.
- Parameters:
func (callable) – A function to apply. Must accept data as its first argument.
attr (str, array-like) – Attributes to get data from.
args (misc) – Any additional positional arguments to
func
.kwargs (misc) – Any additional named arguments to
func
.
- Returns:
output – Transformed component.
- Return type:
- property attributes¶
Array of attributes.
- property class_name¶
Name of the component.
- crop_minimal_cube(slices)[source]¶
Modify aquifers’ cell inndices with respect to slices representing grid crop.
- Parameters:
slices (Iterable(slices)) – slices
- Returns:
Aquifers with changed well indices.
- Return type:
- del_state(*args)¶
State remover.
- drop(attr)¶
Drop an attribute.
- dump(path, **kwargs)¶
Dump attributes into file.
- Parameters:
- Returns:
comp – BaseComponent unchanged.
- Return type:
- static dump_array_ascii(buffer, array, header=None, fmt='%f', compressed=True)¶
Writes array-like data into an ASCII buffer.
- Parameters:
- property empty¶
True if component is empty else False.
- empty_like()¶
Get an empty component with the same state and the structure of embedded BaseComponents (if any).
- property field¶
Field associated with the component.
- init_state(**kwargs)¶
Init state attributes.
- keys()¶
Array of attributes.
- load(path_or_buffer, **kwargs)¶
Load data from a file or buffer.
- Parameters:
- Returns:
comp – BaseComponent with loaded attributes.
- Return type:
- property names¶
Returns names of the aquifers.
- ravel(attr=None, order='F', inplace=True)¶
Ravel attributes where applicable assuming by default Fortran order.
- reshape(attr, newshape, order='C', inplace=True)¶
Reshape numpy.ndarray attributes.
- Parameters:
- Returns:
output
- Return type:
BaseComponent if inplace else reshaped attribute itself.
- set_state(**kwargs)¶
State setter.
- property state¶
Get state.
- values()¶
Returns a generator of attribute’s data.