-
Notifications
You must be signed in to change notification settings - Fork 238
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
[MGTL] Allow multiple bulk element ids in identify #2252
[MGTL] Allow multiple bulk element ids in identify #2252
Conversation
Of course, it's my pleasure ! |
Here we go: an unstructured triangle mesh and a Y-line going through the domain (typical for river BCs). Additionally, an according prism mesh. |
@@ -133,21 +133,8 @@ std::vector<std::size_t> identifySubdomainMeshElements( | |||
OGS_FATAL( | |||
"Expect exactly one element to be found in the bulk mesh."); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is the error message still correct?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed: "exactly one" to at "least one".
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
⏩
If the lower dimensional elements are inside the bulk mesh, there is no unique bulk element associated with it, but multiple elements. In the case of unique elements, the behaviour didn't change. In the case of multiple elements, the bulk element ids are stored in the FieldData with accompanying CellData array 'number_bulk_elements'.
Meshes kindly provided by Thomas_TK @ github <thomas.kalbacher@ufz.de>
I works for the 3D prism model as well. !!!! |
Put it in a ctest and add some docu on the benchmark page. Then, and only then, can you rely on these features being correct in the feature. |
OpenGeoSys development has been moved to GitLab. |
Upon request for Dirichlet BCs inside of the domain defined along lines.
@Thomas-TK Could you provide an example?