Add Read/Write tags to TwoPunctures

Issue #1927 new
Steven R. Brandt created an issue
  SCHEDULE TwoPunctures IN TwoPunctures_Group
  {
    LANG: C
    STORAGE: puncture_u bare_mass
    READS: grid::coordinates(EVERYWHERE)
    WRITES: TWOPUNCTURES::puncture_u(INTERIOR)
    WRITES: ADMBASE::METRIC(INTERIOR)
    WRITES: ADMBASE::CURV(INTERIOR)
    WRITES: ADMBASE::alp(INTERIOR)
  } "Create puncture black hole initial data"

Keyword:

Comments (3)

  1. Steven R. Brandt reporter
    • removed comment

    It could be a separate ticket, but CartGrid3D has a similar issue. I'd like to add (Everywhere) to the writes directives in the schedule.ccl

     schedule CartGrid3D_SetCoordinates as SpatialCoordinates at CCTK_POSTREGRID
     {
       LANG: C
    -  WRITES: grid::coordinates
    +  WRITES: grid::coordinates(everywhere)
     } "Set Coordinates after regridding"
    
  2. Steven R. Brandt reporter
    • removed comment

    There are several places in AHFinderDirect where an annotation could be added:

          before AHFinderDirect_find_horizons
          {
          lang: C
    +     WRITES: AHFINDERDIRECT::ahmask(EVERYWHERE)
          options: global-early loop-local
          } "import the excision mask"
    
  3. Steven R. Brandt reporter
    • removed comment

    I decided it made more sense to attach the patch files to correct read/write directives.

  4. Log in to comment