-
Hi, I have my model loaded as Trying
It would seems the obvious way would be to pass this new_hk array to the constructor of the lpf package, but I'm wondering if by repeating arguments I would leave out some important definition. The model is a mf-usg and the LPF package uses external files for hk, kz, and sy at each layer. Any help would be appreciated. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
For mfusg model, I think you have to set property values by layer. Below is what I would do in your case:
new_hk is a list and new_hk[layer] is the new property array for that layer. |
Beta Was this translation helpful? Give feedback.
Thanks @hjia1005. Actually, I can confirm now that you can do:
gwf.lpf.hk = new_hk
for a mf-usg model where the new_hk is one dimensional and contains the total number of nodes in the grid.
Thanks for pointing the path to go!