-
-
Notifications
You must be signed in to change notification settings - Fork 187
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
Direct mesh access combined with mappings #2162
Comments
I would then remove the notes above and the behavior in terms of precice/src/precice/Participant.hpp Lines 896 to 903 in b9c0728
would be: regardless of any mapping, one has to define a bounding box and for the behavior here precice/src/precice/Participant.hpp Lines 905 to 912 in b9c0728
of course the region would be fix. Since we filter now actively for the specified region, there is also the usability question what to do about the serial case: as of now, I think calling the function was kept optional precice/src/precice/Participant.hpp Lines 887 to 891 in b9c0728
|
Also note that the current concept of the direct mesh access is // initialize preCICE as usual
precice.initialize();
// Get the size of the received mesh partition, which lies within the
// defined bounding (provided by the coupling participant)
const int otherMeshSize = precice.getMeshVertexSize(otherMesh);
// Now finally get information about the mesh vertices.
// First allocate memory for the IDs and coordinates
std::vector<double> otherCoordinates(otherMeshSize * dim);
std::vector<VertexID> otherVertexIDs(otherMeshSize);
// ... and afterwards ask preCICE to fill the vectors
precice.getMeshVertexIDsAndCoordinates(otherMesh,
otherVertexIDs,
otherCoordinates); and with the requested changes, the behavior of |
@uekerman could you define more clearly the intended behavior of At the moment, we have precice/tests/parallel/direct-mesh-access/helpers.cpp Lines 95 to 103 in 4d1c89f
The function is a pure getter function on whatever we have on our local partition. With the above filtering we would need to add the bounding box filter additionally. However, what is supposed to happen in case we have:
Allowing getMeshVertexCoordinatesandIDs for provided meshes is a bit of a showstopper right now as the function might behave then rather unexpected in my opinion. I would suggest to
|
I agree on a)-d).
My tendency is to consider this non-breaking or non-hurting at least. We change the functionality in two ways:
|
As @davidscn mentioned above, this means that This function is currently usable for all received and provided meshes. I could imagine users displaying this as debugging information or similar. As we reused this function from before the direct access feature, it is possible that changing it will either break existing code or lead to surprising results. There is also no mention of this function being tied to direct access. |
I would go the "safe" path here and make the function throw in case it is called on a received-mesh, unless the flag enabled access to it. In current scenarios, the direct access is the only reason to call it on received meshes in user code. Everything else is probably a bug or misuse. |
Sounds good to me, but make it a warning to avoid breaking erroneous, but working adapter code. |
What's then the expected return value in this case? |
What we had so far: the number of vertices of this mesh partition. |
Was implemented in #2099, but waiting until precice/preeco-orga#31 is final before closing here. |
Please describe the problem you are trying to solve.
Combining the direct access with mappings has an impact on the defined access region. In our API, we define the following behavior
precice/src/precice/Participant.hpp
Lines 896 to 912 in b9c0728
This might lead to confusion when users define an access region and receive vertices beyond the defined access region.
Describe the solution you propose.
Even though we enable users to combine both features, we pre-filter the vertices returned by
getVerticesAndIDs
according to the user-defined access region. This will modify the current behavior in terms ofsetMeshAccesRegion
regardless of whether there is a mapping or notAdditional context
Relevant for considerations in #2099
How and do we consider this breaking?
Discussed with @uekerman about this.
The text was updated successfully, but these errors were encountered: