-
Notifications
You must be signed in to change notification settings - Fork 36
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
libROM with Dealii #92
Comments
Interesting.. |
Thank you @hsllo for the interesting question. Currently, libROM does not support deal.II applications, but we would gladly welcome the contribution of a PR that adds this support. Implementing this should not be very difficult for a deal.II developer, but unfortunately the internal libROM team does not have any deal.II developers. This is a good opportunity for you or other libROM users to expand the capabilities of libROM, enabling more users. I would be glad to help with any questions about how to add support, and I will describe here what needs to be done for deal.II or any other FEM code. Currently, libROM supports MFEM, as illustrated by the example solver in The most challenging aspect of implementing this is to define and work with index maps between full-order space DOFs and sample mesh space DOFs. For MFEM, we support the general case of multiple spaces and multiple variables on each space, but you may only need one space and one variable, which would be simpler. This requires knowledge of deal.II. The MFEM implementation in |
Hello @dylan-copeland , Can I help you with this issue? |
Hi @samyakdarshan, if you would like to work on deal.II support, I will be glad to answer any questions and provide some assistance from the libROM side (I can help with libROM but not deal.II). Please feel free to work on this and create a libROM PR. |
Please note that my comment on January 24, 2022, was in reference to hyperreduction for projection-based (POD) ROM methods, which are code-invasive and depend on the FEM library being used (e.g. MFEM, deal.II, etc.). I should also mention that libROM features some less invasive ROM methods, such as DMD, LaSDI, gLaSDI, which would be much easier to use in other libraries such as deal.II. These less invasive methods depend only on data, so an application based on deal.II would simply need to provide data. If anyone would like to make some examples of using a libROM method like DMD for a deal.II problem, such examples would be welcome and could be shown possibly on https://www.librom.net. |
Yes, got it. Sorry was bit held up with other work. Will work on hyperreduction for projection-based (POD) ROM methods. Thanks for the inputs! For DMD and others, I'll try to create examples at the end. |
Good afternoon,
I was wondering if libROM is compatible with the library Dealii. I would like to include a ROM implementation to an existing solver developed with Dealii.
Thank you very much.
H.
The text was updated successfully, but these errors were encountered: