<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On Tue, Nov 19, 2013 at 3:19 PM, Geoffrey Irving <span dir="ltr"><<a href="mailto:irving@naml.us" target="_blank">irving@naml.us</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">On Tue, Nov 19, 2013 at 1:14 PM, Matthew Knepley <<a href="mailto:knepley@gmail.com">knepley@gmail.com</a>> wrote:<br>

> On Tue, Nov 19, 2013 at 1:14 PM, Geoffrey Irving <<a href="mailto:irving@naml.us">irving@naml.us</a>> wrote:<br>
>><br>
>> It looks like when ex12 clones the DM, it reuses the mesh data<br>
>> structure but copies the coordinate vector.  Is there a reason it<br>
>> can't reuse that storage?  Given that the PetscFEM routines accept the<br>
>> same position array for dependent and auxiliary fields, does it even<br>
>> make sense to have distinct coordinate arrays?<br>
><br>
><br>
> Yes, this is lazy. It could be replaced by<br>
><br>
> DMGetCoordinateSection(dm, &s)<br>
> DMGetCoordinatesLocal(dm, &c)<br>
> DMSetCoordinateSection(dmAux, s)<br>
> DMSetCoordinatesLocal(dmAux, c)<br>
<br>
Does it matter that dm's section knows about boundary conditions, and<br>
dmAux's currently doesn't?  This change would mean that both sections<br>
know about boundary conditions.<br></blockquote><div><br></div><div>The coordinate section is a different thing which describes coordinate layout.</div><div>There are no BC in the coordinate sections, only in the default sections. The</div>
<div>aux has a different default section for the layout of the coefficient.</div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Should I make this change to ex12 and remove the SetupMaterialSection<br>
function entirely, or should I only use it in my own code?<br></blockquote><div><br></div><div>We still need SetupMaterialSection() if we are running with a material coefficient.</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">
Thanks,<br>
Geoffrey<br>
</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>