Skip to content
New issue

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

Run 2D models #48

Open
ryan-kipawa opened this issue Sep 30, 2024 · 0 comments
Open

Run 2D models #48

ryan-kipawa opened this issue Sep 30, 2024 · 0 comments
Labels
enhancement New feature or request

Comments

@ryan-kipawa
Copy link
Collaborator

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()
@ryan-kipawa ryan-kipawa added the enhancement New feature or request label Sep 30, 2024
@ryan-kipawa ryan-kipawa changed the title Run simulations for all engines Run 2D models Sep 30, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant