Model.blockwallremove#

Model.blockwallremove(blockname, wallname)#

Removes all cells from the given finite difference wall.

Parameters:
  • blockname (hwString) – The name of the block.

  • wallname (hwString) – The name of the wall from which all cells are to be removed.

Example#

Remove a wall with name “wall1” from block with name “block1”#
import hm

model = hm.Model()

model.blockwallremove(blockname="block1", wallname="wall1")