Source code for flopy.modflow.mfghb

"""
mfghb module.  Contains the ModflowGhb class. Note that the user can access
the ModflowGhb class as `flopy.modflow.ModflowGhb`.

Additional information for this MODFLOW package can be found at the `Online
MODFLOW Guide
<https://water.usgs.gov/ogw/modflow/MODFLOW-2005-Guide/ghb.html>`_.

"""

import numpy as np

from ..pakbase import Package
from ..utils import MfList
from ..utils.recarray_utils import create_empty_recarray


[docs]class ModflowGhb(Package): """ MODFLOW General-Head Boundary Package Class. Parameters ---------- model : model object The model object (of type :class:`flopy.modflow.mf.Modflow`) to which this package will be added. ipakcb : int, optional Toggles whether cell-by-cell budget data should be saved. If None or zero, budget data will not be saved (default is None). stress_period_data : list, recarray, dataframe or dictionary of boundaries. Each ghb cell is defined through definition of layer(int), row(int), column(int), stage(float), conductance(float) The simplest form is a dictionary with a lists of boundaries for each stress period, where each list of boundaries itself is a list of boundaries. Indices of the dictionary are the numbers of the stress period. This gives the form of:: stress_period_data = {0: [ [lay, row, col, stage, cond], [lay, row, col, stage, cond], [lay, row, col, stage, cond], ], 1: [ [lay, row, col, stage, cond], [lay, row, col, stage, cond], [lay, row, col, stage, cond], ], ... kper: [ [lay, row, col, stage, cond], [lay, row, col, stage, cond], [lay, row, col, stage, cond], ] } Note that if no values are specified for a certain stress period, then the list of boundaries for the previous stress period for which values were defined is used. Full details of all options to specify stress_period_data can be found in the flopy3boundaries Notebook in the basic subdirectory of the examples directory dtype : dtype definition if data type is different from default options : list of strings Package options. (default is None). extension : string Filename extension (default is 'ghb') unitnumber : int File unit number (default is None). filenames : str or list of str Filenames to use for the package and the output files. If filenames=None the package name will be created using the model name and package extension and the cbc output name will be created using the model name and .cbc extension (for example, modflowtest.cbc), if ipakcb is a number greater than zero. If a single string is passed the package will be set to the string and cbc output names will be created using the model name and .cbc extension, if ipakcb is a number greater than zero. To define the names for all package files (input and output) the length of the list of strings should be 2. Default is None. Attributes ---------- Methods ------- See Also -------- Notes ----- Parameters are not supported in FloPy. Examples -------- >>> import flopy >>> ml = flopy.modflow.Modflow() >>> lrcsc = {0:[2, 3, 4, 10., 100.]} #this ghb will be applied to all >>> #stress periods >>> ghb = flopy.modflow.ModflowGhb(ml, stress_period_data=lrcsc) """ def __init__( self, model, ipakcb=None, stress_period_data=None, dtype=None, no_print=False, options=None, extension="ghb", unitnumber=None, filenames=None, ): # set default unit number of one is not specified if unitnumber is None: unitnumber = ModflowGhb._defaultunit() # set filenames filenames = self._prepare_filenames(filenames, 2) # cbc output file self.set_cbc_output_file(ipakcb, model, filenames[1]) # call base package constructor super().__init__( model, extension=extension, name=self._ftype(), unit_number=unitnumber, filenames=filenames[0], ) self._generate_heading() self.url = "ghb.html" self.no_print = no_print self.np = 0 if options is None: options = [] if self.no_print: options.append("NOPRINT") self.options = options self.parent.add_package(self) if dtype is not None: self.dtype = dtype else: self.dtype = self.get_default_dtype( structured=self.parent.structured ) self.stress_period_data = MfList(self, stress_period_data) def _ncells(self): """Maximum number of cells that have general head boundaries (developed for MT3DMS SSM package). Returns ------- ncells: int maximum number of ghb cells """ return self.stress_period_data.mxact
[docs] def write_file(self, check=True): """ Write the package file. Parameters ---------- check : boolean Check package data for common errors. (default True) Returns ------- None """ if check: # allows turning off package checks when writing files at model level self.check( f=f"{self.name[0]}.chk", verbose=self.parent.verbose, level=1, ) f_ghb = open(self.fn_path, "w") f_ghb.write(f"{self.heading}\n") f_ghb.write(f"{self.stress_period_data.mxact:10d}{self.ipakcb:10d}") for option in self.options: f_ghb.write(f" {option}") f_ghb.write("\n") self.stress_period_data.write_transient(f_ghb) f_ghb.close()
[docs] def add_record(self, kper, index, values): try: self.stress_period_data.add_record(kper, index, values) except Exception as e: raise Exception(f"mfghb error adding record to list: {e!s}")
[docs] @staticmethod def get_empty(ncells=0, aux_names=None, structured=True): # get an empty recarray that corresponds to dtype dtype = ModflowGhb.get_default_dtype(structured=structured) if aux_names is not None: dtype = Package.add_to_dtype(dtype, aux_names, np.float32) return create_empty_recarray(ncells, dtype, default_value=-1.0e10)
[docs] @staticmethod def get_default_dtype(structured=True): if structured: dtype = np.dtype( [ ("k", int), ("i", int), ("j", int), ("bhead", np.float32), ("cond", np.float32), ] ) else: dtype = np.dtype( [("node", int), ("bhead", np.float32), ("cond", np.float32)] ) return dtype
@staticmethod def _get_sfac_columns(): return ["cond"]
[docs] @classmethod def load(cls, f, model, nper=None, ext_unit_dict=None, check=True): """ Load an existing package. Parameters ---------- f : filename or file handle File to load. model : model object The model object (of type :class:`flopy.modflow.mf.Modflow`) to which this package will be added. nper : int The number of stress periods. If nper is None, then nper will be obtained from the model object. (default is None). ext_unit_dict : dictionary, optional If the arrays in the file are specified using EXTERNAL, or older style array control records, then `f` should be a file handle. In this case ext_unit_dict is required, which can be constructed using the function :class:`flopy.utils.mfreadnam.parsenamefile`. check : boolean Check package data for common errors. (default True) Returns ------- ghb : ModflowGhb object ModflowGhb object. Examples -------- >>> import flopy >>> m = flopy.modflow.Modflow() >>> ghb = flopy.modflow.ModflowGhb.load('test.ghb', m) """ if model.verbose: print("loading ghb package file...") return Package.load( f, model, cls, nper=nper, check=check, ext_unit_dict=ext_unit_dict, )
@staticmethod def _ftype(): return "GHB" @staticmethod def _defaultunit(): return 23