<div dir="ltr"><div dir="ltr">On Fri, May 3, 2019 at 2:42 AM Praveen C via petsc-users <<a href="mailto:petsc-users@mcs.anl.gov">petsc-users@mcs.anl.gov</a>> wrote:<br></div><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Dear all<br>
<br>
In a 2d mesh I save some tags like this<br>
<br>
Physical Line(100) = {1,2};<br>
Physical Line(200) = {3,4};<br>
<br>
so that I can identify boundary portions on which bc is to be applied.<br>
<br>
How can I access this tag (100,200 in above example) after reading the msh file into a DMPlex ?<br></blockquote><div><br></div><div>Plex uses DMLabel objects to store tags like this. You would first retrieve the label. We store them by name,</div><div>determined from the input file. For GMsh I think it should be "Face Sets",</div><div><br></div><div>  DMGetLabel(dm, "Face Sets", &label);</div><div><br></div><div>You can always check the names using -dm_view. Next you can get all the point with a given label values using</div><div><br></div><div>  DMLabelGetStratumIS(label, 3, &pointIS);</div><div><br></div><div>or check the label of a particular point,</div><div><br></div><div>  DMLabelGetValue(label, point, &val);</div><div><br></div><div>  Thanks,</div><div><br></div><div>     Matt</div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
Thanks<br>
praveen</blockquote></div><br clear="all"><div><br></div>-- <br><div dir="ltr" class="gmail_signature"><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div>What most experimenters take for granted before they begin their experiments is infinitely more interesting than any results to which their experiments lead.<br>-- Norbert Wiener</div><div><br></div><div><a href="http://www.cse.buffalo.edu/~knepley/" target="_blank">https://www.cse.buffalo.edu/~knepley/</a><br></div></div></div></div></div></div></div></div>