Support for Steady State MT3DMS Mode #1508
-
Hi everyone, I was wondering if there is support for the steady state mode for transport modeling as mentioned in the MT3DMS manual for version 5.3, chapter 10 (https://hydro.geo.ua.edu/mt3d/mt3dms_v5_supplemental.pdf) in flopy. Cheers, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
I checked the source code today and the ssflag argument does exist for the BTN module, but was not added to the documentation. Here's an example of how to use it: ssflag = ["ssflag"] + ["" for _ in range(kper - 1)]
btn = Mt3dBtn(..., ssflag=ssflag)
# or if your btn file already exists you can use
btn.ssflag = ssflag |
Beta Was this translation helpful? Give feedback.
I checked the source code today and the ssflag argument does exist for the BTN module, but was not added to the documentation. Here's an example of how to use it: