Jonathan,
Thank you for the quick response.
I set:
"sim = flopy.mf6.MFSimulation(sim_name=name, exe_name='mf6', version='mf6', sim_ws=workspace)", which doesn't work, though I'd have thought it should since my MF6 bin file is set as an environmental variable under 'path'.
I also tried:
sim = flopy.mf6.MFSimulation(sim_name=name, exe_name='C:\WRDApp\mf6.1.0\bin\mf6', version='mf6', sim_ws=workspace)
sim = flopy.mf6.MFSimulation(sim_name=name, exe_name='C:\WRDApp\mf6.1.0\bin\mf6.exe', version='mf6', sim_ws=workspace)
I also tried changing my directory name to remove the 'dots' and changing in the code as well, e.g.
sim = flopy.mf6.MFSimulation(sim_name=name, exe_name='C:\WRDApp\mf6_1_0\bin\mf6.exe', version='mf6', sim_ws=workspace)
in each case I receive an exception like:
Exception: The program C:\WRDApp\mf6.1.in\mf6 does not exist or is not executable.
I also tried running the same code in a JupiterNB instead of through Spyder, but receive the same exception.
I'm running windows 10 enterprise and I am logged in through an administrative account.
I'm at bit of a loss, so any thoughts would be helpful.
-Chris