<div dir="ltr">On Mon, Nov 11, 2013 at 11:46 AM, Anthony Vergottis <span dir="ltr"><<a href="mailto:a.vergottis@ucl.ac.uk" target="_blank">a.vergottis@ucl.ac.uk</a>></span> wrote:<br><div class="gmail_extra"><div class="gmail_quote">
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">Dear All,<div><br></div><div>I would like some assistance on how a mesh is created using Triangle with the DM objects. Specifically how does one input the geometry of the computational domain into PETSc/DM objects to then generate a 2D triangular mesh? Is there a function that can do such a thing? Currently I have hard coded all mesh I/O but I would like to make things a bit cleaner if its possible.</div>
</div></blockquote><div><br></div><div>The default 2D mesh generator in PETSc is Triangle. If you have a 1D boundary, you can generate the 2D mesh using</div><div><br></div><div>  DMPlexGenerate(boundaryDM, NULL, PETSC_FALSE, &dm)</div>
<div><br></div><div>or PETSC_TRUE if you want edges included. I suggest using DMPlexCreateFromDAG() if you have programmatically</div><div>constructed your boundary, or DMPlexCreateFromCellList() if you get your boundary from a meshing tool.</div>
<div><br></div><div>  Thanks,</div><div><br></div><div>     Matt</div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div>Thanks in advance for any help.</div>
<div><br></div><div>Best regards,</div><div>Anthony</div></div>
</blockquote></div><br><br clear="all"><div><br></div>-- <br>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>