File size: 43,959 Bytes
0950351
 
 
 
 
10a2580
0950351
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
  "thorn_name": "CactusExamples/WaveToy2DF77",
  "url": "https://bitbucket.org/cactuscode/cactusexamples.git",
  "configuration": "# Configuration definition for thorn WaveToy2DF77\n# $Header$\n\nREQUIRES Boundary\n",
  "interface": "# Interface definition for thorn WaveToy2DF77\n# $Header$\n\nimplements: wavetoy2d\ninherits: boundary \n\nprivate:\n\ncctk_real evolve2d dim=2 type=GF Timelevels=3\n{\n  phi\n} \"The evolved scalar field\"\n\ncctk_real initial dim=2 type=GF\n{\n  timederiv\n} \"For initial data\"\n\ncctk_real coords2d dim=2 type=GF\n{\n  x,\n  y\n} \"The 2D x and y coordinates\"\n\ncctk_real dummy dim=2 type=GF\n{\n  phi_temp\n} \"Just for creating initial data\"\n\nCCTK_INT FUNCTION Coord_SystemRegister   \\\n  (CCTK_POINTER_TO_CONST IN GH,          \\\n   CCTK_INT IN dim,                      \\\n   CCTK_STRING IN systemname)\n\nREQUIRES FUNCTION Coord_SystemRegister\n\nCCTK_INT FUNCTION Coord_SystemHandle  \\\n  (CCTK_POINTER_TO_CONST IN GH,       \\\n   CCTK_STRING IN systemname)\n\nREQUIRES FUNCTION Coord_SystemHandle\n\nCCTK_INT FUNCTION Coord_CoordRegister  \\\n  (CCTK_POINTER_TO_CONST IN GH,        \\\n   CCTK_INT IN systemhandle,           \\\n   CCTK_INT IN direction,              \\\n   CCTK_STRING IN coordname)\n\nREQUIRES FUNCTION Coord_CoordRegister\n\nCCTK_INT FUNCTION Coord_CoordHandle    \\\n  (CCTK_POINTER_TO_CONST IN GH,        \\\n   CCTK_STRING IN coordname,           \\\n   CCTK_STRING IN systemname)\n\nREQUIRES FUNCTION Coord_CoordHandle\n\nCCTK_INT FUNCTION Coord_GroupSystem  \\\n  (CCTK_POINTER_TO_CONST IN GH,      \\\n   CCTK_STRING IN groupname)\n\nREQUIRES FUNCTION Coord_GroupSystem\n\nCCTK_INT FUNCTION Coord_SetDefaultSystem  \\\n  (CCTK_POINTER_TO_CONST IN GH,           \\\n   CCTK_STRING IN systemname)\n\nREQUIRES FUNCTION Coord_SetDefaultSystem\n",
  "param": "# Parameter definitions for thorn WaveToy2DF77\n# $Header$\n\nprivate:\n\n# Initial data\n\nreal amplitude \"Amplitude of initial Gaussian wave\"\n{\n  0:* :: \"\"\n} 1.0\n\nreal xcenter \"x-position of center of Gaussian wave\"\n{\n  *:* :: \"Anywhere\"\n} 0.5\n\nreal ycenter \"y-position of center of Gaussian wave\"\n{\n  *:* :: \"Anywhere\"\n} 0.5\n\nreal sigma \"Width of Gaussian wave\"\n{\n  *:* :: \"Anything\"\n} 0.02\n\n\n# Boundary\n\nkeyword bound \"Which boundary condition to apply\"\n{\n  \"zero\"      :: \"Set boundary values to zero\"\n  \"radiation\" :: \"Radiation/wave boundary conditions\"\n} \"zero\"",
  "schedule": "# Schedule definitions for thorn WaveToy2DF77\n# $Header$\n\nSTORAGE: evolve2d[3],coords2d\n\nschedule WaveToy2DF77_Startup at STARTUP\n{\n  LANG: Fortran\n} \"Register WaveToy2DF77 banner\"\n\nschedule WaveToy2DF77_RegisterCoords at WRAGH\n{\n  LANG: Fortran\n} \"Register WaveToy2DF77 coordinates\"\n\nschedule WaveToy2DF77_Coord as SpatialCoordinates at BASEGRID\n{\n  LANG: Fortran\n} \"Set up 2D coordinates\"\n\nschedule WaveToy2DF77_Initial at INITIAL\n{\n  STORAGE: initial,dummy\n  LANG: Fortran\n} \"Initial data for 2D wave equation\"\n\nschedule WaveToy2DF77_Evolve at EVOL\n{\n  LANG: Fortran\n  SYNC: evolve2d\n} \"Evolution of 2D wave equation\"\n\nschedule WaveToy2DF77_Boundary at EVOL after WaveToy2DF77_Evolve\n{\n  LANG: Fortran\n} \"Apply boundary conditions\"\n",
  "src": {
    "make.code.defn": "# Main make.code.defn file for thorn WaveToy2DF77\n# $Header$\n\n# Source files in this directory\nSRCS = Evolve.F77\\\n       Startup.F77\\\n       Initial.F77\\\n       Coord.F77\\\n       Boundary.F77\n\n# Subdirectories containing source files\nSUBDIRS = \n\n",
    "Startup.F77": " /*@@\n   @file      Startup.F77\n   @date      July 2 2000\n   @author    Gabrielle Allen\n   @desc \n              Register banner for WaveToy2DF77\n   @enddesc \n   @version $Header$\n @@*/\n\n#include \"cctk.h\"\n\n      integer function WaveToy2DF77_Startup()\n\n      implicit none\n   \n      integer ierr\n\n      call CCTK_RegisterBanner(ierr, \n     &\t\"WaveToy2DF77: Evolution of a 2D Scalar Field\")\n\n      WaveToy2DF77_Startup = ierr\n\n      end \n",
    "Initial.F77": " /*@@\n   @file      Initial.F77\n   @date      June 13 2000\n   @author    Gabrielle Allen\n   @desc \n              Initial data for the 2d wave equation solver\n   @enddesc \n @@*/\n  \n#include \"cctk.h\" \n#include \"cctk_Parameters.h\"\n#include \"cctk_Arguments.h\"\n\n\n /*@@\n   @routine    WaveToy2DF77_Initial\n   @date       June 13 2000\n   @author     Gabrielle Allen\n   @desc \n               Initial data for the 2d wave equation. Assumes first\n\t       time derivative is zero.\n   @enddesc \n   @calls      \n   @calledby   \n   @history \n \n   @endhistory \n\n@@*/\n\n      subroutine WaveToy2DF77_Initial(CCTK_ARGUMENTS)\n\n      implicit none\n\n      DECLARE_CCTK_ARGUMENTS\n      DECLARE_CCTK_PARAMETERS \n\n      INTEGER   i,j,ierr\n      CCTK_REAL dx,dy,dt\t\n      CCTK_REAL rad\n      CCTK_REAL zero\n      integer   sw(2)\n\n      zero = 0.0\n      sw(1) = 1\n      sw(2) = 1\n\n      dx = CCTK_DELTA_SPACE(1)\n      dy = CCTK_DELTA_SPACE(2)\n      dt = CCTK_DELTA_TIME\n\nc     For now only have zero time derivative\n      do j = 1, cctk_lsh(2)\n        do i = 1, cctk_lsh(1)\n       \t  timederiv(i,j) = 0.0\n        end do\n      end do               \n\n      do j = 1, cctk_lsh(2)\n        do i = 1, cctk_lsh(1)\n\t   rad = sqrt((x(i,j)-xcenter)**2+(y(i,j)-ycenter)**2)\n           phi(i,j) = amplitude*exp(-(rad)**2/sigma**2)  \n        end do\n      end do\n\nc      call BndScalarVN(ierr,cctkGH, sw, zero, \"wavetoy2df77::phi\")\n\n      do j = 2, cctk_lsh(2)-1\n        do i = 2, cctk_lsh(1)-1\n  \t   phi_temp(i,j) = dt*timederiv(i,j) + 0.5*phi(i,j)+0.5*dt**2/dx**2*\n     &\t                (phi(i+1,j)-2.0*phi(i,j)+phi(i-1,j))\n     &                  +0.5*dt**2/dy**2*(phi(i,j+1)-2.0*phi(i,j)+\n     &                  phi(i,j-1))\n        end do\n      end do\n \n      call CCTK_SyncGroup(ierr,cctkGH,\"wavetoy2df77::dummy\");\n\t\n      do j = 1, cctk_lsh(2)\n        do i = 1, cctk_lsh(1)\n  \t   phi_p(i,j) = phi_temp(i,j)\n        end do\n      end do\n\n\n      return\n      end \n\n\n",
    "Evolve.F77": " /*@@\n   @file      Evolve.F77\n   @date      July 2 2000\n   @author    Gabrielle Allen\n   @desc \n              Evolution routines for the 2d wave equation solver\n   @enddesc \n @@*/\n  \n#include \"cctk.h\" \n#include \"cctk_Arguments.h\"\n\n\n /*@@\n   @routine    WaveToy2DF77_Evolve\n   @date       July 2 2000\n   @author     Gabrielle Allen\n   @desc \n               Evolution for the 2d wave equation\n   @enddesc \n   @calls      \n   @calledby   \n   @history \n \n   @endhistory \n\n@@*/\n\n      subroutine WaveToy2DF77_Evolve(CCTK_ARGUMENTS)\n\n      implicit none\n\n      DECLARE_CCTK_ARGUMENTS\n\n      INTEGER   i,j\n      CCTK_REAL dt,dx,dy\n      CCTK_REAL fac1,fac2,fac3\n\n      dx     = CCTK_DELTA_SPACE(1)\n      dy     = CCTK_DELTA_SPACE(2)\n      dt     = CCTK_DELTA_TIME\n\n      fac3   = (dt*dt)/(dy*dy)\n      fac2   = (dt*dt)/(dx*dx)\n      fac1   = 2.0d0*(1.0d0 - fac2 - fac3)\n\n      do j = 2, cctk_lsh(2)-1\n        do i = 2, cctk_lsh(1)-1\n          phi(i,j) = fac1*phi_p(i,j)-phi_p_p(i,j)+\n     &                 fac2*(phi_p(i+1,j)+phi_p(i-1,j))\n     &                +fac3*(phi_p(i,j+1)+phi_p(i,j-1))\n        end do\n      end do\n\n      return\n      end \n\n\n\n\n\n\n\n\n",
    "Coord.F77": " /*@@\n   @file      Coord.F77\n   @date      July 2 2000\n   @author    Gabrielle Allen\n   @desc \n              Coordinates for the 2d wave equation solver\n   @enddesc \n @@*/\n  \n#include \"cctk.h\" \n#include \"cctk_Parameters.h\"\n#include \"cctk_Arguments.h\"\n#include \"cctk_Functions.h\"\n\n\n /*@@\n   @routine    WaveToy2DF77_RegisterCoords\n   @date       June 13 2000\n   @author     Gabrielle Allen\n   @desc \n     Routine registers the coordinates for WaveToy2Df77\n   @enddesc \n   @calls     \n   @calledby   \n   @history \n \n   @endhistory \n\n@@*/\n\n      subroutine WaveToy2DF77_RegisterCoords(CCTK_ARGUMENTS)\n\n      implicit none\n  \n      DECLARE_CCTK_ARGUMENTS\n      DECLARE_CCTK_PARAMETERS\n      DECLARE_CCTK_FUNCTIONS\n\n      CCTK_INT, parameter :: izero = 0\n      integer, parameter :: ik = kind(izero)\n\n      integer retval,ierr\n      CCTK_INT coord_system_handle\n\n      retval = 0\n\n      ierr= Coord_SystemRegister(cctkGH, 2_ik, \"cart2d\");\n\nc      call CCTK_INFO(\"Getting System Handle\")\n\n      coord_system_handle = Coord_SystemHandle(cctkGH, \"cart2d\")\n\nc      call CCTK_INFO(\"Setting Coord Handle\")\n\n      ierr =  Coord_CoordRegister(cctkGH, coord_system_handle, 1_ik, \"x\")\n\n      if (ierr .lt. 0) then\n         call CCTK_WARN(1,\"Problem with registering coordinate x\")\n         retval = -1\n      end if\n\n      ierr =  Coord_CoordRegister(cctkGH, coord_system_handle, 2_ik, \"y\")\n\n      if (ierr .lt. 0) then\n         call CCTK_WARN(1,\"Problem with registering coordinate y\")\n         retval = -1\n      end if\n\nc      call CCTK_INFO(\"Setting Coord Type\")\n\n      call Util_TableSetString(ierr, coord_system_handle, \"uniform\", \"TYPE\")\n\nc      call CCTK_INFO(\"Setting Default System\")\n\n      ierr = Coord_SetDefaultSystem(cctkGH, \"cart2d\");\n\n      return\n      end\n\n\n /*@@\n   @routine    WaveToy2DF77_Coord\n   @date       June 13 2000\n   @author     Gabrielle Allen\n   @desc \n               Coordinates for the 2d wave equation\n   @enddesc \n   @calls      \n   @calledby   \n   @history \n \n   @endhistory \n\n@@*/\n\n      subroutine WaveToy2DF77_Coord(CCTK_ARGUMENTS)\n\n      implicit none\n\n      DECLARE_CCTK_ARGUMENTS\n      DECLARE_CCTK_FUNCTIONS\n\n      INTEGER   i,j,ierr\n      CCTK_REAL xmin,xmax,x_origin,lowerx,upperx\n      CCTK_REAL ymin,ymax,y_origin,lowery,uppery\n      CCTK_INT coord_handle\n      INTEGER varindex\n\n      xmin=0\n      xmax=1\n\n      ymin=0\n      ymax=1\n\n\nc     Grid spacing on coarsest grid \n      cctk_delta_space(1) = (xmax - xmin) / max(cctk_gsh(1) - 1, 1)\n      cctk_delta_space(2) = (ymax - ymin) / max(cctk_gsh(2) - 1, 1)\n\n      x_origin = xmin\n      y_origin = ymin\n\n      do j=1,cctk_lsh(2)\n        do i=1,cctk_lsh(1)\n          x(i,j) = cctk_delta_space(1)*(i-1+cctk_lbnd(1)) + x_origin\n          y(i,j) = cctk_delta_space(2)*(j-1+cctk_lbnd(2)) + y_origin\n        end do\n      end do\n  \n      lowerx = x_origin\n      upperx = x_origin+cctk_delta_space(1)*(cctk_gsh(1)-1)\n\nc      call CCTK_INFO(\"Getting Coord Handle\")\n\n      coord_handle = Coord_CoordHandle(cctkGH, \"x\", \"cart2d\")\n      if (coord_handle .lt. 0) then\n         call CCTK_WARN(0, \"Error retrieving coordinate handle for x of cart2d\")\n      endif\n\nc      call CCTK_INFO(\"Getting Variable Index\")\n\n      call CCTK_VarIndex(varindex, \"wavetoy2df77::x\")\n\nc      call CCTK_INFO(\"Setting Physical Minimum\")\n\n      call Util_TableSetReal   (ierr,coord_handle, lowerx, \"PHYSICALMIN\")\n\nc      call CCTK_INFO(\"Setting Computational Minimum\")\n\n      call Util_TableSetReal   (ierr,coord_handle, lowerx, \"COMPMIN\")\n\nc      call CCTK_INFO(\"Setting Physical Maximum\")\n\n      call Util_TableSetReal   (ierr,coord_handle, upperx, \"PHYSICALMAX\")\n\nc      call CCTK_INFO(\"Setting Computational Maximum\")\n\n      call Util_TableSetReal   (ierr,coord_handle, upperx, \"COMPMAX\")\n\nc      call CCTK_INFO(\"Setting Coordinate Type\")\n\n      call Util_TableSetString (ierr,coord_handle, \"uniform\", \"TYPE\")\n\nc      call CCTK_INFO(\"Setting Time dependency\")\n\n      call Util_TableSetString (ierr,coord_handle, \"no\", \"TIMEDEPENDENT\")\n\nc      call CCTK_INFO(\"Setting datatype\")\n\n      call Util_TableSetString (ierr,coord_handle, \"CCTK_REAL\", \"DATATYPE\")\n\nc      call CCTK_INFO(\"Setting index\")\n\n      call Util_TableSetInt    (ierr,coord_handle, varindex, \"GAINDEX\")\n\nc      call CCTK_INFO(\"Setting delta\")\n\n      call Util_TableSetReal   (ierr,coord_handle, cctk_delta_space(1), \"DELTA\")\n\nc      call CCTK_INFO(\"Finished Setting up Coordinates\")\n\n      lowery = y_origin\n      uppery = y_origin+cctk_delta_space(2)*(cctk_gsh(2)-1)\n\nc      call CCTK_INFO(\"Getting Coord Handle\")\n\n      coord_handle = Coord_CoordHandle(cctkGH, \"y\", \"cart2d\")\n      if (coord_handle .lt. 0) then\n         call CCTK_WARN(0, \"Error retrieving coordinate handle for y of cart2d\")\n      endif\n\nc      call CCTK_INFO(\"Getting Variable Index\")\n\n      call CCTK_VarIndex(varindex, \"wavetoy2df77::y\")\n\nc      call CCTK_INFO(\"Setting Physical Minimum\")\n\n      call Util_TableSetReal   (ierr,coord_handle, lowery, \"PHYSICALMIN\")\n\nc      call CCTK_INFO(\"Setting Computational Minimum\")\n\n      call Util_TableSetReal   (ierr,coord_handle, lowery, \"COMPMIN\")\n\nc      call CCTK_INFO(\"Setting Physical Maximum\")\n\n      call Util_TableSetReal   (ierr,coord_handle, uppery, \"PHYSICALMAX\")\n\nc      call CCTK_INFO(\"Setting Computational Maximum\")\n\n      call Util_TableSetReal   (ierr,coord_handle, uppery, \"COMPMAX\")\n\nc      call CCTK_INFO(\"Setting Coordinate Type\")\n\n      call Util_TableSetString (ierr,coord_handle, \"uniform\", \"TYPE\")\n\nc      call CCTK_INFO(\"Setting Time dependency\")\n\n      call Util_TableSetString (ierr,coord_handle, \"no\", \"TIMEDEPENDENT\")\n\nc      call CCTK_INFO(\"Setting datatype\")\n\n      call Util_TableSetString (ierr,coord_handle, \"CCTK_REAL\", \"DATATYPE\")\n\nc      call CCTK_INFO(\"Setting index\")\n\n      call Util_TableSetInt    (ierr,coord_handle, varindex, \"GAINDEX\")\n\nc      call CCTK_INFO(\"Setting delta\")\n\n      call Util_TableSetReal   (ierr,coord_handle, cctk_delta_space(2), \"DELTA\")\n\nc      call CCTK_INFO(\"Finished Setting up Coordinates\")\n\n      return\n      end \n\n\n",
    "Boundary.F77": "#include \"cctk.h\"\n#include \"cctk_Arguments.h\"\n#include \"cctk_Functions.h\"\n#include \"cctk_Parameters.h\"\n\n      subroutine WaveToy2DF77_Boundary(CCTK_ARGUMENTS)\n\n      implicit none\n\n      DECLARE_CCTK_ARGUMENTS\n      DECLARE_CCTK_PARAMETERS\n      DECLARE_CCTK_FUNCTIONS\n\n      integer ierr\n      integer sw(2)\n      CCTK_REAL zero\n      \n      sw(1) = 1\n      sw(2) = 1\n\n      zero = 0.0d0 \n\n      if (CCTK_EQUALS(bound,\"zero\")) then\n        call BndScalarVN(ierr,cctkGH, sw, zero,\"wavetoy2df77::phi\")\n      end if\n\n      return\n      end\n"
  },
  "test": {
    "test_WaveToy2D.par": "\n!DESC \"2D Scalar Wave Equation\"\n\nActiveThorns = \"boundary coordbase symbase ioutil iobasic ioascii pugh pughreduce pughslab time wavetoy2df77 localreduce\"\n\ndriver::global_nx         = 101\ndriver::global_ny         = 101\n\ncactus::cctk_itlast        = 10\n\nwavetoy2d::sigma          = 0.05\nwavetoy2d::bound          = \"zero\"\n\ntime::dtfac               = 0.7\n\nio::out_dir                = \"test_WaveToy2D\"\nio::out_fileinfo          = \"none\"\n \nioascii::out1D_every      = 5\nioascii::out1D_xline_y    = 0.5\nioascii::out1D_yline_x    = 0.5\nioascii::out1D_vars       = \"wavetoy2df77::phi\"\n\nIOBasic::outScalar_reductions = \"norm1 norm2 minimum maximum norm_inf\"\niobasic::outinfo_every    = 2\niobasic::outinfo_vars     = \"wavetoy2df77::phi\"\n\niobasic::outScalar_every  = 1\niobasic::outScalar_vars   = \"wavetoy2df77::phi\"\n\n# do not use the new scheme for names of output files\nIO::new_filename_scheme = \"no\"\n",
    "test_WaveToy2D/phi_norm_inf.tl": "\"phi v time\n0.0000000000000\t1.0000000000000\n0.0070000000000\t1.4615736503693\n0.0140000000000\t1.8136599289301\n0.0210000000000\t2.0397147250398\n0.0280000000000\t2.1403110445651\n0.0350000000000\t2.1307586969290\n0.0420000000000\t2.0362738402880\n0.0490000000000\t1.8861563124597\n0.0560000000000\t1.7084396353357\n0.0630000000000\t1.5480949775692\n0.0700000000000\t1.4368372851333\n",
    "test_WaveToy2D/phi_max.tl": "\"phi v time\n0.0000000000000\t1.0000000000000\n0.0070000000000\t1.4615736503693\n0.0140000000000\t1.8136599289301\n0.0210000000000\t2.0397147250398\n0.0280000000000\t2.1403110445651\n0.0350000000000\t2.1307586969290\n0.0420000000000\t2.0362738402880\n0.0490000000000\t1.8861563124597\n0.0560000000000\t1.7084396353357\n0.0630000000000\t1.5480949775692\n0.0700000000000\t1.4368372851333\n",
    "test_WaveToy2D/phi.xl": "\n\n\"Time = 0.0000000000000\n0.0000000000000\t\t0.0000000000000\n0.0100000000000\t\t0.0000000000000\n0.0200000000000\t\t0.0000000000000\n0.0300000000000\t\t0.0000000000000\n0.0400000000000\t\t0.0000000000000\n0.0500000000000\t\t0.0000000000000\n0.0600000000000\t\t0.0000000000000\n0.0700000000000\t\t0.0000000000000\n0.0800000000000\t\t0.0000000000000\n0.0900000000000\t\t0.0000000000000\n0.1000000000000\t\t0.0000000000000\n0.1100000000000\t\t0.0000000000000\n0.1200000000000\t\t0.0000000000000\n0.1300000000000\t\t0.0000000000000\n0.1400000000000\t\t0.0000000000000\n0.1500000000000\t\t0.0000000000000\n0.1600000000000\t\t0.0000000000000\n0.1700000000000\t\t0.0000000000000\n0.1800000000000\t\t0.0000000000000\n0.1900000000000\t\t0.0000000000000\n0.2000000000000\t\t0.0000000000000\n0.2100000000000\t\t0.0000000000000\n0.2200000000000\t\t0.0000000000000\n0.2300000000000\t\t0.0000000000002\n0.2400000000000\t\t0.0000000000018\n0.2500000000000\t\t0.0000000000139\n0.2600000000000\t\t0.0000000000986\n0.2700000000000\t\t0.0000000006461\n0.2800000000000\t\t0.0000000039089\n0.2900000000000\t\t0.0000000218296\n0.3000000000000\t\t0.0000001125352\n0.3100000000000\t\t0.0000005355348\n0.3200000000000\t\t0.0000023525752\n0.3300000000000\t\t0.0000095401629\n0.3400000000000\t\t0.0000357128496\n0.3500000000000\t\t0.0001234098041\n0.3600000000000\t\t0.0003936690407\n0.3700000000000\t\t0.0011592291739\n0.3800000000000\t\t0.0031511115984\n0.3900000000000\t\t0.0079070540516\n0.4000000000000\t\t0.0183156388887\n0.4100000000000\t\t0.0391638950990\n0.4200000000000\t\t0.0773047404433\n0.4300000000000\t\t0.1408584209210\n0.4400000000000\t\t0.2369277586821\n0.4500000000000\t\t0.3678794411714\n0.4600000000000\t\t0.5272924240430\n0.4700000000000\t\t0.6976763260710\n0.4800000000000\t\t0.8521437889662\n0.4900000000000\t\t0.9607894391523\n0.5000000000000\t\t1.0000000000000\n0.5100000000000\t\t0.9607894391523\n0.5200000000000\t\t0.8521437889662\n0.5300000000000\t\t0.6976763260710\n0.5400000000000\t\t0.5272924240430\n0.5500000000000\t\t0.3678794411714\n0.5600000000000\t\t0.2369277586821\n0.5700000000000\t\t0.1408584209210\n0.5800000000000\t\t0.0773047404433\n0.5900000000000\t\t0.0391638950990\n0.6000000000000\t\t0.0183156388887\n0.6100000000000\t\t0.0079070540516\n0.6200000000000\t\t0.0031511115984\n0.6300000000000\t\t0.0011592291739\n0.6400000000000\t\t0.0003936690407\n0.6500000000000\t\t0.0001234098041\n0.6600000000000\t\t0.0000357128496\n0.6700000000000\t\t0.0000095401629\n0.6800000000000\t\t0.0000023525752\n0.6900000000000\t\t0.0000005355348\n0.7000000000000\t\t0.0000001125352\n0.7100000000000\t\t0.0000000218296\n0.7200000000000\t\t0.0000000039089\n0.7300000000000\t\t0.0000000006461\n0.7400000000000\t\t0.0000000000986\n0.7500000000000\t\t0.0000000000139\n0.7600000000000\t\t0.0000000000018\n0.7700000000000\t\t0.0000000000002\n0.7800000000000\t\t0.0000000000000\n0.7900000000000\t\t0.0000000000000\n0.8000000000000\t\t0.0000000000000\n0.8100000000000\t\t0.0000000000000\n0.8200000000000\t\t0.0000000000000\n0.8300000000000\t\t0.0000000000000\n0.8400000000000\t\t0.0000000000000\n0.8500000000000\t\t0.0000000000000\n0.8600000000000\t\t0.0000000000000\n0.8700000000000\t\t0.0000000000000\n0.8800000000000\t\t0.0000000000000\n0.8900000000000\t\t0.0000000000000\n0.9000000000000\t\t0.0000000000000\n0.9100000000000\t\t0.0000000000000\n0.9200000000000\t\t0.0000000000000\n0.9300000000000\t\t0.0000000000000\n0.9400000000000\t\t0.0000000000000\n0.9500000000000\t\t0.0000000000000\n0.9600000000000\t\t0.0000000000000\n0.9700000000000\t\t0.0000000000000\n0.9800000000000\t\t0.0000000000000\n0.9900000000000\t\t0.0000000000000\n1.0000000000000\t\t0.0000000000000\n\n\n\"Time = 0.0350000000000\n0.0000000000000\t\t0.0000000000000\n0.0100000000000\t\t0.0000000000000\n0.0200000000000\t\t0.0000000000000\n0.0300000000000\t\t0.0000000000000\n0.0400000000000\t\t0.0000000000000\n0.0500000000000\t\t0.0000000000000\n0.0600000000000\t\t0.0000000000000\n0.0700000000000\t\t0.0000000000000\n0.0800000000000\t\t0.0000000000000\n0.0900000000000\t\t0.0000000000000\n0.1000000000000\t\t0.0000000000000\n0.1100000000000\t\t0.0000000000000\n0.1200000000000\t\t0.0000000000000\n0.1300000000000\t\t0.0000000000000\n0.1400000000000\t\t0.0000000000000\n0.1500000000000\t\t0.0000000000000\n0.1600000000000\t\t0.0000000000000\n0.1700000000000\t\t0.0000000000000\n0.1800000000000\t\t0.0000000000000\n0.1900000000000\t\t0.0000000000001\n0.2000000000000\t\t0.0000000000006\n0.2100000000000\t\t0.0000000000049\n0.2200000000000\t\t0.0000000000346\n0.2300000000000\t\t0.0000000002276\n0.2400000000000\t\t0.0000000013856\n0.2500000000000\t\t0.0000000078176\n0.2600000000000\t\t0.0000000408767\n0.2700000000000\t\t0.0000001980864\n0.2800000000000\t\t0.0000008896886\n0.2900000000000\t\t0.0000037038468\n0.3000000000000\t\t0.0000142931984\n0.3100000000000\t\t0.0000511330871\n0.3200000000000\t\t0.0001695949991\n0.3300000000000\t\t0.0005215737113\n0.3400000000000\t\t0.0014875740607\n0.3500000000000\t\t0.0039354263401\n0.3600000000000\t\t0.0096599446988\n0.3700000000000\t\t0.0220082966128\n0.3800000000000\t\t0.0465629441834\n0.3900000000000\t\t0.0915424688111\n0.4000000000000\t\t0.1673848650192\n0.4100000000000\t\t0.2849921738430\n0.4200000000000\t\t0.4525346171745\n0.4300000000000\t\t0.6715259142493\n0.4400000000000\t\t0.9337060923439\n0.4500000000000\t\t1.2204576865152\n0.4600000000000\t\t1.5055937716277\n0.4700000000000\t\t1.7606807592842\n0.4800000000000\t\t1.9606511488523\n0.4900000000000\t\t2.0874257841714\n0.5000000000000\t\t2.1307586969290\n0.5100000000000\t\t2.0874257841714\n0.5200000000000\t\t1.9606511488523\n0.5300000000000\t\t1.7606807592842\n0.5400000000000\t\t1.5055937716277\n0.5500000000000\t\t1.2204576865152\n0.5600000000000\t\t0.9337060923439\n0.5700000000000\t\t0.6715259142493\n0.5800000000000\t\t0.4525346171745\n0.5900000000000\t\t0.2849921738430\n0.6000000000000\t\t0.1673848650192\n0.6100000000000\t\t0.0915424688111\n0.6200000000000\t\t0.0465629441834\n0.6300000000000\t\t0.0220082966128\n0.6400000000000\t\t0.0096599446988\n0.6500000000000\t\t0.0039354263401\n0.6600000000000\t\t0.0014875740607\n0.6700000000000\t\t0.0005215737113\n0.6800000000000\t\t0.0001695949991\n0.6900000000000\t\t0.0000511330871\n0.7000000000000\t\t0.0000142931984\n0.7100000000000\t\t0.0000037038468\n0.7200000000000\t\t0.0000008896886\n0.7300000000000\t\t0.0000001980864\n0.7400000000000\t\t0.0000000408767\n0.7500000000000\t\t0.0000000078176\n0.7600000000000\t\t0.0000000013856\n0.7700000000000\t\t0.0000000002276\n0.7800000000000\t\t0.0000000000346\n0.7900000000000\t\t0.0000000000049\n0.8000000000000\t\t0.0000000000006\n0.8100000000000\t\t0.0000000000001\n0.8200000000000\t\t0.0000000000000\n0.8300000000000\t\t0.0000000000000\n0.8400000000000\t\t0.0000000000000\n0.8500000000000\t\t0.0000000000000\n0.8600000000000\t\t0.0000000000000\n0.8700000000000\t\t0.0000000000000\n0.8800000000000\t\t0.0000000000000\n0.8900000000000\t\t0.0000000000000\n0.9000000000000\t\t0.0000000000000\n0.9100000000000\t\t0.0000000000000\n0.9200000000000\t\t0.0000000000000\n0.9300000000000\t\t0.0000000000000\n0.9400000000000\t\t0.0000000000000\n0.9500000000000\t\t0.0000000000000\n0.9600000000000\t\t0.0000000000000\n0.9700000000000\t\t0.0000000000000\n0.9800000000000\t\t0.0000000000000\n0.9900000000000\t\t0.0000000000000\n1.0000000000000\t\t0.0000000000000\n\n\n\"Time = 0.0700000000000\n0.0000000000000\t\t0.0000000000000\n0.0100000000000\t\t0.0000000000000\n0.0200000000000\t\t0.0000000000000\n0.0300000000000\t\t0.0000000000000\n0.0400000000000\t\t0.0000000000000\n0.0500000000000\t\t0.0000000000000\n0.0600000000000\t\t0.0000000000000\n0.0700000000000\t\t0.0000000000000\n0.0800000000000\t\t0.0000000000000\n0.0900000000000\t\t0.0000000000000\n0.1000000000000\t\t0.0000000000000\n0.1100000000000\t\t0.0000000000000\n0.1200000000000\t\t0.0000000000000\n0.1300000000000\t\t0.0000000000000\n0.1400000000000\t\t0.0000000000000\n0.1500000000000\t\t0.0000000000000\n0.1600000000000\t\t0.0000000000004\n0.1700000000000\t\t0.0000000000028\n0.1800000000000\t\t0.0000000000196\n0.1900000000000\t\t0.0000000001271\n0.2000000000000\t\t0.0000000007675\n0.2100000000000\t\t0.0000000043054\n0.2200000000000\t\t0.0000000224407\n0.2300000000000\t\t0.0000001086814\n0.2400000000000\t\t0.0000004890764\n0.2500000000000\t\t0.0000020450275\n0.2600000000000\t\t0.0000079454206\n0.2700000000000\t\t0.0000286827736\n0.2800000000000\t\t0.0000962058793\n0.2900000000000\t\t0.0002998116821\n0.3000000000000\t\t0.0008680714731\n0.3100000000000\t\t0.0023351930488\n0.3200000000000\t\t0.0058366335231\n0.3300000000000\t\t0.0135551467910\n0.3400000000000\t\t0.0292552827488\n0.3500000000000\t\t0.0586889527002\n0.3600000000000\t\t0.1094730131414\n0.3700000000000\t\t0.1899665138720\n0.3800000000000\t\t0.3068949402555\n0.3900000000000\t\t0.4620735940284\n0.4000000000000\t\t0.6493889845895\n0.4100000000000\t\t0.8537041582572\n0.4200000000000\t\t1.0530015821520\n0.4300000000000\t\t1.2237313239817\n0.4400000000000\t\t1.3476003268538\n0.4500000000000\t\t1.4170121474332\n0.4600000000000\t\t1.4368372851333\n0.4700000000000\t\t1.4219606547889\n0.4800000000000\t\t1.3919887550257\n0.4900000000000\t\t1.3654096792130\n0.5000000000000\t\t1.3550369564277\n0.5100000000000\t\t1.3654096792130\n0.5200000000000\t\t1.3919887550257\n0.5300000000000\t\t1.4219606547889\n0.5400000000000\t\t1.4368372851333\n0.5500000000000\t\t1.4170121474332\n0.5600000000000\t\t1.3476003268538\n0.5700000000000\t\t1.2237313239817\n0.5800000000000\t\t1.0530015821520\n0.5900000000000\t\t0.8537041582572\n0.6000000000000\t\t0.6493889845895\n0.6100000000000\t\t0.4620735940284\n0.6200000000000\t\t0.3068949402555\n0.6300000000000\t\t0.1899665138720\n0.6400000000000\t\t0.1094730131414\n0.6500000000000\t\t0.0586889527002\n0.6600000000000\t\t0.0292552827488\n0.6700000000000\t\t0.0135551467910\n0.6800000000000\t\t0.0058366335231\n0.6900000000000\t\t0.0023351930488\n0.7000000000000\t\t0.0008680714731\n0.7100000000000\t\t0.0002998116821\n0.7200000000000\t\t0.0000962058793\n0.7300000000000\t\t0.0000286827736\n0.7400000000000\t\t0.0000079454206\n0.7500000000000\t\t0.0000020450275\n0.7600000000000\t\t0.0000004890764\n0.7700000000000\t\t0.0000001086814\n0.7800000000000\t\t0.0000000224407\n0.7900000000000\t\t0.0000000043054\n0.8000000000000\t\t0.0000000007675\n0.8100000000000\t\t0.0000000001271\n0.8200000000000\t\t0.0000000000196\n0.8300000000000\t\t0.0000000000028\n0.8400000000000\t\t0.0000000000004\n0.8500000000000\t\t0.0000000000000\n0.8600000000000\t\t0.0000000000000\n0.8700000000000\t\t0.0000000000000\n0.8800000000000\t\t0.0000000000000\n0.8900000000000\t\t0.0000000000000\n0.9000000000000\t\t0.0000000000000\n0.9100000000000\t\t0.0000000000000\n0.9200000000000\t\t0.0000000000000\n0.9300000000000\t\t0.0000000000000\n0.9400000000000\t\t0.0000000000000\n0.9500000000000\t\t0.0000000000000\n0.9600000000000\t\t0.0000000000000\n0.9700000000000\t\t0.0000000000000\n0.9800000000000\t\t0.0000000000000\n0.9900000000000\t\t0.0000000000000\n1.0000000000000\t\t0.0000000000000\n",
    "test_WaveToy2D/phi_nm2.tl": "\"phi v time\n0.0000000000000\t0.0620452543225\n0.0070000000000\t0.0918716090244\n0.0140000000000\t0.1183042753545\n0.0210000000000\t0.1408231147946\n0.0280000000000\t0.1593839035305\n0.0350000000000\t0.1743286550724\n0.0420000000000\t0.1862373022256\n0.0490000000000\t0.1957679049767\n0.0560000000000\t0.2035298604474\n0.0630000000000\t0.2100137747372\n0.0700000000000\t0.2155758804782\n",
    "test_WaveToy2D/phi_nm1.tl": "\"phi v time\n0.0000000000000\t0.0076992271679\n0.0070000000000\t0.0115488407518\n0.0140000000000\t0.0153984543358\n0.0210000000000\t0.0192480679197\n0.0280000000000\t0.0230976815037\n0.0350000000000\t0.0269472950876\n0.0420000000000\t0.0307969086716\n0.0490000000000\t0.0346465222555\n0.0560000000000\t0.0384961358395\n0.0630000000000\t0.0423457494234\n0.0700000000000\t0.0461953630074\n",
    "test_WaveToy2D/phi.yl": "\n\n\"Time = 0.0000000000000\n0.0000000000000\t\t0.0000000000000\n0.0100000000000\t\t0.0000000000000\n0.0200000000000\t\t0.0000000000000\n0.0300000000000\t\t0.0000000000000\n0.0400000000000\t\t0.0000000000000\n0.0500000000000\t\t0.0000000000000\n0.0600000000000\t\t0.0000000000000\n0.0700000000000\t\t0.0000000000000\n0.0800000000000\t\t0.0000000000000\n0.0900000000000\t\t0.0000000000000\n0.1000000000000\t\t0.0000000000000\n0.1100000000000\t\t0.0000000000000\n0.1200000000000\t\t0.0000000000000\n0.1300000000000\t\t0.0000000000000\n0.1400000000000\t\t0.0000000000000\n0.1500000000000\t\t0.0000000000000\n0.1600000000000\t\t0.0000000000000\n0.1700000000000\t\t0.0000000000000\n0.1800000000000\t\t0.0000000000000\n0.1900000000000\t\t0.0000000000000\n0.2000000000000\t\t0.0000000000000\n0.2100000000000\t\t0.0000000000000\n0.2200000000000\t\t0.0000000000000\n0.2300000000000\t\t0.0000000000002\n0.2400000000000\t\t0.0000000000018\n0.2500000000000\t\t0.0000000000139\n0.2600000000000\t\t0.0000000000986\n0.2700000000000\t\t0.0000000006461\n0.2800000000000\t\t0.0000000039089\n0.2900000000000\t\t0.0000000218296\n0.3000000000000\t\t0.0000001125352\n0.3100000000000\t\t0.0000005355348\n0.3200000000000\t\t0.0000023525752\n0.3300000000000\t\t0.0000095401629\n0.3400000000000\t\t0.0000357128496\n0.3500000000000\t\t0.0001234098041\n0.3600000000000\t\t0.0003936690407\n0.3700000000000\t\t0.0011592291739\n0.3800000000000\t\t0.0031511115984\n0.3900000000000\t\t0.0079070540516\n0.4000000000000\t\t0.0183156388887\n0.4100000000000\t\t0.0391638950990\n0.4200000000000\t\t0.0773047404433\n0.4300000000000\t\t0.1408584209210\n0.4400000000000\t\t0.2369277586821\n0.4500000000000\t\t0.3678794411714\n0.4600000000000\t\t0.5272924240430\n0.4700000000000\t\t0.6976763260710\n0.4800000000000\t\t0.8521437889662\n0.4900000000000\t\t0.9607894391523\n0.5000000000000\t\t1.0000000000000\n0.5100000000000\t\t0.9607894391523\n0.5200000000000\t\t0.8521437889662\n0.5300000000000\t\t0.6976763260710\n0.5400000000000\t\t0.5272924240430\n0.5500000000000\t\t0.3678794411714\n0.5600000000000\t\t0.2369277586821\n0.5700000000000\t\t0.1408584209210\n0.5800000000000\t\t0.0773047404433\n0.5900000000000\t\t0.0391638950990\n0.6000000000000\t\t0.0183156388887\n0.6100000000000\t\t0.0079070540516\n0.6200000000000\t\t0.0031511115984\n0.6300000000000\t\t0.0011592291739\n0.6400000000000\t\t0.0003936690407\n0.6500000000000\t\t0.0001234098041\n0.6600000000000\t\t0.0000357128496\n0.6700000000000\t\t0.0000095401629\n0.6800000000000\t\t0.0000023525752\n0.6900000000000\t\t0.0000005355348\n0.7000000000000\t\t0.0000001125352\n0.7100000000000\t\t0.0000000218296\n0.7200000000000\t\t0.0000000039089\n0.7300000000000\t\t0.0000000006461\n0.7400000000000\t\t0.0000000000986\n0.7500000000000\t\t0.0000000000139\n0.7600000000000\t\t0.0000000000018\n0.7700000000000\t\t0.0000000000002\n0.7800000000000\t\t0.0000000000000\n0.7900000000000\t\t0.0000000000000\n0.8000000000000\t\t0.0000000000000\n0.8100000000000\t\t0.0000000000000\n0.8200000000000\t\t0.0000000000000\n0.8300000000000\t\t0.0000000000000\n0.8400000000000\t\t0.0000000000000\n0.8500000000000\t\t0.0000000000000\n0.8600000000000\t\t0.0000000000000\n0.8700000000000\t\t0.0000000000000\n0.8800000000000\t\t0.0000000000000\n0.8900000000000\t\t0.0000000000000\n0.9000000000000\t\t0.0000000000000\n0.9100000000000\t\t0.0000000000000\n0.9200000000000\t\t0.0000000000000\n0.9300000000000\t\t0.0000000000000\n0.9400000000000\t\t0.0000000000000\n0.9500000000000\t\t0.0000000000000\n0.9600000000000\t\t0.0000000000000\n0.9700000000000\t\t0.0000000000000\n0.9800000000000\t\t0.0000000000000\n0.9900000000000\t\t0.0000000000000\n1.0000000000000\t\t0.0000000000000\n\n\n\"Time = 0.0350000000000\n0.0000000000000\t\t0.0000000000000\n0.0100000000000\t\t0.0000000000000\n0.0200000000000\t\t0.0000000000000\n0.0300000000000\t\t0.0000000000000\n0.0400000000000\t\t0.0000000000000\n0.0500000000000\t\t0.0000000000000\n0.0600000000000\t\t0.0000000000000\n0.0700000000000\t\t0.0000000000000\n0.0800000000000\t\t0.0000000000000\n0.0900000000000\t\t0.0000000000000\n0.1000000000000\t\t0.0000000000000\n0.1100000000000\t\t0.0000000000000\n0.1200000000000\t\t0.0000000000000\n0.1300000000000\t\t0.0000000000000\n0.1400000000000\t\t0.0000000000000\n0.1500000000000\t\t0.0000000000000\n0.1600000000000\t\t0.0000000000000\n0.1700000000000\t\t0.0000000000000\n0.1800000000000\t\t0.0000000000000\n0.1900000000000\t\t0.0000000000001\n0.2000000000000\t\t0.0000000000006\n0.2100000000000\t\t0.0000000000049\n0.2200000000000\t\t0.0000000000346\n0.2300000000000\t\t0.0000000002276\n0.2400000000000\t\t0.0000000013856\n0.2500000000000\t\t0.0000000078176\n0.2600000000000\t\t0.0000000408767\n0.2700000000000\t\t0.0000001980864\n0.2800000000000\t\t0.0000008896886\n0.2900000000000\t\t0.0000037038468\n0.3000000000000\t\t0.0000142931984\n0.3100000000000\t\t0.0000511330871\n0.3200000000000\t\t0.0001695949991\n0.3300000000000\t\t0.0005215737113\n0.3400000000000\t\t0.0014875740607\n0.3500000000000\t\t0.0039354263401\n0.3600000000000\t\t0.0096599446988\n0.3700000000000\t\t0.0220082966128\n0.3800000000000\t\t0.0465629441834\n0.3900000000000\t\t0.0915424688111\n0.4000000000000\t\t0.1673848650192\n0.4100000000000\t\t0.2849921738430\n0.4200000000000\t\t0.4525346171745\n0.4300000000000\t\t0.6715259142493\n0.4400000000000\t\t0.9337060923439\n0.4500000000000\t\t1.2204576865152\n0.4600000000000\t\t1.5055937716277\n0.4700000000000\t\t1.7606807592842\n0.4800000000000\t\t1.9606511488523\n0.4900000000000\t\t2.0874257841714\n0.5000000000000\t\t2.1307586969290\n0.5100000000000\t\t2.0874257841714\n0.5200000000000\t\t1.9606511488523\n0.5300000000000\t\t1.7606807592842\n0.5400000000000\t\t1.5055937716277\n0.5500000000000\t\t1.2204576865152\n0.5600000000000\t\t0.9337060923439\n0.5700000000000\t\t0.6715259142493\n0.5800000000000\t\t0.4525346171745\n0.5900000000000\t\t0.2849921738430\n0.6000000000000\t\t0.1673848650192\n0.6100000000000\t\t0.0915424688111\n0.6200000000000\t\t0.0465629441834\n0.6300000000000\t\t0.0220082966128\n0.6400000000000\t\t0.0096599446988\n0.6500000000000\t\t0.0039354263401\n0.6600000000000\t\t0.0014875740607\n0.6700000000000\t\t0.0005215737113\n0.6800000000000\t\t0.0001695949991\n0.6900000000000\t\t0.0000511330871\n0.7000000000000\t\t0.0000142931984\n0.7100000000000\t\t0.0000037038468\n0.7200000000000\t\t0.0000008896886\n0.7300000000000\t\t0.0000001980864\n0.7400000000000\t\t0.0000000408767\n0.7500000000000\t\t0.0000000078176\n0.7600000000000\t\t0.0000000013856\n0.7700000000000\t\t0.0000000002276\n0.7800000000000\t\t0.0000000000346\n0.7900000000000\t\t0.0000000000049\n0.8000000000000\t\t0.0000000000006\n0.8100000000000\t\t0.0000000000001\n0.8200000000000\t\t0.0000000000000\n0.8300000000000\t\t0.0000000000000\n0.8400000000000\t\t0.0000000000000\n0.8500000000000\t\t0.0000000000000\n0.8600000000000\t\t0.0000000000000\n0.8700000000000\t\t0.0000000000000\n0.8800000000000\t\t0.0000000000000\n0.8900000000000\t\t0.0000000000000\n0.9000000000000\t\t0.0000000000000\n0.9100000000000\t\t0.0000000000000\n0.9200000000000\t\t0.0000000000000\n0.9300000000000\t\t0.0000000000000\n0.9400000000000\t\t0.0000000000000\n0.9500000000000\t\t0.0000000000000\n0.9600000000000\t\t0.0000000000000\n0.9700000000000\t\t0.0000000000000\n0.9800000000000\t\t0.0000000000000\n0.9900000000000\t\t0.0000000000000\n1.0000000000000\t\t0.0000000000000\n\n\n\"Time = 0.0700000000000\n0.0000000000000\t\t0.0000000000000\n0.0100000000000\t\t0.0000000000000\n0.0200000000000\t\t0.0000000000000\n0.0300000000000\t\t0.0000000000000\n0.0400000000000\t\t0.0000000000000\n0.0500000000000\t\t0.0000000000000\n0.0600000000000\t\t0.0000000000000\n0.0700000000000\t\t0.0000000000000\n0.0800000000000\t\t0.0000000000000\n0.0900000000000\t\t0.0000000000000\n0.1000000000000\t\t0.0000000000000\n0.1100000000000\t\t0.0000000000000\n0.1200000000000\t\t0.0000000000000\n0.1300000000000\t\t0.0000000000000\n0.1400000000000\t\t0.0000000000000\n0.1500000000000\t\t0.0000000000000\n0.1600000000000\t\t0.0000000000004\n0.1700000000000\t\t0.0000000000028\n0.1800000000000\t\t0.0000000000196\n0.1900000000000\t\t0.0000000001271\n0.2000000000000\t\t0.0000000007675\n0.2100000000000\t\t0.0000000043054\n0.2200000000000\t\t0.0000000224407\n0.2300000000000\t\t0.0000001086814\n0.2400000000000\t\t0.0000004890764\n0.2500000000000\t\t0.0000020450275\n0.2600000000000\t\t0.0000079454206\n0.2700000000000\t\t0.0000286827736\n0.2800000000000\t\t0.0000962058793\n0.2900000000000\t\t0.0002998116821\n0.3000000000000\t\t0.0008680714731\n0.3100000000000\t\t0.0023351930488\n0.3200000000000\t\t0.0058366335231\n0.3300000000000\t\t0.0135551467910\n0.3400000000000\t\t0.0292552827488\n0.3500000000000\t\t0.0586889527002\n0.3600000000000\t\t0.1094730131414\n0.3700000000000\t\t0.1899665138720\n0.3800000000000\t\t0.3068949402555\n0.3900000000000\t\t0.4620735940284\n0.4000000000000\t\t0.6493889845895\n0.4100000000000\t\t0.8537041582572\n0.4200000000000\t\t1.0530015821520\n0.4300000000000\t\t1.2237313239817\n0.4400000000000\t\t1.3476003268538\n0.4500000000000\t\t1.4170121474332\n0.4600000000000\t\t1.4368372851333\n0.4700000000000\t\t1.4219606547889\n0.4800000000000\t\t1.3919887550257\n0.4900000000000\t\t1.3654096792130\n0.5000000000000\t\t1.3550369564277\n0.5100000000000\t\t1.3654096792130\n0.5200000000000\t\t1.3919887550257\n0.5300000000000\t\t1.4219606547889\n0.5400000000000\t\t1.4368372851333\n0.5500000000000\t\t1.4170121474332\n0.5600000000000\t\t1.3476003268538\n0.5700000000000\t\t1.2237313239817\n0.5800000000000\t\t1.0530015821520\n0.5900000000000\t\t0.8537041582572\n0.6000000000000\t\t0.6493889845895\n0.6100000000000\t\t0.4620735940284\n0.6200000000000\t\t0.3068949402555\n0.6300000000000\t\t0.1899665138720\n0.6400000000000\t\t0.1094730131414\n0.6500000000000\t\t0.0586889527002\n0.6600000000000\t\t0.0292552827488\n0.6700000000000\t\t0.0135551467910\n0.6800000000000\t\t0.0058366335231\n0.6900000000000\t\t0.0023351930488\n0.7000000000000\t\t0.0008680714731\n0.7100000000000\t\t0.0002998116821\n0.7200000000000\t\t0.0000962058793\n0.7300000000000\t\t0.0000286827736\n0.7400000000000\t\t0.0000079454206\n0.7500000000000\t\t0.0000020450275\n0.7600000000000\t\t0.0000004890764\n0.7700000000000\t\t0.0000001086814\n0.7800000000000\t\t0.0000000224407\n0.7900000000000\t\t0.0000000043054\n0.8000000000000\t\t0.0000000007675\n0.8100000000000\t\t0.0000000001271\n0.8200000000000\t\t0.0000000000196\n0.8300000000000\t\t0.0000000000028\n0.8400000000000\t\t0.0000000000004\n0.8500000000000\t\t0.0000000000000\n0.8600000000000\t\t0.0000000000000\n0.8700000000000\t\t0.0000000000000\n0.8800000000000\t\t0.0000000000000\n0.8900000000000\t\t0.0000000000000\n0.9000000000000\t\t0.0000000000000\n0.9100000000000\t\t0.0000000000000\n0.9200000000000\t\t0.0000000000000\n0.9300000000000\t\t0.0000000000000\n0.9400000000000\t\t0.0000000000000\n0.9500000000000\t\t0.0000000000000\n0.9600000000000\t\t0.0000000000000\n0.9700000000000\t\t0.0000000000000\n0.9800000000000\t\t0.0000000000000\n0.9900000000000\t\t0.0000000000000\n1.0000000000000\t\t0.0000000000000\n",
    "test_WaveToy2D/phi_min.tl": "\"phi v time\n0.0000000000000\t0.0000000000000\n0.0070000000000\t0.0000000000000\n0.0140000000000\t0.0000000000000\n0.0210000000000\t0.0000000000000\n0.0280000000000\t0.0000000000000\n0.0350000000000\t0.0000000000000\n0.0420000000000\t0.0000000000000\n0.0490000000000\t0.0000000000000\n0.0560000000000\t0.0000000000000\n0.0630000000000\t0.0000000000000\n0.0700000000000\t0.0000000000000\n"
  },
  "doc": {
    "documentation.tex": "% *======================================================================*\n%  Cactus Thorn template for ThornGuide documentation\n%  Author: Ian Kelley\n%  Date: Sun Jun 02, 2002\n%  $Header$                                                             \n%\n%  Thorn documentation in the latex file doc/documentation.tex \n%  will be included in ThornGuides built with the Cactus make system.\n%  The scripts employed by the make system automatically include \n%  pages about variables, parameters and scheduling parsed from the \n%  relevent thorn CCL files.\n%  \n%  This template contains guidelines which help to assure that your     \n%  documentation will be correctly added to ThornGuides. More \n%  information is available in the Cactus UsersGuide.\n%                                                    \n%  Guidelines:\n%   - Do not change anything before the line\n%       % BEGIN CACTUS THORNGUIDE\",\n%     except for filling in the title, author, date etc. fields.\n%   - You can define your own macros are OK, but they must appear after\n%     the BEGIN CACTUS THORNGUIDE line, and do not redefine standard \n%     latex commands.\n%   - To avoid name clashes with other thorns, 'labels', 'citations', \n%     'references', and 'image' names should conform to the following \n%     convention:          \n%       ARRANGEMENT_THORN_LABEL\n%     For example, an image wave.eps in the arrangement CactusWave and \n%     thorn WaveToyC should be renamed to CactusWave_WaveToyC_wave.eps\n%   - Graphics should only be included using the graphix package. \n%     More specifically, with the \"includegraphics\" command. Do\n%     not specify any graphic file extensions in your .tex file. This \n%     will allow us (later) to create a PDF version of the ThornGuide\n%     via pdflatex. |\n%   - References should be included with the latex \"bibitem\" command.  \n%   - For the benefit of our Perl scripts, and for future extensions, \n%     please use simple latex.     \n%\n% *======================================================================* \n% \n% Example of including a graphic image:\n%    \\begin{figure}[ht]\n% \t\\begin{center}\n%    \t   \\includegraphics[width=6cm]{MyArrangement_MyThorn_MyFigure}\n% \t\\end{center}\n% \t\\caption{Illustration of this and that}\n% \t\\label{MyArrangement_MyThorn_MyLabel}\n%    \\end{figure}\n%\n% Example of using a label:\n%   \\label{MyArrangement_MyThorn_MyLabel}\n%\n% Example of a citation:\n%    \\cite{MyArrangement_MyThorn_Author99}\n%\n% Example of including a reference\n%   \\bibitem{MyArrangement_MyThorn_Author99}\n%   {J. Author, {\\em The Title of the Book, Journal, or periodical}, 1 (1999), \n%   1--16. {\\tt http://www.nowhere.com/}}\n%\n% *======================================================================* \n\n% If you are using CVS use this line to give version information\n% $Header$\n\n\\documentclass{article}\n\n% Use the Cactus ThornGuide style file\n% (Automatically used from Cactus distribution, if you have a \n%  thorn without the Cactus Flesh download this from the Cactus\n%  homepage at www.cactuscode.org)\n\\usepackage{../../../../doc/latex/cactus}\n\n\\begin{document}\n\n% The author of the documentation\n\\author{} \n\n% The title of the document (not necessarily the name of the Thorn)\n\\title{WaveToy2DF77}\n\n% the date your document was last changed, if your document is in CVS, \n% please us:\n%    \\date{$ $Date$ $}\n\\date{}\n\n\\maketitle\n\n% Do not delete next line\n% START CACTUS THORNGUIDE\n\n% Add all definitions used in this documentation here \n%   \\def\\mydef etc\n\n% Add an abstract for this thorn's documentation\n\\begin{abstract}\n\n\\end{abstract}\n\n% The following sections are suggestive only.\n% Remove them or add your own.\n\n\\section{Introduction}\n\n\\section{Physical System}\n\n\\section{Numerical Implementation}\n\n\\section{Using This Thorn}\n\n\\subsection{Obtaining This Thorn}\n\n\\subsection{Basic Usage}\n\n\\subsection{Special Behaviour}\n\n\\subsection{Interaction With Other Thorns}\n\n\\subsection{Support and Feedback}\n\n\\section{History}\n\n\\subsection{Thorn Source Code}\n\n\\subsection{Thorn Documentation}\n\n\\subsection{Acknowledgements}\n\n\n\\begin{thebibliography}{9}\n\n\\end{thebibliography}\n\n% Do not delete next line\n% END CACTUS THORNGUIDE\n\n\\end{document}\n"
  }
}