einsteintoolkit / CactusExamples_WaveToy1DF77.json
xinshuo's picture
Upload folder using huggingface_hub
10a2580 verified
{
"thorn_name": "CactusExamples/WaveToy1DF77",
"url": "https://bitbucket.org/cactuscode/cactusexamples.git",
"configuration": "# Configuration definition for thorn WaveToy1DF77\n# $Header$\n\nREQUIRES Boundary\n",
"interface": "# Interface definition for thorn WaveToy1DF77\n# $Header$\n\nimplements: wavetoy1d\n\ninherits: boundary\n\nprivate:\n\ncctk_real evolve1d dim=1 type=GF Timelevels=3\n{\n phi\n} \"The evolved scalar field\"\n\ncctk_real initial dim=1 type=GF\n{\n timederiv\n} \"For initial data\"\n\ncctk_real dummy dim=1 type=GF\n{\n phi_temp\n} \"Just for creating initial data\"\n\ncctk_real coords1d dim=1 type=GF\n{\n x\n} \"The 1D x-coordinate\"\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\n",
"param": "# Parameter definitions for thorn WaveToy1DF77\n# $Header$\n\nprivate:\n\n# Initial data\n\nreal amplitude \"Amplitude of initial Gaussian wave\"\n{\n 0:* :: \"\"\n} 1.0\n\nreal center \"x-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 \"none\" :: \"Don't apply any condition\" \n} \"zero\"",
"schedule": "# Schedule definitions for thorn WaveToy1DF77\n# $Header$\n\nSTORAGE: evolve1d[3],coords1d\n\nschedule WaveToy1DF77_Startup at STARTUP\n{\n LANG: Fortran\n} \"Register WaveToy1DF77 banner\"\n\nschedule WaveToy1DF77_RegisterCoords at WRAGH\n{\n LANG: Fortran\n} \"Register WaveToy1DF77 coordinates\"\n\nschedule WaveToy1DF77_Coord as SpatialCoordinates at BASEGRID\n{\n LANG: Fortran\n} \"Set up 1D coordinates\"\n\nschedule WaveToy1DF77_Initial at INITIAL\n{\n STORAGE: initial,dummy\n LANG: Fortran\n} \"Initial data for 1D wave equation\"\n\nschedule WaveToy1DF77_Evolve at EVOL\n{\n LANG: Fortran\n SYNC: evolve1d\n} \"Evolution of 1D wave equation\"\n\nschedule WaveToy1DF77_Boundary at EVOL after WaveToy1DF77_Evolve\n{\n LANG: Fortran\n} \"Apply boundary conditions\"\n\n \n",
"src": {
"make.code.defn": "# Main make.code.defn file for thorn WaveToy1DF77\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 June 13 2000\n @author Gabrielle Allen\n @desc \n Register banner for WaveToy1DF77\n @enddesc \n @version $Header$\n @@*/\n\n#include \"cctk.h\"\n\n integer function WaveToy1DF77_Startup()\n\n implicit none\n \n integer ierr\n\n call CCTK_RegisterBanner(ierr, \n &\t\"WaveToy1DF77: Evolution of a 1D Scalar Field\")\n\n WaveToy1DF77_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 1d 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 WaveToy1DF77_Initial\n @date June 13 2000\n @author Gabrielle Allen\n @desc \n Initial data for the 1d 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 WaveToy1DF77_Initial(CCTK_ARGUMENTS)\n\n implicit none\n\n DECLARE_CCTK_ARGUMENTS\n DECLARE_CCTK_PARAMETERS \n\n INTEGER i,ierr\n CCTK_REAL dx,dt\n CCTK_REAL zero\n integer sw(1)\n\n sw(1) = 1\n zero = 0.0d0\n\n dx = CCTK_DELTA_SPACE(1)\n dt = CCTK_DELTA_TIME\n\nc For now only have zero time derivative\n do i = 1, cctk_lsh(1)\n\ttimederiv(i) = 0.0d0\n end do \n \n do i = 1, cctk_lsh(1)\n phi(i) = amplitude*exp(-(sqrt(x(i)**2)-center)**2/sigma**2)\n end do\n\nc This is horrible, use a temporary grid variable\n phi_temp(1) = 0.0d0\n do i = 2, cctk_lsh(1)-1\n\t phi_temp(i) = dt*timederiv(i) + phi(i) + 0.5d0*dt**2/dx**2*\n &\t (phi(i+1)-2.0d0*phi(i)+phi(i-1))\n end do\n phi_temp(cctk_lsh(1)) = 0.0d0\n\n call CCTK_SyncGroup(ierr,cctkGH,\"wavetoy1df77::dummy\")\n\n do i = 1, cctk_lsh(1)\n phi_p(i) = phi_temp(i)\n end do\n\n return\n end \n\n\n",
"Evolve.F77": " /*@@\n @file Evolve.F77\n @date June 13 2000\n @author Gabrielle Allen\n @desc \n Evolution routines for the 1d wave equation solver\n @enddesc \n @@*/\n \n#include \"cctk.h\" \n#include \"cctk_Arguments.h\"\n\n\n /*@@\n @routine WaveToy1DF77_Evolve\n @date June 13 2000\n @author Gabrielle Allen\n @desc \n Evolution for the 1d wave equation\n @enddesc \n @calls \n @calledby \n @history \n \n @endhistory \n\n@@*/\n\n subroutine WaveToy1DF77_Evolve(CCTK_ARGUMENTS)\n\n implicit none\n\n DECLARE_CCTK_ARGUMENTS\n\n INTEGER i\n integer istart, iend\n CCTK_REAL dt,dx\n CCTK_REAL fac1,fac2\n\n dx = CCTK_DELTA_SPACE(1)\n dt = CCTK_DELTA_TIME\n\n istart = 2\n iend = cctk_lsh(1)-1\n\n fac2 = (dt*dt)/(dx*dx)\n fac1 = 2.0d0*(1.0d0 - fac2)\n\n do i = istart, iend\n phi(i) = fac1*phi_p(i)-phi_p_p(i)+fac2*(phi_p(i+1)+phi_p(i-1))\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 June 13 2000\n @author Gabrielle Allen\n @desc \n Coordinates for the 1d 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 WaveToy1DF77_RegisterCoords\n @date June 13 2000\n @author Gabrielle Allen \n @desc \n Routine registers the coordinates for WaveToy1Df77\n @enddesc \n @calls \n @calledby \n @history \n \n @endhistory \n\n@@*/\n\n SUBROUTINE WaveToy1DF77_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, 1_ik, \"cart1d\");\n\nC call CCTK_CoordRegisterSystem(ierr,1,\"cart1d\")\n\nc call CCTK_INFO(\"Getting System Handle\")\n\n coord_system_handle = Coord_SystemHandle(cctkGH, \"cart1d\")\n\nc call CCTK_INFO(\"Setting Coord Handle\")\n\n ierr = Coord_CoordRegister(cctkGH, coord_system_handle, 1_ik, \"x\")\n\nc call CCTK_INFO(\"Setting Coord Type\")\n\n call Util_TableSetString(ierr, coord_system_handle, \"uniform\", \"TYPE\")\n\nC call CCTK_CoordRegisterData(ierr,1,\"wavetoy1df77::x1d\",\"x\",\"cart1d\")\n\n if (ierr .lt. 0) then\n call CCTK_WARN(1,\"Problem with registering coordinate x\")\n retval = -1\n end if\n\nc call CCTK_INFO(\"Setting Default System\")\n\n ierr = Coord_SetDefaultSystem(cctkGH, \"cart1d\");\n\n return\n end\n\n\n /*@@\n @routine WaveToy1DF77_Coord\n @date June 13 2000\n @author Gabrielle Allen\n @desc \n Coordinates for the 1d wave equation\n @enddesc \n @calls \n @calledby \n @history \n \n @endhistory \n\n@@*/\n\n subroutine WaveToy1DF77_Coord(CCTK_ARGUMENTS)\n\n implicit none\n\n DECLARE_CCTK_ARGUMENTS\n DECLARE_CCTK_FUNCTIONS\n\n INTEGER i,ierr\n CCTK_REAL xmin,xmax,x_origin,lowerx,upperx\n CCTK_INT coord_handle\n INTEGER varindex\n\n xmin=0\n xmax=1\n\nc Grid spacing on coarsest grid \n cctk_delta_space(1) = (xmax - xmin) / max(cctk_gsh(1)- 1, 1)\n x_origin = xmin\n\n do i=1,cctk_lsh(1)\n x(i) = cctk_delta_space(1)*(i-1+cctk_lbnd(1)) + x_origin\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\", \"cart1d\")\n if (coord_handle .lt. 0) then\n call CCTK_WARN(0, \"Error retrieving coordinate handle for x of cart1d\")\n endif\n\nc call CCTK_INFO(\"Getting Variable Index\")\n\n call CCTK_VarIndex(varindex, \"wavetoy1df77::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 return\n end \n\n\n",
"Boundary.F77": " /*@@\n @file Boundary.F77\n @date July 15th 2000\n @author Gabrielle Allen\n @desc \n Apply boundary conditions for 1D Wave Equation\n @enddesc \n @@*/\n\n#include \"cctk.h\"\n#include \"cctk_Arguments.h\"\n#include \"cctk_Functions.h\"\n#include \"cctk_Parameters.h\"\n\n subroutine WaveToy1DF77_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(1)\n CCTK_REAL zero,one\n \n sw(1) = 1\n zero = 0.0d0\n one = 1.0d0\n\n if (CCTK_EQUALS(bound,\"zero\")) then\n call BndScalarVN(ierr,cctkGH, sw, zero, \"wavetoy1df77::phi\")\n else if (CCTK_EQUALS(bound,\"radiative\")) then\n\tcall BndRadiativeVN(ierr,cctkGH,sw,one,one,\"wavetoy1df77::phi\",\n &\t \"wavetoy1df77::phi\")\n else if (CCTK_EQUALS(bound,\"none\")) then\n\tcall CCTK_WARN(9,\"Hopefully applying periodic boundary condition\")\n else \n\tcall CCTK_INFO(\"No boundary condition applied\")\n end if\n\n return\n end\n"
},
"test": {
"wavetoy1df77.par": "\n!DESC \"Test of 1D wave equation with periodic boundaries\"\n\nActiveThorns = \"CoordBase SymBase boundary ioutil iobasic ioascii pughslab pughreduce pugh time wavetoy1df77 localreduce\"\n\ndriver::global_nx = 101\ndriver::periodic=yes\ncactus::cctk_itlast = 50\n\nwavetoy1d::sigma = 0.03\nwavetoy1d::center = 0.25\nwavetoy1d::bound = \"none\"\n\ntime::dtfac = 1.0\n\nio::out_every =5\n\nIOBasic::outScalar_reductions = \"norm1 norm2 minimum maximum norm_inf\"\niobasic::outinfo_vars = \"wavetoy1df77::phi\"\niobasic::outscalar_vars = \"wavetoy1df77::phi\"\nioascii::out1d_vars = \"wavetoy1df77::phi\"\nIO::out_dir = \"wavetoy1df77\"\nIO::out_fileinfo = \"none\"\n\n# do not use the new scheme for names of output files\nIO::new_filename_scheme = \"no\"\n",
"wavetoy1df77/phi_norm_inf.tl": "\"phi v time\n0.0000000000000\t1.0000000000000\n0.0500000000000\t0.5000074726693\n0.1000000000000\t0.5000000000000\n0.1500000000000\t0.5000000000000\n0.2000000000000\t0.5000000000000\n0.2500000000000\t0.5000000000000\n0.3000000000000\t0.5000000000000\n0.3500000000000\t0.5000000000000\n0.4000000000000\t0.5000000000000\n0.4500000000000\t0.5000617049020\n0.5000000000000\t0.9474196584072\n",
"wavetoy1df77/phi_max.tl": "\"phi v time\n0.0000000000000\t1.0000000000000\n0.0500000000000\t0.5000074726693\n0.1000000000000\t0.5000000000000\n0.1500000000000\t0.5000000000000\n0.2000000000000\t0.5000000000000\n0.2500000000000\t0.5000000000000\n0.3000000000000\t0.5000000000000\n0.3500000000000\t0.5000000000000\n0.4000000000000\t0.5000000000000\n0.4500000000000\t0.5000617049020\n0.5000000000000\t0.9474196584072\n",
"wavetoy1df77/phi.xl": "\n\n\"Time = 0.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.0000000000004\n0.1000000000000\t\t0.0000000000139\n0.1100000000000\t\t0.0000000003484\n0.1200000000000\t\t0.0000000069970\n0.1300000000000\t\t0.0000001125352\n0.1400000000000\t\t0.0000014492789\n0.1500000000000\t\t0.0000149453385\n0.1600000000000\t\t0.0001234098041\n0.1700000000000\t\t0.0008159878351\n0.1800000000000\t\t0.0043202394741\n0.1900000000000\t\t0.0183156388887\n0.2000000000000\t\t0.0621765240221\n0.2100000000000\t\t0.1690133154061\n0.2200000000000\t\t0.3678794411714\n0.2300000000000\t\t0.6411803884300\n0.2400000000000\t\t0.8948393168144\n0.2500000000000\t\t1.0000000000000\n0.2600000000000\t\t0.8948393168144\n0.2700000000000\t\t0.6411803884300\n0.2800000000000\t\t0.3678794411714\n0.2900000000000\t\t0.1690133154061\n0.3000000000000\t\t0.0621765240221\n0.3100000000000\t\t0.0183156388887\n0.3200000000000\t\t0.0043202394741\n0.3300000000000\t\t0.0008159878351\n0.3400000000000\t\t0.0001234098041\n0.3500000000000\t\t0.0000149453385\n0.3600000000000\t\t0.0000014492789\n0.3700000000000\t\t0.0000001125352\n0.3800000000000\t\t0.0000000069970\n0.3900000000000\t\t0.0000000003484\n0.4000000000000\t\t0.0000000000139\n0.4100000000000\t\t0.0000000000004\n0.4200000000000\t\t0.0000000000000\n0.4300000000000\t\t0.0000000000000\n0.4400000000000\t\t0.0000000000000\n0.4500000000000\t\t0.0000000000000\n0.4600000000000\t\t0.0000000000000\n0.4700000000000\t\t0.0000000000000\n0.4800000000000\t\t0.0000000000000\n0.4900000000000\t\t0.0000000000000\n0.5000000000000\t\t0.0000000000000\n0.5100000000000\t\t0.0000000000000\n0.5200000000000\t\t0.0000000000000\n0.5300000000000\t\t0.0000000000000\n0.5400000000000\t\t0.0000000000000\n0.5500000000000\t\t0.0000000000000\n0.5600000000000\t\t0.0000000000000\n0.5700000000000\t\t0.0000000000000\n0.5800000000000\t\t0.0000000000000\n0.5900000000000\t\t0.0000000000000\n0.6000000000000\t\t0.0000000000000\n0.6100000000000\t\t0.0000000000000\n0.6200000000000\t\t0.0000000000000\n0.6300000000000\t\t0.0000000000000\n0.6400000000000\t\t0.0000000000000\n0.6500000000000\t\t0.0000000000000\n0.6600000000000\t\t0.0000000000000\n0.6700000000000\t\t0.0000000000000\n0.6800000000000\t\t0.0000000000000\n0.6900000000000\t\t0.0000000000000\n0.7000000000000\t\t0.0000000000000\n0.7100000000000\t\t0.0000000000000\n0.7200000000000\t\t0.0000000000000\n0.7300000000000\t\t0.0000000000000\n0.7400000000000\t\t0.0000000000000\n0.7500000000000\t\t0.0000000000000\n0.7600000000000\t\t0.0000000000000\n0.7700000000000\t\t0.0000000000000\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\n\n\n\"Time = 0.0500000000000\n0.0100000000000\t\t0.0000000000000\n0.0200000000000\t\t0.0000000000000\n0.0300000000000\t\t0.0000000000000\n0.0400000000000\t\t0.0000000000002\n0.0500000000000\t\t0.0000000000069\n0.0600000000000\t\t0.0000000001742\n0.0700000000000\t\t0.0000000034985\n0.0800000000000\t\t0.0000000562676\n0.0900000000000\t\t0.0000007246394\n0.1000000000000\t\t0.0000074726693\n0.1100000000000\t\t0.0000617049020\n0.1200000000000\t\t0.0004079939175\n0.1300000000000\t\t0.0021601197371\n0.1400000000000\t\t0.0091578194446\n0.1500000000000\t\t0.0310882620180\n0.1600000000000\t\t0.0845066578772\n0.1700000000000\t\t0.1839397240842\n0.1800000000000\t\t0.3205902504826\n0.1900000000000\t\t0.4474203830466\n0.2000000000000\t\t0.5000074726693\n0.2100000000000\t\t0.4474813633092\n0.2200000000000\t\t0.3209981881325\n0.2300000000000\t\t0.1860998403228\n0.2400000000000\t\t0.0936644771474\n0.2500000000000\t\t0.0621765240221\n0.2600000000000\t\t0.0936644771474\n0.2700000000000\t\t0.1860998403228\n0.2800000000000\t\t0.3209981881325\n0.2900000000000\t\t0.4474813633092\n0.3000000000000\t\t0.5000074726693\n0.3100000000000\t\t0.4474203830466\n0.3200000000000\t\t0.3205902504826\n0.3300000000000\t\t0.1839397240842\n0.3400000000000\t\t0.0845066578772\n0.3500000000000\t\t0.0310882620180\n0.3600000000000\t\t0.0091578194446\n0.3700000000000\t\t0.0021601197371\n0.3800000000000\t\t0.0004079939175\n0.3900000000000\t\t0.0000617049020\n0.4000000000000\t\t0.0000074726693\n0.4100000000000\t\t0.0000007246394\n0.4200000000000\t\t0.0000000562676\n0.4300000000000\t\t0.0000000034985\n0.4400000000000\t\t0.0000000001742\n0.4500000000000\t\t0.0000000000069\n0.4600000000000\t\t0.0000000000002\n0.4700000000000\t\t0.0000000000000\n0.4800000000000\t\t0.0000000000000\n0.4900000000000\t\t0.0000000000000\n0.5000000000000\t\t0.0000000000000\n0.5100000000000\t\t0.0000000000000\n0.5200000000000\t\t0.0000000000000\n0.5300000000000\t\t0.0000000000000\n0.5400000000000\t\t0.0000000000000\n0.5500000000000\t\t0.0000000000000\n0.5600000000000\t\t0.0000000000000\n0.5700000000000\t\t0.0000000000000\n0.5800000000000\t\t0.0000000000000\n0.5900000000000\t\t0.0000000000000\n0.6000000000000\t\t0.0000000000000\n0.6100000000000\t\t0.0000000000000\n0.6200000000000\t\t0.0000000000000\n0.6300000000000\t\t0.0000000000000\n0.6400000000000\t\t0.0000000000000\n0.6500000000000\t\t0.0000000000000\n0.6600000000000\t\t0.0000000000000\n0.6700000000000\t\t0.0000000000000\n0.6800000000000\t\t0.0000000000000\n0.6900000000000\t\t0.0000000000000\n0.7000000000000\t\t0.0000000000000\n0.7100000000000\t\t0.0000000000000\n0.7200000000000\t\t0.0000000000000\n0.7300000000000\t\t0.0000000000000\n0.7400000000000\t\t0.0000000000000\n0.7500000000000\t\t0.0000000000000\n0.7600000000000\t\t0.0000000000000\n0.7700000000000\t\t0.0000000000000\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\n\n\n\"Time = 0.1000000000000\n0.0100000000000\t\t0.0000000001742\n0.0200000000000\t\t0.0000000034985\n0.0300000000000\t\t0.0000000562676\n0.0400000000000\t\t0.0000007246394\n0.0500000000000\t\t0.0000074726693\n0.0600000000000\t\t0.0000617049020\n0.0700000000000\t\t0.0004079939175\n0.0800000000000\t\t0.0021601197370\n0.0900000000000\t\t0.0091578194444\n0.1000000000000\t\t0.0310882620111\n0.1100000000000\t\t0.0845066577030\n0.1200000000000\t\t0.1839397205857\n0.1300000000000\t\t0.3205901942150\n0.1400000000000\t\t0.4474196584072\n0.1500000000000\t\t0.5000000000000\n0.1600000000000\t\t0.4474196584072\n0.1700000000000\t\t0.3205901942150\n0.1800000000000\t\t0.1839397205857\n0.1900000000000\t\t0.0845066577033\n0.2000000000000\t\t0.0310882620180\n0.2100000000000\t\t0.0091578196185\n0.2200000000000\t\t0.0021601232356\n0.2300000000000\t\t0.0004080501851\n0.2400000000000\t\t0.0000624295415\n0.2500000000000\t\t0.0000149453385\n0.2600000000000\t\t0.0000624295415\n0.2700000000000\t\t0.0004080501851\n0.2800000000000\t\t0.0021601232356\n0.2900000000000\t\t0.0091578196185\n0.3000000000000\t\t0.0310882620180\n0.3100000000000\t\t0.0845066577033\n0.3200000000000\t\t0.1839397205857\n0.3300000000000\t\t0.3205901942150\n0.3400000000000\t\t0.4474196584072\n0.3500000000000\t\t0.5000000000000\n0.3600000000000\t\t0.4474196584072\n0.3700000000000\t\t0.3205901942150\n0.3800000000000\t\t0.1839397205857\n0.3900000000000\t\t0.0845066577030\n0.4000000000000\t\t0.0310882620111\n0.4100000000000\t\t0.0091578194444\n0.4200000000000\t\t0.0021601197370\n0.4300000000000\t\t0.0004079939175\n0.4400000000000\t\t0.0000617049020\n0.4500000000000\t\t0.0000074726693\n0.4600000000000\t\t0.0000007246394\n0.4700000000000\t\t0.0000000562676\n0.4800000000000\t\t0.0000000034985\n0.4900000000000\t\t0.0000000001742\n0.5000000000000\t\t0.0000000000069\n0.5100000000000\t\t0.0000000000002\n0.5200000000000\t\t0.0000000000000\n0.5300000000000\t\t0.0000000000000\n0.5400000000000\t\t0.0000000000000\n0.5500000000000\t\t0.0000000000000\n0.5600000000000\t\t0.0000000000000\n0.5700000000000\t\t0.0000000000000\n0.5800000000000\t\t0.0000000000000\n0.5900000000000\t\t0.0000000000000\n0.6000000000000\t\t0.0000000000000\n0.6100000000000\t\t0.0000000000000\n0.6200000000000\t\t0.0000000000000\n0.6300000000000\t\t0.0000000000000\n0.6400000000000\t\t0.0000000000000\n0.6500000000000\t\t0.0000000000000\n0.6600000000000\t\t0.0000000000000\n0.6700000000000\t\t0.0000000000000\n0.6800000000000\t\t0.0000000000000\n0.6900000000000\t\t0.0000000000000\n0.7000000000000\t\t0.0000000000000\n0.7100000000000\t\t0.0000000000000\n0.7200000000000\t\t0.0000000000000\n0.7300000000000\t\t0.0000000000000\n0.7400000000000\t\t0.0000000000000\n0.7500000000000\t\t0.0000000000000\n0.7600000000000\t\t0.0000000000000\n0.7700000000000\t\t0.0000000000000\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.0000000000002\n0.9900000000000\t\t0.0000000000069\n\n\n\"Time = 0.1500000000000\n0.0100000000000\t\t0.0000617049020\n0.0200000000000\t\t0.0004079939175\n0.0300000000000\t\t0.0021601197370\n0.0400000000000\t\t0.0091578194444\n0.0500000000000\t\t0.0310882620111\n0.0600000000000\t\t0.0845066577030\n0.0700000000000\t\t0.1839397205857\n0.0800000000000\t\t0.3205901942150\n0.0900000000000\t\t0.4474196584072\n0.1000000000000\t\t0.5000000000000\n0.1100000000000\t\t0.4474196584072\n0.1200000000000\t\t0.3205901942150\n0.1300000000000\t\t0.1839397205857\n0.1400000000000\t\t0.0845066577030\n0.1500000000000\t\t0.0310882620111\n0.1600000000000\t\t0.0091578194444\n0.1700000000000\t\t0.0021601197370\n0.1800000000000\t\t0.0004079939175\n0.1900000000000\t\t0.0000617049020\n0.2000000000000\t\t0.0000074726693\n0.2100000000000\t\t0.0000007246394\n0.2200000000000\t\t0.0000000562676\n0.2300000000000\t\t0.0000000034985\n0.2400000000000\t\t0.0000000001744\n0.2500000000000\t\t0.0000000000139\n0.2600000000000\t\t0.0000000001744\n0.2700000000000\t\t0.0000000034985\n0.2800000000000\t\t0.0000000562676\n0.2900000000000\t\t0.0000007246394\n0.3000000000000\t\t0.0000074726693\n0.3100000000000\t\t0.0000617049020\n0.3200000000000\t\t0.0004079939175\n0.3300000000000\t\t0.0021601197370\n0.3400000000000\t\t0.0091578194444\n0.3500000000000\t\t0.0310882620111\n0.3600000000000\t\t0.0845066577030\n0.3700000000000\t\t0.1839397205857\n0.3800000000000\t\t0.3205901942150\n0.3900000000000\t\t0.4474196584072\n0.4000000000000\t\t0.5000000000000\n0.4100000000000\t\t0.4474196584072\n0.4200000000000\t\t0.3205901942150\n0.4300000000000\t\t0.1839397205857\n0.4400000000000\t\t0.0845066577030\n0.4500000000000\t\t0.0310882620111\n0.4600000000000\t\t0.0091578194444\n0.4700000000000\t\t0.0021601197370\n0.4800000000000\t\t0.0004079939175\n0.4900000000000\t\t0.0000617049020\n0.5000000000000\t\t0.0000074726693\n0.5100000000000\t\t0.0000007246394\n0.5200000000000\t\t0.0000000562676\n0.5300000000000\t\t0.0000000034985\n0.5400000000000\t\t0.0000000001742\n0.5500000000000\t\t0.0000000000069\n0.5600000000000\t\t0.0000000000002\n0.5700000000000\t\t0.0000000000000\n0.5800000000000\t\t0.0000000000000\n0.5900000000000\t\t0.0000000000000\n0.6000000000000\t\t0.0000000000000\n0.6100000000000\t\t0.0000000000000\n0.6200000000000\t\t0.0000000000000\n0.6300000000000\t\t0.0000000000000\n0.6400000000000\t\t0.0000000000000\n0.6500000000000\t\t0.0000000000000\n0.6600000000000\t\t0.0000000000000\n0.6700000000000\t\t0.0000000000000\n0.6800000000000\t\t0.0000000000000\n0.6900000000000\t\t0.0000000000000\n0.7000000000000\t\t0.0000000000000\n0.7100000000000\t\t0.0000000000000\n0.7200000000000\t\t0.0000000000000\n0.7300000000000\t\t0.0000000000000\n0.7400000000000\t\t0.0000000000000\n0.7500000000000\t\t0.0000000000000\n0.7600000000000\t\t0.0000000000000\n0.7700000000000\t\t0.0000000000000\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.0000000000002\n0.9400000000000\t\t0.0000000000069\n0.9500000000000\t\t0.0000000001742\n0.9600000000000\t\t0.0000000034985\n0.9700000000000\t\t0.0000000562676\n0.9800000000000\t\t0.0000007246394\n0.9900000000000\t\t0.0000074726693\n\n\n\"Time = 0.2000000000000\n0.0100000000000\t\t0.0845066577030\n0.0200000000000\t\t0.1839397205857\n0.0300000000000\t\t0.3205901942150\n0.0400000000000\t\t0.4474196584072\n0.0500000000000\t\t0.5000000000000\n0.0600000000000\t\t0.4474196584072\n0.0700000000000\t\t0.3205901942150\n0.0800000000000\t\t0.1839397205857\n0.0900000000000\t\t0.0845066577030\n0.1000000000000\t\t0.0310882620111\n0.1100000000000\t\t0.0091578194444\n0.1200000000000\t\t0.0021601197370\n0.1300000000000\t\t0.0004079939175\n0.1400000000000\t\t0.0000617049020\n0.1500000000000\t\t0.0000074726693\n0.1600000000000\t\t0.0000007246394\n0.1700000000000\t\t0.0000000562676\n0.1800000000000\t\t0.0000000034985\n0.1900000000000\t\t0.0000000001742\n0.2000000000000\t\t0.0000000000069\n0.2100000000000\t\t0.0000000000002\n0.2200000000000\t\t0.0000000000000\n0.2300000000000\t\t0.0000000000000\n0.2400000000000\t\t-0.0000000000000\n0.2500000000000\t\t0.0000000000000\n0.2600000000000\t\t-0.0000000000000\n0.2700000000000\t\t0.0000000000000\n0.2800000000000\t\t0.0000000000000\n0.2900000000000\t\t0.0000000000002\n0.3000000000000\t\t0.0000000000069\n0.3100000000000\t\t0.0000000001742\n0.3200000000000\t\t0.0000000034985\n0.3300000000000\t\t0.0000000562676\n0.3400000000000\t\t0.0000007246394\n0.3500000000000\t\t0.0000074726693\n0.3600000000000\t\t0.0000617049020\n0.3700000000000\t\t0.0004079939175\n0.3800000000000\t\t0.0021601197370\n0.3900000000000\t\t0.0091578194444\n0.4000000000000\t\t0.0310882620111\n0.4100000000000\t\t0.0845066577030\n0.4200000000000\t\t0.1839397205857\n0.4300000000000\t\t0.3205901942150\n0.4400000000000\t\t0.4474196584072\n0.4500000000000\t\t0.5000000000000\n0.4600000000000\t\t0.4474196584072\n0.4700000000000\t\t0.3205901942150\n0.4800000000000\t\t0.1839397205857\n0.4900000000000\t\t0.0845066577030\n0.5000000000000\t\t0.0310882620111\n0.5100000000000\t\t0.0091578194444\n0.5200000000000\t\t0.0021601197370\n0.5300000000000\t\t0.0004079939175\n0.5400000000000\t\t0.0000617049020\n0.5500000000000\t\t0.0000074726693\n0.5600000000000\t\t0.0000007246394\n0.5700000000000\t\t0.0000000562676\n0.5800000000000\t\t0.0000000034985\n0.5900000000000\t\t0.0000000001742\n0.6000000000000\t\t0.0000000000069\n0.6100000000000\t\t0.0000000000002\n0.6200000000000\t\t0.0000000000000\n0.6300000000000\t\t0.0000000000000\n0.6400000000000\t\t0.0000000000000\n0.6500000000000\t\t0.0000000000000\n0.6600000000000\t\t0.0000000000000\n0.6700000000000\t\t0.0000000000000\n0.6800000000000\t\t0.0000000000000\n0.6900000000000\t\t0.0000000000000\n0.7000000000000\t\t0.0000000000000\n0.7100000000000\t\t0.0000000000000\n0.7200000000000\t\t0.0000000000000\n0.7300000000000\t\t0.0000000000000\n0.7400000000000\t\t0.0000000000000\n0.7500000000000\t\t0.0000000000000\n0.7600000000000\t\t0.0000000000000\n0.7700000000000\t\t0.0000000000000\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.0000000000002\n0.8900000000000\t\t0.0000000000069\n0.9000000000000\t\t0.0000000001742\n0.9100000000000\t\t0.0000000034985\n0.9200000000000\t\t0.0000000562676\n0.9300000000000\t\t0.0000007246394\n0.9400000000000\t\t0.0000074726693\n0.9500000000000\t\t0.0000617049020\n0.9600000000000\t\t0.0004079939175\n0.9700000000000\t\t0.0021601197370\n0.9800000000000\t\t0.0091578194444\n0.9900000000000\t\t0.0310882620111\n\n\n\"Time = 0.2500000000000\n0.0100000000000\t\t0.4474196584072\n0.0200000000000\t\t0.3205901942150\n0.0300000000000\t\t0.1839397205857\n0.0400000000000\t\t0.0845066577030\n0.0500000000000\t\t0.0310882620111\n0.0600000000000\t\t0.0091578194444\n0.0700000000000\t\t0.0021601197370\n0.0800000000000\t\t0.0004079939175\n0.0900000000000\t\t0.0000617049020\n0.1000000000000\t\t0.0000074726693\n0.1100000000000\t\t0.0000007246394\n0.1200000000000\t\t0.0000000562676\n0.1300000000000\t\t0.0000000034985\n0.1400000000000\t\t0.0000000001742\n0.1500000000000\t\t0.0000000000069\n0.1600000000000\t\t0.0000000000002\n0.1700000000000\t\t0.0000000000000\n0.1800000000000\t\t0.0000000000000\n0.1900000000000\t\t-0.0000000000000\n0.2000000000000\t\t0.0000000000000\n0.2100000000000\t\t-0.0000000000000\n0.2200000000000\t\t0.0000000000000\n0.2300000000000\t\t-0.0000000000000\n0.2400000000000\t\t0.0000000000000\n0.2500000000000\t\t-0.0000000000000\n0.2600000000000\t\t0.0000000000000\n0.2700000000000\t\t-0.0000000000000\n0.2800000000000\t\t0.0000000000000\n0.2900000000000\t\t-0.0000000000000\n0.3000000000000\t\t0.0000000000000\n0.3100000000000\t\t-0.0000000000000\n0.3200000000000\t\t0.0000000000000\n0.3300000000000\t\t0.0000000000000\n0.3400000000000\t\t0.0000000000002\n0.3500000000000\t\t0.0000000000069\n0.3600000000000\t\t0.0000000001742\n0.3700000000000\t\t0.0000000034985\n0.3800000000000\t\t0.0000000562676\n0.3900000000000\t\t0.0000007246394\n0.4000000000000\t\t0.0000074726693\n0.4100000000000\t\t0.0000617049020\n0.4200000000000\t\t0.0004079939175\n0.4300000000000\t\t0.0021601197370\n0.4400000000000\t\t0.0091578194444\n0.4500000000000\t\t0.0310882620111\n0.4600000000000\t\t0.0845066577030\n0.4700000000000\t\t0.1839397205857\n0.4800000000000\t\t0.3205901942150\n0.4900000000000\t\t0.4474196584072\n0.5000000000000\t\t0.5000000000000\n0.5100000000000\t\t0.4474196584072\n0.5200000000000\t\t0.3205901942150\n0.5300000000000\t\t0.1839397205857\n0.5400000000000\t\t0.0845066577030\n0.5500000000000\t\t0.0310882620111\n0.5600000000000\t\t0.0091578194444\n0.5700000000000\t\t0.0021601197370\n0.5800000000000\t\t0.0004079939175\n0.5900000000000\t\t0.0000617049020\n0.6000000000000\t\t0.0000074726693\n0.6100000000000\t\t0.0000007246394\n0.6200000000000\t\t0.0000000562676\n0.6300000000000\t\t0.0000000034985\n0.6400000000000\t\t0.0000000001742\n0.6500000000000\t\t0.0000000000069\n0.6600000000000\t\t0.0000000000002\n0.6700000000000\t\t0.0000000000000\n0.6800000000000\t\t0.0000000000000\n0.6900000000000\t\t0.0000000000000\n0.7000000000000\t\t0.0000000000000\n0.7100000000000\t\t0.0000000000000\n0.7200000000000\t\t0.0000000000000\n0.7300000000000\t\t0.0000000000000\n0.7400000000000\t\t0.0000000000000\n0.7500000000000\t\t0.0000000000000\n0.7600000000000\t\t0.0000000000000\n0.7700000000000\t\t0.0000000000000\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.0000000000002\n0.8400000000000\t\t0.0000000000069\n0.8500000000000\t\t0.0000000001742\n0.8600000000000\t\t0.0000000034985\n0.8700000000000\t\t0.0000000562676\n0.8800000000000\t\t0.0000007246394\n0.8900000000000\t\t0.0000074726693\n0.9000000000000\t\t0.0000617049020\n0.9100000000000\t\t0.0004079939175\n0.9200000000000\t\t0.0021601197370\n0.9300000000000\t\t0.0091578194444\n0.9400000000000\t\t0.0310882620111\n0.9500000000000\t\t0.0845066577030\n0.9600000000000\t\t0.1839397205857\n0.9700000000000\t\t0.3205901942150\n0.9800000000000\t\t0.4474196584072\n0.9900000000000\t\t0.5000000000000\n\n\n\"Time = 0.3000000000000\n0.0100000000000\t\t0.0091578194444\n0.0200000000000\t\t0.0021601197370\n0.0300000000000\t\t0.0004079939175\n0.0400000000000\t\t0.0000617049020\n0.0500000000000\t\t0.0000074726693\n0.0600000000000\t\t0.0000007246394\n0.0700000000000\t\t0.0000000562676\n0.0800000000000\t\t0.0000000034985\n0.0900000000000\t\t0.0000000001742\n0.1000000000000\t\t0.0000000000069\n0.1100000000000\t\t0.0000000000002\n0.1200000000000\t\t0.0000000000000\n0.1300000000000\t\t0.0000000000000\n0.1400000000000\t\t-0.0000000000000\n0.1500000000000\t\t0.0000000000000\n0.1600000000000\t\t-0.0000000000000\n0.1700000000000\t\t0.0000000000000\n0.1800000000000\t\t-0.0000000000000\n0.1900000000000\t\t0.0000000000000\n0.2000000000000\t\t-0.0000000000000\n0.2100000000000\t\t0.0000000000000\n0.2200000000000\t\t-0.0000000000000\n0.2300000000000\t\t0.0000000000000\n0.2400000000000\t\t-0.0000000000000\n0.2500000000000\t\t0.0000000000000\n0.2600000000000\t\t-0.0000000000000\n0.2700000000000\t\t0.0000000000000\n0.2800000000000\t\t-0.0000000000000\n0.2900000000000\t\t0.0000000000000\n0.3000000000000\t\t-0.0000000000000\n0.3100000000000\t\t0.0000000000000\n0.3200000000000\t\t-0.0000000000000\n0.3300000000000\t\t0.0000000000000\n0.3400000000000\t\t-0.0000000000000\n0.3500000000000\t\t0.0000000000000\n0.3600000000000\t\t-0.0000000000000\n0.3700000000000\t\t0.0000000000000\n0.3800000000000\t\t0.0000000000000\n0.3900000000000\t\t0.0000000000002\n0.4000000000000\t\t0.0000000000069\n0.4100000000000\t\t0.0000000001742\n0.4200000000000\t\t0.0000000034985\n0.4300000000000\t\t0.0000000562676\n0.4400000000000\t\t0.0000007246394\n0.4500000000000\t\t0.0000074726693\n0.4600000000000\t\t0.0000617049020\n0.4700000000000\t\t0.0004079939175\n0.4800000000000\t\t0.0021601197370\n0.4900000000000\t\t0.0091578194444\n0.5000000000000\t\t0.0310882620111\n0.5100000000000\t\t0.0845066577030\n0.5200000000000\t\t0.1839397205857\n0.5300000000000\t\t0.3205901942150\n0.5400000000000\t\t0.4474196584072\n0.5500000000000\t\t0.5000000000000\n0.5600000000000\t\t0.4474196584072\n0.5700000000000\t\t0.3205901942150\n0.5800000000000\t\t0.1839397205857\n0.5900000000000\t\t0.0845066577030\n0.6000000000000\t\t0.0310882620111\n0.6100000000000\t\t0.0091578194444\n0.6200000000000\t\t0.0021601197370\n0.6300000000000\t\t0.0004079939175\n0.6400000000000\t\t0.0000617049020\n0.6500000000000\t\t0.0000074726693\n0.6600000000000\t\t0.0000007246394\n0.6700000000000\t\t0.0000000562676\n0.6800000000000\t\t0.0000000034985\n0.6900000000000\t\t0.0000000001742\n0.7000000000000\t\t0.0000000000069\n0.7100000000000\t\t0.0000000000002\n0.7200000000000\t\t0.0000000000000\n0.7300000000000\t\t0.0000000000000\n0.7400000000000\t\t0.0000000000000\n0.7500000000000\t\t0.0000000000000\n0.7600000000000\t\t0.0000000000000\n0.7700000000000\t\t0.0000000000000\n0.7800000000000\t\t0.0000000000002\n0.7900000000000\t\t0.0000000000069\n0.8000000000000\t\t0.0000000001742\n0.8100000000000\t\t0.0000000034985\n0.8200000000000\t\t0.0000000562676\n0.8300000000000\t\t0.0000007246394\n0.8400000000000\t\t0.0000074726693\n0.8500000000000\t\t0.0000617049020\n0.8600000000000\t\t0.0004079939175\n0.8700000000000\t\t0.0021601197370\n0.8800000000000\t\t0.0091578194444\n0.8900000000000\t\t0.0310882620111\n0.9000000000000\t\t0.0845066577030\n0.9100000000000\t\t0.1839397205857\n0.9200000000000\t\t0.3205901942150\n0.9300000000000\t\t0.4474196584072\n0.9400000000000\t\t0.5000000000000\n0.9500000000000\t\t0.4474196584072\n0.9600000000000\t\t0.3205901942150\n0.9700000000000\t\t0.1839397205857\n0.9800000000000\t\t0.0845066577030\n0.9900000000000\t\t0.0310882620111\n\n\n\"Time = 0.3500000000000\n0.0100000000000\t\t0.0000007246394\n0.0200000000000\t\t0.0000000562676\n0.0300000000000\t\t0.0000000034985\n0.0400000000000\t\t0.0000000001742\n0.0500000000000\t\t0.0000000000069\n0.0600000000000\t\t0.0000000000002\n0.0700000000000\t\t0.0000000000000\n0.0800000000000\t\t0.0000000000000\n0.0900000000000\t\t-0.0000000000000\n0.1000000000000\t\t0.0000000000000\n0.1100000000000\t\t-0.0000000000000\n0.1200000000000\t\t0.0000000000000\n0.1300000000000\t\t-0.0000000000000\n0.1400000000000\t\t0.0000000000000\n0.1500000000000\t\t-0.0000000000000\n0.1600000000000\t\t0.0000000000000\n0.1700000000000\t\t-0.0000000000000\n0.1800000000000\t\t0.0000000000000\n0.1900000000000\t\t-0.0000000000000\n0.2000000000000\t\t0.0000000000000\n0.2100000000000\t\t-0.0000000000000\n0.2200000000000\t\t0.0000000000000\n0.2300000000000\t\t-0.0000000000000\n0.2400000000000\t\t0.0000000000000\n0.2500000000000\t\t-0.0000000000000\n0.2600000000000\t\t0.0000000000000\n0.2700000000000\t\t-0.0000000000000\n0.2800000000000\t\t0.0000000000000\n0.2900000000000\t\t-0.0000000000000\n0.3000000000000\t\t0.0000000000000\n0.3100000000000\t\t-0.0000000000000\n0.3200000000000\t\t0.0000000000000\n0.3300000000000\t\t-0.0000000000000\n0.3400000000000\t\t0.0000000000000\n0.3500000000000\t\t-0.0000000000000\n0.3600000000000\t\t0.0000000000000\n0.3700000000000\t\t-0.0000000000000\n0.3800000000000\t\t0.0000000000000\n0.3900000000000\t\t-0.0000000000000\n0.4000000000000\t\t0.0000000000000\n0.4100000000000\t\t-0.0000000000000\n0.4200000000000\t\t0.0000000000000\n0.4300000000000\t\t0.0000000000000\n0.4400000000000\t\t0.0000000000002\n0.4500000000000\t\t0.0000000000069\n0.4600000000000\t\t0.0000000001742\n0.4700000000000\t\t0.0000000034985\n0.4800000000000\t\t0.0000000562676\n0.4900000000000\t\t0.0000007246394\n0.5000000000000\t\t0.0000074726693\n0.5100000000000\t\t0.0000617049020\n0.5200000000000\t\t0.0004079939175\n0.5300000000000\t\t0.0021601197370\n0.5400000000000\t\t0.0091578194444\n0.5500000000000\t\t0.0310882620111\n0.5600000000000\t\t0.0845066577030\n0.5700000000000\t\t0.1839397205857\n0.5800000000000\t\t0.3205901942150\n0.5900000000000\t\t0.4474196584072\n0.6000000000000\t\t0.5000000000000\n0.6100000000000\t\t0.4474196584072\n0.6200000000000\t\t0.3205901942150\n0.6300000000000\t\t0.1839397205857\n0.6400000000000\t\t0.0845066577030\n0.6500000000000\t\t0.0310882620111\n0.6600000000000\t\t0.0091578194444\n0.6700000000000\t\t0.0021601197370\n0.6800000000000\t\t0.0004079939175\n0.6900000000000\t\t0.0000617049020\n0.7000000000000\t\t0.0000074726693\n0.7100000000000\t\t0.0000007246394\n0.7200000000000\t\t0.0000000562676\n0.7300000000000\t\t0.0000000034987\n0.7400000000000\t\t0.0000000001811\n0.7500000000000\t\t0.0000000001811\n0.7600000000000\t\t0.0000000034987\n0.7700000000000\t\t0.0000000562676\n0.7800000000000\t\t0.0000007246394\n0.7900000000000\t\t0.0000074726693\n0.8000000000000\t\t0.0000617049020\n0.8100000000000\t\t0.0004079939175\n0.8200000000000\t\t0.0021601197370\n0.8300000000000\t\t0.0091578194444\n0.8400000000000\t\t0.0310882620111\n0.8500000000000\t\t0.0845066577030\n0.8600000000000\t\t0.1839397205857\n0.8700000000000\t\t0.3205901942150\n0.8800000000000\t\t0.4474196584072\n0.8900000000000\t\t0.5000000000000\n0.9000000000000\t\t0.4474196584072\n0.9100000000000\t\t0.3205901942150\n0.9200000000000\t\t0.1839397205857\n0.9300000000000\t\t0.0845066577030\n0.9400000000000\t\t0.0310882620111\n0.9500000000000\t\t0.0091578194444\n0.9600000000000\t\t0.0021601197370\n0.9700000000000\t\t0.0004079939175\n0.9800000000000\t\t0.0000617049020\n0.9900000000000\t\t0.0000074726693\n\n\n\"Time = 0.4000000000000\n0.0100000000000\t\t0.0000000000002\n0.0200000000000\t\t0.0000000000000\n0.0300000000000\t\t0.0000000000000\n0.0400000000000\t\t-0.0000000000000\n0.0500000000000\t\t0.0000000000000\n0.0600000000000\t\t-0.0000000000000\n0.0700000000000\t\t0.0000000000000\n0.0800000000000\t\t-0.0000000000000\n0.0900000000000\t\t0.0000000000000\n0.1000000000000\t\t-0.0000000000000\n0.1100000000000\t\t0.0000000000000\n0.1200000000000\t\t-0.0000000000000\n0.1300000000000\t\t0.0000000000000\n0.1400000000000\t\t-0.0000000000000\n0.1500000000000\t\t0.0000000000000\n0.1600000000000\t\t-0.0000000000000\n0.1700000000000\t\t0.0000000000000\n0.1800000000000\t\t-0.0000000000000\n0.1900000000000\t\t0.0000000000000\n0.2000000000000\t\t-0.0000000000000\n0.2100000000000\t\t0.0000000000000\n0.2200000000000\t\t-0.0000000000000\n0.2300000000000\t\t0.0000000000000\n0.2400000000000\t\t-0.0000000000000\n0.2500000000000\t\t0.0000000000000\n0.2600000000000\t\t-0.0000000000000\n0.2700000000000\t\t0.0000000000000\n0.2800000000000\t\t-0.0000000000000\n0.2900000000000\t\t0.0000000000000\n0.3000000000000\t\t-0.0000000000000\n0.3100000000000\t\t0.0000000000000\n0.3200000000000\t\t-0.0000000000000\n0.3300000000000\t\t0.0000000000000\n0.3400000000000\t\t-0.0000000000000\n0.3500000000000\t\t0.0000000000000\n0.3600000000000\t\t-0.0000000000000\n0.3700000000000\t\t0.0000000000000\n0.3800000000000\t\t-0.0000000000000\n0.3900000000000\t\t0.0000000000000\n0.4000000000000\t\t-0.0000000000000\n0.4100000000000\t\t0.0000000000000\n0.4200000000000\t\t-0.0000000000000\n0.4300000000000\t\t0.0000000000000\n0.4400000000000\t\t-0.0000000000000\n0.4500000000000\t\t0.0000000000000\n0.4600000000000\t\t-0.0000000000000\n0.4700000000000\t\t0.0000000000000\n0.4800000000000\t\t0.0000000000000\n0.4900000000000\t\t0.0000000000002\n0.5000000000000\t\t0.0000000000069\n0.5100000000000\t\t0.0000000001742\n0.5200000000000\t\t0.0000000034985\n0.5300000000000\t\t0.0000000562676\n0.5400000000000\t\t0.0000007246394\n0.5500000000000\t\t0.0000074726693\n0.5600000000000\t\t0.0000617049020\n0.5700000000000\t\t0.0004079939175\n0.5800000000000\t\t0.0021601197370\n0.5900000000000\t\t0.0091578194444\n0.6000000000000\t\t0.0310882620111\n0.6100000000000\t\t0.0845066577030\n0.6200000000000\t\t0.1839397205857\n0.6300000000000\t\t0.3205901942150\n0.6400000000000\t\t0.4474196584072\n0.6500000000000\t\t0.5000000000000\n0.6600000000000\t\t0.4474196584072\n0.6700000000000\t\t0.3205901942150\n0.6800000000000\t\t0.1839397205859\n0.6900000000000\t\t0.0845066577100\n0.7000000000000\t\t0.0310882621852\n0.7100000000000\t\t0.0091578229429\n0.7200000000000\t\t0.0021601760046\n0.7300000000000\t\t0.0004087185570\n0.7400000000000\t\t0.0000691775713\n0.7500000000000\t\t0.0000691775713\n0.7600000000000\t\t0.0004087185570\n0.7700000000000\t\t0.0021601760046\n0.7800000000000\t\t0.0091578229429\n0.7900000000000\t\t0.0310882621852\n0.8000000000000\t\t0.0845066577100\n0.8100000000000\t\t0.1839397205859\n0.8200000000000\t\t0.3205901942150\n0.8300000000000\t\t0.4474196584072\n0.8400000000000\t\t0.5000000000000\n0.8500000000000\t\t0.4474196584072\n0.8600000000000\t\t0.3205901942150\n0.8700000000000\t\t0.1839397205857\n0.8800000000000\t\t0.0845066577030\n0.8900000000000\t\t0.0310882620111\n0.9000000000000\t\t0.0091578194444\n0.9100000000000\t\t0.0021601197370\n0.9200000000000\t\t0.0004079939175\n0.9300000000000\t\t0.0000617049020\n0.9400000000000\t\t0.0000074726693\n0.9500000000000\t\t0.0000007246394\n0.9600000000000\t\t0.0000000562676\n0.9700000000000\t\t0.0000000034985\n0.9800000000000\t\t0.0000000001742\n0.9900000000000\t\t0.0000000000069\n\n\n\"Time = 0.4500000000000\n0.0100000000000\t\t-0.0000000000000\n0.0200000000000\t\t0.0000000000000\n0.0300000000000\t\t-0.0000000000000\n0.0400000000000\t\t0.0000000000000\n0.0500000000000\t\t-0.0000000000000\n0.0600000000000\t\t0.0000000000000\n0.0700000000000\t\t-0.0000000000000\n0.0800000000000\t\t0.0000000000000\n0.0900000000000\t\t-0.0000000000000\n0.1000000000000\t\t0.0000000000000\n0.1100000000000\t\t-0.0000000000000\n0.1200000000000\t\t0.0000000000000\n0.1300000000000\t\t-0.0000000000000\n0.1400000000000\t\t0.0000000000000\n0.1500000000000\t\t-0.0000000000000\n0.1600000000000\t\t0.0000000000000\n0.1700000000000\t\t-0.0000000000000\n0.1800000000000\t\t0.0000000000000\n0.1900000000000\t\t-0.0000000000000\n0.2000000000000\t\t0.0000000000000\n0.2100000000000\t\t-0.0000000000000\n0.2200000000000\t\t0.0000000000000\n0.2300000000000\t\t-0.0000000000000\n0.2400000000000\t\t0.0000000000000\n0.2500000000000\t\t-0.0000000000000\n0.2600000000000\t\t0.0000000000000\n0.2700000000000\t\t-0.0000000000000\n0.2800000000000\t\t0.0000000000000\n0.2900000000000\t\t-0.0000000000000\n0.3000000000000\t\t0.0000000000000\n0.3100000000000\t\t-0.0000000000000\n0.3200000000000\t\t0.0000000000000\n0.3300000000000\t\t-0.0000000000000\n0.3400000000000\t\t0.0000000000000\n0.3500000000000\t\t-0.0000000000000\n0.3600000000000\t\t0.0000000000000\n0.3700000000000\t\t-0.0000000000000\n0.3800000000000\t\t0.0000000000000\n0.3900000000000\t\t-0.0000000000000\n0.4000000000000\t\t0.0000000000000\n0.4100000000000\t\t-0.0000000000000\n0.4200000000000\t\t0.0000000000000\n0.4300000000000\t\t-0.0000000000000\n0.4400000000000\t\t0.0000000000000\n0.4500000000000\t\t-0.0000000000000\n0.4600000000000\t\t0.0000000000000\n0.4700000000000\t\t-0.0000000000000\n0.4800000000000\t\t0.0000000000000\n0.4900000000000\t\t-0.0000000000000\n0.5000000000000\t\t0.0000000000000\n0.5100000000000\t\t-0.0000000000000\n0.5200000000000\t\t0.0000000000000\n0.5300000000000\t\t0.0000000000000\n0.5400000000000\t\t0.0000000000002\n0.5500000000000\t\t0.0000000000069\n0.5600000000000\t\t0.0000000001742\n0.5700000000000\t\t0.0000000034985\n0.5800000000000\t\t0.0000000562676\n0.5900000000000\t\t0.0000007246394\n0.6000000000000\t\t0.0000074726693\n0.6100000000000\t\t0.0000617049020\n0.6200000000000\t\t0.0004079939175\n0.6300000000000\t\t0.0021601197373\n0.6400000000000\t\t0.0091578194513\n0.6500000000000\t\t0.0310882621852\n0.6600000000000\t\t0.0845066612016\n0.6700000000000\t\t0.1839397768533\n0.6800000000000\t\t0.3205909188544\n0.6900000000000\t\t0.4474271310764\n0.7000000000000\t\t0.5000617049020\n0.7100000000000\t\t0.4478276523247\n0.7200000000000\t\t0.3227503139520\n0.7300000000000\t\t0.1930975400301\n0.7400000000000\t\t0.1155949197141\n0.7500000000000\t\t0.1155949197141\n0.7600000000000\t\t0.1930975400301\n0.7700000000000\t\t0.3227503139520\n0.7800000000000\t\t0.4478276523247\n0.7900000000000\t\t0.5000617049020\n0.8000000000000\t\t0.4474271310764\n0.8100000000000\t\t0.3205909188544\n0.8200000000000\t\t0.1839397768533\n0.8300000000000\t\t0.0845066612016\n0.8400000000000\t\t0.0310882621852\n0.8500000000000\t\t0.0091578194513\n0.8600000000000\t\t0.0021601197373\n0.8700000000000\t\t0.0004079939175\n0.8800000000000\t\t0.0000617049020\n0.8900000000000\t\t0.0000074726693\n0.9000000000000\t\t0.0000007246394\n0.9100000000000\t\t0.0000000562676\n0.9200000000000\t\t0.0000000034985\n0.9300000000000\t\t0.0000000001742\n0.9400000000000\t\t0.0000000000069\n0.9500000000000\t\t0.0000000000002\n0.9600000000000\t\t0.0000000000000\n0.9700000000000\t\t0.0000000000000\n0.9800000000000\t\t-0.0000000000000\n0.9900000000000\t\t0.0000000000000\n\n\n\"Time = 0.5000000000000\n0.0100000000000\t\t0.0000000000000\n0.0200000000000\t\t-0.0000000000000\n0.0300000000000\t\t0.0000000000000\n0.0400000000000\t\t-0.0000000000000\n0.0500000000000\t\t0.0000000000000\n0.0600000000000\t\t-0.0000000000000\n0.0700000000000\t\t0.0000000000000\n0.0800000000000\t\t-0.0000000000000\n0.0900000000000\t\t0.0000000000000\n0.1000000000000\t\t-0.0000000000000\n0.1100000000000\t\t0.0000000000000\n0.1200000000000\t\t-0.0000000000000\n0.1300000000000\t\t0.0000000000000\n0.1400000000000\t\t-0.0000000000000\n0.1500000000000\t\t0.0000000000000\n0.1600000000000\t\t-0.0000000000000\n0.1700000000000\t\t0.0000000000000\n0.1800000000000\t\t-0.0000000000000\n0.1900000000000\t\t0.0000000000000\n0.2000000000000\t\t-0.0000000000000\n0.2100000000000\t\t0.0000000000000\n0.2200000000000\t\t-0.0000000000000\n0.2300000000000\t\t0.0000000000000\n0.2400000000000\t\t-0.0000000000000\n0.2500000000000\t\t0.0000000000000\n0.2600000000000\t\t-0.0000000000000\n0.2700000000000\t\t0.0000000000000\n0.2800000000000\t\t-0.0000000000000\n0.2900000000000\t\t0.0000000000000\n0.3000000000000\t\t-0.0000000000000\n0.3100000000000\t\t0.0000000000000\n0.3200000000000\t\t-0.0000000000000\n0.3300000000000\t\t0.0000000000000\n0.3400000000000\t\t-0.0000000000000\n0.3500000000000\t\t0.0000000000000\n0.3600000000000\t\t-0.0000000000000\n0.3700000000000\t\t0.0000000000000\n0.3800000000000\t\t-0.0000000000000\n0.3900000000000\t\t0.0000000000000\n0.4000000000000\t\t-0.0000000000000\n0.4100000000000\t\t0.0000000000000\n0.4200000000000\t\t-0.0000000000000\n0.4300000000000\t\t0.0000000000000\n0.4400000000000\t\t-0.0000000000000\n0.4500000000000\t\t0.0000000000000\n0.4600000000000\t\t-0.0000000000000\n0.4700000000000\t\t0.0000000000000\n0.4800000000000\t\t-0.0000000000000\n0.4900000000000\t\t0.0000000000000\n0.5000000000000\t\t-0.0000000000000\n0.5100000000000\t\t0.0000000000000\n0.5200000000000\t\t-0.0000000000000\n0.5300000000000\t\t0.0000000000000\n0.5400000000000\t\t-0.0000000000000\n0.5500000000000\t\t0.0000000000000\n0.5600000000000\t\t0.0000000000000\n0.5700000000000\t\t0.0000000000000\n0.5800000000000\t\t0.0000000000002\n0.5900000000000\t\t0.0000000000072\n0.6000000000000\t\t0.0000000001811\n0.6100000000000\t\t0.0000000036727\n0.6200000000000\t\t0.0000000597661\n0.6300000000000\t\t0.0000007809070\n0.6400000000000\t\t0.0000081973087\n0.6500000000000\t\t0.0000691775713\n0.6600000000000\t\t0.0004696988196\n0.6700000000000\t\t0.0025681136546\n0.6800000000000\t\t0.0113179391814\n0.6900000000000\t\t0.0402460814554\n0.7000000000000\t\t0.1155949197141\n0.7100000000000\t\t0.2684463782888\n0.7200000000000\t\t0.5045299148007\n0.7300000000000\t\t0.7680098526222\n0.7400000000000\t\t0.9474196584072\n0.7500000000000\t\t0.9474196584072\n0.7600000000000\t\t0.7680098526222\n0.7700000000000\t\t0.5045299148007\n0.7800000000000\t\t0.2684463782888\n0.7900000000000\t\t0.1155949197141\n0.8000000000000\t\t0.0402460814554\n0.8100000000000\t\t0.0113179391814\n0.8200000000000\t\t0.0025681136546\n0.8300000000000\t\t0.0004696988196\n0.8400000000000\t\t0.0000691775713\n0.8500000000000\t\t0.0000081973087\n0.8600000000000\t\t0.0000007809070\n0.8700000000000\t\t0.0000000597661\n0.8800000000000\t\t0.0000000036727\n0.8900000000000\t\t0.0000000001811\n0.9000000000000\t\t0.0000000000072\n0.9100000000000\t\t0.0000000000002\n0.9200000000000\t\t0.0000000000000\n0.9300000000000\t\t0.0000000000000\n0.9400000000000\t\t0.0000000000000\n0.9500000000000\t\t-0.0000000000000\n0.9600000000000\t\t0.0000000000000\n0.9700000000000\t\t-0.0000000000000\n0.9800000000000\t\t0.0000000000000\n0.9900000000000\t\t-0.0000000000000\n",
"wavetoy1df77/phi_nm2.tl": "\"phi v time\n0.0000000000000\t0.1948825704938\n0.0500000000000\t0.1380688974740\n0.1000000000000\t0.1378027871467\n0.1500000000000\t0.1378027871313\n0.2000000000000\t0.1378027871313\n0.2500000000000\t0.1378027871313\n0.3000000000000\t0.1378027871313\n0.3500000000000\t0.1378027871313\n0.4000000000000\t0.1378027872656\n0.4500000000000\t0.1385660984233\n0.5000000000000\t0.1922316513301\n",
"wavetoy1df77/phi_nm1.tl": "\"phi v time\n0.0000000000000\t0.0537107227547\n0.0500000000000\t0.0537107227547\n0.1000000000000\t0.0537107227547\n0.1500000000000\t0.0537107227547\n0.2000000000000\t0.0537107227547\n0.2500000000000\t0.0537107227547\n0.3000000000000\t0.0537107227547\n0.3500000000000\t0.0537107227547\n0.4000000000000\t0.0537107227547\n0.4500000000000\t0.0537107227547\n0.5000000000000\t0.0537107227547\n",
"wavetoy1df77/phi_min.tl": "\"phi v time\n0.0000000000000\t0.0000000000000\n0.0500000000000\t0.0000000000000\n0.1000000000000\t0.0000000000000\n0.1500000000000\t0.0000000000000\n0.2000000000000\t-0.0000000000000\n0.2500000000000\t-0.0000000000000\n0.3000000000000\t-0.0000000000000\n0.3500000000000\t-0.0000000000000\n0.4000000000000\t-0.0000000000000\n0.4500000000000\t-0.0000000000000\n0.5000000000000\t-0.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{WaveToy1DF77}\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"
}
}