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
It is currently possible to run MIKE 1D, EPANET, and SWMM engines. It should be possible to run 2D models with a similar workflow:
import os from mikeplus import DataTableAccess from mikeplus.engines import MIKE21FM data_access = DataTableAccess("../tests/testdata/Db/some_2d_model.sqlite") data_access.open_database() engine = MIKE21FM(data_access.datatables) engine.run() data_access.close_database()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It is currently possible to run MIKE 1D, EPANET, and SWMM engines. It should be possible to run 2D models with a similar workflow:
The text was updated successfully, but these errors were encountered: