@@ -465,7 +465,7 @@ def setup_perioddata(model,
465465 ============== =========================================
466466 start_datetime Start date of each model stress period
467467 end_datetime End date of each model stress period
468- time MODFLOW elapsed time, in days*
468+ time MODFLOW elapsed time, in days [#f1]_
469469 per Model stress period number
470470 perlen Stress period length (days)
471471 nstp Number of timesteps in stress period
@@ -480,29 +480,19 @@ def setup_perioddata(model,
480480 perioddata is also saved to stress_period_data.csv in the tables folder
481481 (usually `/tables`).
482482
483- *Modflow elapsed time includes the time lengths specified for
484- any steady-state periods (at least 1 day). Therefore if the model
485- has an initial steady-state period with a ``perlen`` of one day,
486- the elapsed time at the model start date will already be 1 day.
483+ .. rubric:: Footnotes
484+
485+ .. [#f1] Modflow elapsed time includes the time lengths specified for
486+ any steady-state periods (at least 1 day). Therefore if the model
487+ has an initial steady-state period with a ``perlen`` of one day,
488+ the elapsed time at the model start date will already be 1 day.
487489 """
488490 # get start_date_time from parent if available and start_date_time wasn't specified
489491 # only apply to tdis_perioddata_config if it wasn't specified there
490492 if tdis_perioddata_config .get ('start_datetime' , '1970-01-01' ) == '1970-01-01' and \
491493 default_start_datetime != '1970-01-01' :
492494 tdis_perioddata_config ['start_date_time' ] = default_start_datetime
493495
494- # cast steady array to boolean
495- #if steady is not None and not isinstance(steady, dict):
496- # tdis_perioddata_config['steady'] = np.array(steady).astype(bool).tolist()
497-
498- # get period data groups
499- # if no groups are specified, make a group from general stress period input
500- #cfg = self.cfg
501- defaults = {#'start_date_time': default_start_datetime,
502- #'nper': nper,
503- #'steady': steady,
504- #'oc_saverecord': oc_saverecord,
505- }
506496 perioddata_groups = parse_perioddata_groups (tdis_perioddata_config ,
507497 nper = nper , steady = steady ,
508498 start_date_time = default_start_datetime )
0 commit comments