hjia1005
Results
1
issues of
hjia1005
I use time series for both rch and evt packages. Below is how I created them ``` rch=flopy.mf6.modflow.mfgwfrch.ModflowGwfrch(gwf, filename='model.rch', pname='rch', timeseries=ts, stress_period_data=rch_spd_ts) rch.ts.initialize(filename="model.rch.ts", timeseries=ts, time_series_namerecord=ts_namerecord, interpolation_methodrecord=["linearend"]*13) rch.ts.write() rch.write() ``` ```...