aboutsummaryrefslogtreecommitdiff
path: root/Carpet/CarpetTest
Commit message (Collapse)AuthorAge
* CarpetTest: add no_split_in_directions tagRoland Haas2013-09-27
| | | | regenerate data for 2 processes, disable slabtest by default
* CarpetTest: recreate test data in new CarpetIOASCII formatRoland Haas2013-09-27
| | | | | | data is still the same, for grid-arrays I modified the files by hand, for the grid function I regenerated after checking that data is identical
* CarpetTest: make compile againRoland Haas2013-09-27
|
* CarpetTest: Use old-style Cactus internal variablesErik Schnetter2011-12-14
| | | | Use old-style Cactus internal variables to access grid function sizes.
* Import CarpetErik Schnetter2011-12-14
| | | | Ignore-this: 309b4dd613f4af2b84aa5d6743fdb6b3
* CarpetTest: Use new internal variable namesErik Schnetter2008-07-11
| | | | Use new internal variable names for passing cctk_lsh to Fortran routines.
* * enable missing STORAGE declaration for some Grid variables used by CarpetTestThomas Radke2008-03-11
| | | | | * include InitBase in the ActiveThorns list * mark the CarpetTest testsuite as runnable on only 1 processor
* CarpetTest: add missing thorn SymBase to testsuite parfileThomas Radke2005-11-24
| | | | darcs-hash:20051124142141-776a0-21b93cb8f02560ed1abe89fd65f4f09aa1cad229.gz
* CarpetTest: fix names for grid array sizesThomas Radke2005-09-26
| | | | | | | | The (internal) variable names as passed in CCTK_ARGUMENTS to specify CCTK array grid sizes have changed recently. This patch fixes carpettest_check_arguments.F77 to follow the new naming scheme. darcs-hash:20050926114726-776a0-5ecc42489aabdc6a3324e0829f7a0f46a44e0021.gz
* global: Remove $Header$ keywords from Carpet arrangementErik Schnetter2005-01-01
| | | | darcs-hash:20050101162121-891bb-ac9d070faecc19f91b4b57389d3507bfc6c6e5ee.gz
* CarpetTest/src/slabtest.c: fixed a (very bad) typotradke2004-11-29
| | | | darcs-hash:20041129114015-3fd61-7c7b411436e959b6b18c1643a6dff6811d82ca13.gz
* CarpetTest/test/arraysizes.par: activate missing thornstradke2004-11-29
| | | | darcs-hash:20041129113910-3fd61-31c372384795e745fb5f8d484077cdca86a50d62.gz
* Add test routine for hyperslabbingErik Schnetter2004-09-18
| | | | darcs-hash:20040918134055-891bb-2255e545a38dc4a4a87a2b1f9a135ac8ce905790.gz
* Remove CVS header tagsErik Schnetter2004-09-18
| | | | | | Replace all CVS header tags with the standard "$Header:$". darcs-hash:20040918132147-891bb-dea889bdd94a479ec412d14d08e9efca63e5c24d.gz
* Update parameter filesschnetter2004-03-23
| | | | darcs-hash:20040323100159-07bb3-dd0dd602fc7850cbf027cabcec0837b74194849c.gz
* Import the recently announced changes:schnetter2004-01-25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Import the recently announced changes: 1. Carpet has now an infrastructure for multiple maps (aka "grid patches"). Instead of a single grid hierarchy there can now be several. This is largely untested, because the remainder of Cactus cannot handle multiple coordinate systems. 2. The order in which the schedule bins are called has changed. As Ian Hawke pointed out, the previous order during time evolution was inconsistent. The initial data ordering did not allow for recovering and was not usable for progressively solving elliptic equations for initial data. 3. Carpet now supports convergence levels. The convergence level specifies by how many factors of two the resolution in the parameter file should be coarsened (or refined, if negative). This should make convergence tests and test runs much easier. It is, in principle, also possible to run several convergence levels at once. This has not been tested because the remainder of Cactus cannot handle multiple resolutions. This will be necessary for a multigrid solver, and also for having a shadow hierarchy to determine where to refine adaptively. 4. Carpet works together with the new CoordBase domain specification parameters. Without these, using convergence levels will lead to very strange results. 5. The "modes" have changed. There are now: meta mode: the whole simulation global mode: one convergence level level mode: one refinement level singlemap mode: one map on one refinement level local mode: as previously The whole mode handling has been cleaned up. 6. The regridding thorn has been cleaned up. 7. The kind of prolongation stencil is now determined in Carpet, i.e. at a fairly hight level, instead of in CarpetLib. 8. The low-order prolongation operators have been made much more efficient (as have previously the higher-order ones). 9. Assorted smaller changes. For Carpet users, there should be no major incompatibilities. The major improvements are 3 and 4 combined. Here is an example: CoordBase::domainsize = extent CoordBase::spacing = gridspacing CoordBase::zero_origin_x = yes CoordBase::zero_origin_y = yes CoordBase::zero_origin_z = yes CoordBase::xextent = 20.0 CoordBase::yextent = 20.0 CoordBase::zextent = 20.0 CoordBase::dx = 1.0 CoordBase::dy = 1.0 CoordBase::dz = 1.0 CoordBase::boundary_shiftout_x_lower = 1 CoordBase::boundary_shiftout_y_lower = 1 CoordBase::boundary_shiftout_z_lower = 1 Carpet::domain_from_coordbase = yes Carpet::convergence_level = 0 grid::type = coordbase grid::domain = octant grid::avoid_origin = no This gives you a grid that extends from the origin ("zero_origin") up to 20.0 with a grid spacing of 1.0. Symmetry zones and boundary zones are added automatically. The "shiftout" says that there is no boundary point on the origin. The staggering parameters (not shown) default to "no". In order to change the resolution, only the convergence level has to be adjusted. Note that the old way of specifying the domain extent still works. For Carpet developers, one major change is the new mode handling. As described in 5, the looping macros (that loop over all refinement levels, or all components) have changed. darcs-hash:20040125125727-07bb3-3368611314b2dcb8c8ae58ab3f501b683d7edb8f.gz
* Many changes that accumulated while Cactus and Carpet diverged.schnetter2003-11-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Many changes that accumulated while Cactus and Carpet diverged. Add processor splitting mechanism "along-dir" that splits along a specified direction. Rename group PostRestrict to bin POSTRESTRICT. Prolongate initial data only when desired. This saves much time. Sorry, Ian. Fix bug in time level cycling of grid arrays. (Note: grid arrays should not have time levels.) Fix time_t bug on IRIX. Make sure that there is no integer overflow when there are many refinement levels. Always put parentheses around (maxreflevelfact/reflevelfact). Fix typo in Carpet verbose output. Add debug output in processor splitting. Communicate in three stages: Irecv, (work), Isend, Wait. This might be more efficient. Much more, potentially. Fix bug in processor layout of grid arrays. Sorry, Ian. Make the interpolator interpolate between time levels. Untested. Fix bug in processor communication in interpolator. Sorry, Ian. Rewrite prolongation operators to make them twice as fast. There you are, Ian. Move prolongation operator kind handling from data to gdata. Add official hyperslabbing interfaces to CarpetSlab. Adapt to new cGH * handling. darcs-hash:20031105141838-07bb3-d348d033307d82905893e241be485c4db2ce8ce3.gz
* Updated parameter files.schnetter2002-10-24
| | | | darcs-hash:20021024191153-07bb3-90dd8efad24bdb5625a2365fba0a57ea96adc14d.gz
* Added a lot of const modifiers for the cGH structure.schnetter2001-11-02
| | | | darcs-hash:20011102095857-07bb3-fa5851f740861e08b8780059f76c87121cea308e.gz
* Changed handling of scalars. Scalars are now zero-dimensional arrays.schnetter2001-07-09
| | | | | | | | | Changed handling of scalars. Scalars are now zero-dimensional arrays. Now handling CCTK_GroupDynamicData correctly. Now using "include header". Added results of test case. darcs-hash:20010709070002-07bb3-ba0f4339acb8652e35a884fbdf7e8482b7236f8e.gz
* Fixed bug in ASCII output -- only the x dimesion was output, and not y and z.schnetter2001-07-04
| | | | darcs-hash:20010704115523-07bb3-7b9654076c9c8a713187ced500383516a952ef26.gz
* Broke the file "carpet.cc" into several files.schnetter2001-07-04
| | | | | | | | Broke the file "carpet.cc" into several files. Simplified support for arrays with a dimension different from 3. Added a testing thorn. darcs-hash:20010704102946-07bb3-82132f0c643e91f0de33bbaef93f9c693ce7227f.gz
* Initial revisioneschnett2001-03-01
darcs-hash:20010301114010-f6438-12fb8a9ffcc80e86c0a97e37b5b0dae0dbc59b79.gz