swn.modflow.SwnMf6.default_packagedata#

SwnMf6.default_packagedata(hyd_cond1=1.0, hyd_cond_out=None, thickness1=1.0, thickness_out=None, width1=None, width_out=None, roughch=0.024)#

High-level function to set MODFLOW 6 SFR PACKAGEDATA defaults.

Parameters:
hyd_cond1float or pandas.Series, optional

Hydraulic conductivity of the streambed, as a global or per top of each segment. Used for reach rhk. Default 1.

hyd_cond_outNone, float or pandas.Series, optional

Similar to thickness1, but for the hydraulic conductivity of each segment outlet. If None (default), the same hyd_cond1 value for the top of the outlet segment is used for the bottom.

thickness1float or pandas.Series, optional

Thickness of the streambed, as a global or per top of each segment. Used for reach rbth. Default 1.

thickness_outNone, float or pandas.Series, optional

Similar to thickness1, but for the bottom of each segment outlet. If None (default), the same thickness1 value for the top of the outlet segment is used for the bottom.

width1float or pandas.Series, optional

Channel width, as a global or per top of each segment. Used for reach rwid. Default None will first try finding “width” from “segments”, otherwise will use 10.

width_outNone, float or pandas.Series, optional

Similar to width1, but for the bottom of each segment outlet. If None (default), use a constant width1 value for segment.

roughchfloat or pandas.Series, optional

Manning’s roughness coefficient for the channel. If float, then this is a global value, otherwise it is per-segment with a Series. Default 0.024.

Returns:
None