<div dir="ltr">Hello,<div><br></div><div>I have a viscosity grid function I want to evaluate (among other places) at CCTK_POSTREGRID, so that it&#39;s consistent and ready for use at CCTK_EVOL. Problem is, the viscosity depends on the past timelevels of another grid function (the entropy). It seems Carpet loops on the timelevels in CCTK_POSTREGRID, which means that when the loop is on the &quot;current&quot; timelevel everything works fine, but when the loop moves onto some past timelevel, the other timelevels, the ones further in the past so to speak, are undefined. In particular the code segfaults when trying to access something like entropy_p_p[ijk], since entropy_p_p does not point to a valid memory address.</div><div><br></div><div>I was able to fix this simply by checking if the pointers to past timelevels are valid, and breaking out of the function otherwise. This does the trick, but I was wondering if there&#39;s a more elegant, Cactus/Carpet native solution. My fix could maybe also slightly impact performance.</div><div><br></div><div>Is there a way to disable the loop on timelevels in CCTK_POSTREGRID (but only for a given scheduled routine)? Or to schedule something after POSTREGRID, but before timelevels are rotated? As far as I know neither is possible, but hopefully I&#39;m disregarding something.</div><div><br></div><div>Thanks,</div><div>Federico Guercilena</div></div>