<div dir="auto"><div style="font-family:sans-serif;font-size:12.8px" dir="auto">Dear all</div><div style="font-family:sans-serif;font-size:12.8px" dir="auto"><br></div><div style="font-family:sans-serif;font-size:12.8px" dir="auto">I want to subtract an array at t-dt and t times only at the base grid (refinement level 0),  following <a href="http://lists.einsteintoolkit.org/pipermail/users/2013-May/003004.html" style="text-decoration-line:none;color:rgb(66,133,244)">http://lists.einsteintoolkit.org/pipermail/users/2013-May/003004.html</a>, I implemented the suggestion in my code as<br></div><div style="font-family:sans-serif;font-size:12.8px" dir="auto"><pre style="white-space:pre-wrap">BEGIN_GLOBAL_MODE(cctkGH) {
  ENTER_LEVEL_MODE(cctkGH, 0) {

 for(int k=0;k&lt;cctk_lsh[2];k++) { 
        for(int j=0;j&lt;cctk_lsh[1];j++) { 
            for(int i=0;i&lt;cctk_lsh[0];i++) { 
                int index= CCTK_GFINDEX3D(cctkGH,i,j,k);
                lres += abs(phi[index]-phi_p[index]);
             }
        }
  }
 } LEAVE_LEVEL_MODE;
} END_GLOBAL_MODE;</pre></div><div style="font-family:sans-serif;font-size:12.8px" dir="auto">However I got a segmentation fault. I think is because of the array index, if I comment<br></div><div style="font-family:sans-serif;font-size:12.8px" dir="auto">the line<br></div><div style="font-family:sans-serif;font-size:12.8px" dir="auto"><br></div><div style="font-family:sans-serif;font-size:12.8px" dir="auto">lres += abs(phi[index]-phi_p[index]);<br></div><div style="font-family:sans-serif;font-size:12.8px" dir="auto"><br></div><div style="font-family:sans-serif;font-size:12.8px" dir="auto"> the code works fine.</div><div style="font-family:sans-serif;font-size:12.8px" dir="auto">My questions are: 1) How can I perform this operation only at the base grid?, 2) How can I get the correct index at the base level? .. any help is very welcome. Thanks.<div style="color:rgb(136,136,136)"></div></div><div style="color:rgb(136,136,136);font-family:sans-serif;font-size:12.8px" dir="auto"><div><br></div><div>Erik</div></div></div>