communication of field in STK #13949
Replies: 3 comments 7 replies
-
@alanw0 @trilinos/STK |
Beta Was this translation helpful? Give feedback.
-
@mhamadmahdialloush thanks for the question. For mesh-entities that are shared or ghosted, the function Unfortunately we don't have a function that does this for a particular part. |
Beta Was this translation helpful? Give feedback.
-
Thanks for your feedback. This is an algorithmic issue in fact. The calculations on a certain part might rely on calculations on other parts. So I need that when I do calculations on a certain part, the calculations are finalized and up-to-date on the shared/ghosted entities, because these values might be required for calculations on other parts. I am obliged at the moment to communicate the field every time I finish calculations on a part unfortunately, which is a waste of time. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello,
In an application I am doing that uses STK, I would rather communicate an STK field on a certain STK part, but not all the parts. Is that technically possible?
My application would do calculations for each part alone, so I need that whenever I finish my calculations on a specific part, to communicate the field on that part only.
I am using stk::mesh::communicate_field_data for that purpose. Currently, I am calling the latter function every time I finish the calculation for the part, which is very expensive in fact since it communicates the field over the whole parts.
Thanks!
Beta Was this translation helpful? Give feedback.
All reactions