You can try inspecting the reference snapshot solution files and seeing if there is a configuration file stack (as in previous configurations that had been used as part of the start up procedure). These may have the information you are looking for.
It depends what parts. Requesting scattered values will be very inefficient (and may be slower than requesting the entire solution) since it requires a large number of small copies. Requesting small contiguous parts can be efficient, but elements are not contiguous (so asking for an element with 64 solution points requires 64 copy operations). None of these interfaces are wired up in PyFR at the moment, however.
thanks for the answer.
And what about view matrices to access all the elements on a given boundary for a given partition at once? How can these be setted up, if possible?
Use an XchgView to pack the data (on the GPU) into a contiguous matrix and then copy this matrix back to the host. This is exactly how PyFR handles communication between MPI ranks (pack the scattered data into a buffer and then send it over the network).
Your case falls exactly into get_scal_fpts_for_inter. Vector is if you want to access gradient quantities. However, you have indicated that you want the solution at the boundary points.
However, you have indicated that you want the solution at the boundary points.
you’re right but I was going by easier steps and I was satisfied with the boundary state ur for now and later I was planning in doing something similar to the fluid force plugin but even in that case in the actual code I don’t see any predefined way to reference only those elements that have a given boundary, am I right? If so how can this be accomplished?