Flopy/PyeMu/Model_Muse #1680
-
Hi everybody ! I am currently developing a groundwater model on ModelMuse. For calibration, I wanted to go through FLopy to use PEST (PyeMu). using set_all_data_external, my input files are written for each layer (k, k22 et k33) or stress periods (rch, ghb, well...). How can I get a file that I can transform into an array of dimension Row x Col. The goal being to use PstFrom. Thank U for taking the time to read this, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
First, use pandas to load the txt file and sort by layer, row, col. Then use numpy to reshape your array and save it as a txt file. |
Beta Was this translation helpful? Give feedback.
First, use pandas to load the txt file and sort by layer, row, col. Then use numpy to reshape your array and save it as a txt file.