Skip to content

Commit

Permalink
feat(Mf6Splitter): preserve MFSimulation version & exe_name
Browse files Browse the repository at this point in the history
  • Loading branch information
wpbonelli committed Dec 7, 2023
1 parent c223c97 commit 7d823e0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion flopy/mf6/utils/model_splitter.py
Original file line number Diff line number Diff line change
Expand Up @@ -3262,7 +3262,9 @@ def split_model(self, array):
self._remap_nodes(array)

if self._new_sim is None:
self._new_sim = modflow.MFSimulation()
self._new_sim = modflow.MFSimulation(
version=self._sim.version, exe_name=self._sim.exe_name
)
self._create_sln_tdis()

nam_options = {}
Expand Down

0 comments on commit 7d823e0

Please sign in to comment.