set_inlet_BC#
- InvasionPercolation.set_inlet_BC(pores=None, mode='add')[source]#
Specifies which pores are treated as inlets for the invading phase
- Parameters:
pores (ndarray) – The indices of the pores from which the invading fluid invasion should start
mode (str or list of str, optional) –
Controls how the boundary conditions are applied. Options are:
mode
meaning
’add’
(default) Adds the supplied boundary conditions to the given locations. Raises an exception if values of any type already exist in the given locations.
’overwrite’
Adds supplied boundary conditions to the given locations, including overwriting conditions of the given type or any other type that may be present in the given locations.
’remove’
Removes boundary conditions of the specified type from the specified locations. If
bctype
is not specified then all types are removed. If no locations are given then values are remvoed from all locations.If a list of strings is provided, then each mode in the list is handled in order, so that
['remove', 'add']
will give the same results add'overwrite'
.