We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The MetaswapModel object takes the path to the unsa database as a constructor parameter: MetaSwapModel(unsat_database)
MetaSwapModel(unsat_database)
But on calling "write"on the metaswap model, it renders it in an unreadable format: in para_sim.inp it writes
unsa_svat_path = "$"D:\dev\imod_suite\imod_coupler\.imod_collector\e150_metaswap\"\"
To correct this we can re-assign the path directly to simulation_settings of the metaswap model
simulation_settings
metamod.msw_model.simulation_settings["unsa_svat_path"] = original.msw_model.simulation_settings["unsa_svat_path"]
but this should not be necessary
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The MetaswapModel object takes the path to the unsa database as a constructor parameter:
MetaSwapModel(unsat_database)
But on calling "write"on the metaswap model, it renders it in an unreadable format:
in para_sim.inp it writes
unsa_svat_path = "$"D:\dev\imod_suite\imod_coupler\.imod_collector\e150_metaswap\"\"
To correct this we can re-assign the path directly to
simulation_settings
of the metaswap modelmetamod.msw_model.simulation_settings["unsa_svat_path"] = original.msw_model.simulation_settings["unsa_svat_path"]
but this should not be necessary
The text was updated successfully, but these errors were encountered: