timflow.transient.model.Model3D.headgrid2#

timflow.transient.model.Model3D.headgrid2(x1, x2, nx, y1, y2, ny, t, layers=None, show_progress=False, printrow=False, parallel=False)#

Grid of heads.

Parameters:
  • xg (array) – x values are generated as linspace(x1, x2, nx)

  • yg (array) – y values are generated as linspace(y1, y2, ny)

  • t (list or array) – times for which grid is returned

  • layers (integer, list or array, optional) – layers for which grid is returned

  • show_progress (bool) – show computation progress, by printing dots per row or with tqdm progressbar when parallel is True. Default is False.

  • parallel (bool, optional) – if True, computes headgrid in parallel using multi threading, by default False

  • printrow (boolean, optional) –

    Deprecated since version 0.2.0: prints dot to screen for each row of grid if set to True

Returns:

h

Return type:

array size nlayers, ntimes, ny, nx

See also

headgrid()