I've been trying to assign transient recharge in Flopy using a time series, boundnames and multipliers as follows (note that I'm using discretization with vertices (DISV)):
This part of the codes runs without any error message, but when I look in to the package stress period data using:
pack_rch.stress_period_data.get_data()
I get the following:
{0: rec.array([(((0, 0), 'Rainfall', 0.5, 'Rch_sed'), None, nan, None),
(((0, 1), 'Rainfall', 0.5, 'Rch_bas'), None, nan, None),
(((0, 2), 'Rainfall', 0.5, 'Rch_bas'), None, nan, None), ...,
(((0, 24865), 'Rainfall', 0.5, 'Rch_bas'), None, nan, None),
(((0, 24866), 'Rainfall', 0.5, 'Rch_bas'), None, nan, None),
(((0, 24867), 'Rainfall', 0.5, 'Rch_bas'), None, nan, None)],
dtype=[('cellid', 'O'), ('recharge', 'O'), ('MULTPLIER', '<f8'), ('boundname', 'O')])
I
t returns a rec.array of tuples for stress period 0 (which is what I want), but the tuples are disarranged, as :
(((0, 0), 'Rainfall', 0.5, 'Rch_sed'), None, nan, None)with all the members packed in the first tuple member while it should be:
((0, 0), 'Rainfall', 0.5, 'Rch_sed')Any suggestions on where I'm going wrong here?
Thanks in advance!
--
You received this message because you are subscribed to the Google Groups "MODFLOW Users Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to modflow+u...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/modflow/c3f02f3b-b90d-4707-8168-2ee801312cd5n%40googlegroups.com.