<div dir="ltr">Hi Erik,<div><br></div><div>thanks for your response: it is very useful.</div><div><br></div><div><span class="gmail-im" style="color:rgb(80,0,80)">&gt; &gt; Also, is it a problem if I don&#39;t worry about the boundaries If I<br>&gt; &gt; want to interpolate the constraints onto a sphere?<br>&gt; <br></span>&gt; Yes it is. Interpolation requires a stencil, which requires boundaries.<br></div><div><br></div><div>I suspected so. Then, going back to the question in the first email, you</div><div>said that I am essentially forced to compute the diagnostic at</div><div>each timestep. The diagnostic I want to compute is very expensive,</div><div>and it would slow down dramatically the evolution, so I really want to</div><div>compute it only when I am going to output it. What I had in mind was</div><div>to copy grid function to the previous timelevels by setting _p and _p_p. </div><div>If I copy the same values as the one at the current time, this would</div><div>essentially disable time interpolation. But, if I output only when all</div><div>the refinement levels at the same time, this should not be a problem,</div><div>because there shouldn&#39;t be a need for time prolongation, right?</div><div><br></div><div>Thanks again for your help,</div><div>Gabriele</div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Sat, Mar 6, 2021 at 7:45 AM Erik Schnetter &lt;<a href="mailto:schnetter@cct.lsu.edu">schnetter@cct.lsu.edu</a>&gt; wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">On Fri, Mar 5, 2021 at 8:01 PM Gabriele Bozzola<br>
&lt;<a href="mailto:bozzola.gabriele@gmail.com" target="_blank">bozzola.gabriele@gmail.com</a>&gt; wrote:<br>
&gt;<br>
&gt; Hi Erik,<br>
&gt;<br>
&gt; thank you very much for your answer.<br>
&gt;<br>
&gt; Just a clarification: what is &#39;boundary&#39; exactly in this context?<br>
<br>
&quot;Boundary&quot; in the context are all grid points where the constraints<br>
cannot be calculated directly, i.e. by evaluating finite differences.<br>
<br>
&gt; Also, is it a problem if I don&#39;t worry about the boundaries If I<br>
&gt; want to interpolate the constraints onto a sphere?<br>
<br>
Yes it is. Interpolation requires a stencil, which requires boundaries.<br>
<br>
Cactus interpolation supports taking derivatives during interpolation.<br>
You can thus interpolate the ADM variables and their derivatives onto<br>
a sphere, and calculate the constraints there. You won&#39;t need to take<br>
derivatives on the sphere since you interpolated all derivatives, so<br>
evaluating the constraints on points on a sphere is then a point-wise<br>
operation. The horizon finder does this (calculating the expansion,<br>
not the constraints, but both have equivalent requirements).<br>
<br>
-erik<br>
<br>
&gt; Thanks,<br>
&gt; Gabriele<br>
&gt;<br>
&gt; Erik Schnetter &lt;<a href="mailto:schnetter@cct.lsu.edu" target="_blank">schnetter@cct.lsu.edu</a>&gt; writes:<br>
&gt;<br>
&gt; &gt; Gabriele<br>
&gt; &gt;<br>
&gt; &gt; If you do not use the constraints, then you do not need to set<br>
&gt; &gt; the<br>
&gt; &gt; boundaries. That would simplify many things; for example, you<br>
&gt; &gt; can<br>
&gt; &gt; calculate them at any time, and you do not need to worry about<br>
&gt; &gt; time<br>
&gt; &gt; levels. However, you then need to be careful about visualization<br>
&gt; &gt; and<br>
&gt; &gt; reductions: You need to ensure that you don&#39;t accidentally<br>
&gt; &gt; visualize<br>
&gt; &gt; the boundaries, and you cannot perform vertex-centred reductions<br>
&gt; &gt; in<br>
&gt; &gt; Carpet because they need some boundary values.<br>
&gt; &gt;<br>
&gt; &gt; If you do need boundaries, then you need three time levels to<br>
&gt; &gt; allow<br>
&gt; &gt; prolongation on boundaries, and you are essentially forced to<br>
&gt; &gt; evaluate<br>
&gt; &gt; the constraints at every iteration. I recommend the schedule bin<br>
&gt; &gt; &quot;MoL_PseudoEvolution&quot; for this, which runs once per time step,<br>
&gt; &gt; after<br>
&gt; &gt; MoL&#39;s loop, at the right time (i.e. before restriction).<br>
&gt; &gt;<br>
&gt; &gt; -erik<br>
&gt; &gt;<br>
&gt; &gt; On Fri, Mar 5, 2021 at 11:01 AM Gabriele Bozzola<br>
&gt; &gt; &lt;<a href="mailto:bozzola.gabriele@gmail.com" target="_blank">bozzola.gabriele@gmail.com</a>&gt; wrote:<br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt; Hello,<br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt; suppose (for clarity) that I want to write a thorn that<br>
&gt; &gt;&gt; computes the constraint violations<br>
&gt; &gt;&gt; as grid functions. Since this is a diagnostic, I don&#39;t need to<br>
&gt; &gt;&gt; compute it at every iteration,<br>
&gt; &gt;&gt; so I will add a parameter &quot;compute every&quot; and I will schedule<br>
&gt; &gt;&gt; the computations in<br>
&gt; &gt;&gt; CCTK_ANALYSIS. Then, I will be careful and make sure that<br>
&gt; &gt;&gt; compute_every is a<br>
&gt; &gt;&gt; multiple of when all the refinement levels are synced up.<br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt; How are boundary conditions handled in this case?<br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt; I can call Boundary_SelectGroupForBC every &quot;compute_every&quot; and<br>
&gt; &gt;&gt; schedule the<br>
&gt; &gt;&gt; corresponding functions in the scheduler. But, do I need to (1)<br>
&gt; &gt;&gt; allocate multiple timelevels<br>
&gt; &gt;&gt; for my grid functions, (2) do anything about filling previous<br>
&gt; &gt;&gt; timelevels?<br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt; I am looking at WeylScal4 as an example. The thorn has<br>
&gt; &gt;&gt; parameters &quot;compute_every&quot;,<br>
&gt; &gt;&gt; the grid functions have 3 time levels, and<br>
&gt; &gt;&gt; Boundary_SelectGroupForBC is called<br>
&gt; &gt;&gt; every &quot;compute_every&quot;, but nothing is done to fill the previous<br>
&gt; &gt;&gt; timelevels. How does this<br>
&gt; &gt;&gt; work?<br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt; Assuming that the boundary conditions are &#39;flat&#39;, is there any<br>
&gt; &gt;&gt; way to just work with one<br>
&gt; &gt;&gt; timelevel?<br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt; Thanks,<br>
&gt; &gt;&gt; Gabriele<br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt; _______________________________________________<br>
&gt; &gt;&gt; Users mailing list<br>
&gt; &gt;&gt; <a href="mailto:Users@einsteintoolkit.org" target="_blank">Users@einsteintoolkit.org</a><br>
&gt; &gt;&gt; <a href="http://lists.einsteintoolkit.org/mailman/listinfo/users" rel="noreferrer" target="_blank">http://lists.einsteintoolkit.org/mailman/listinfo/users</a><br>
<br>
<br>
<br>
-- <br>
Erik Schnetter &lt;<a href="mailto:schnetter@cct.lsu.edu" target="_blank">schnetter@cct.lsu.edu</a>&gt;<br>
<a href="http://www.perimeterinstitute.ca/personal/eschnetter/" rel="noreferrer" target="_blank">http://www.perimeterinstitute.ca/personal/eschnetter/</a><br>
</blockquote></div>