aboutsummaryrefslogtreecommitdiff
path: root/CarpetDev/CarpetCG
Commit message (Collapse)AuthorAge
* CarpetCG: Remove redefinition of restrict qualifierErik Schnetter2012-09-11
|
* CarpetCG: #include <cstring>Erik Schnetter2008-02-19
| | | | darcs-hash:20080219054230-dae7b-075d21089653e8733a9c6037fe1b3e32fa08c5be.gz
* CarpetCG: Remove CVS Header commentsErik Schnetter2008-02-19
| | | | darcs-hash:20080219054215-dae7b-927b1a5d9bd93ad820754e966d303de463a34990.gz
* CarpetCG: Correct int/CCTK_INT differencesErik Schnetter2006-10-03
| | | | darcs-hash:20061003235258-dae7b-e98eb30e37c7863b41ee421e940247a898a26d70.gz
* CarpetCG: Correct prototype of registered functionErik Schnetter2006-10-03
| | | | darcs-hash:20061003235218-dae7b-70decbd26c3bf468df8f66bd5ec063eae9e900a9.gz
* CarpetCG: Correct #define restrictErik Schnetter2005-11-22
| | | | darcs-hash:20051122010636-dae7b-b8eb2c0c566e724e655010ca3eae0b5d5ecd81f0.gz
* CarpetCG: Add some empty linesErik Schnetter2005-11-20
| | | | darcs-hash:20051120211704-dae7b-cb05821a52392f2210a868360020d4b9a1ab75c2.gz
* CarpetCG: #define restrict according to CCTK_CXX_RESTRICTErik Schnetter2005-11-20
| | | | darcs-hash:20051120211116-dae7b-51488736c2244728c943db954c06eb4c2e4d880e.gz
* Use ipow instead of pow in various placesErik Schnetter2004-12-25
| | | | darcs-hash:20041225201943-891bb-0c5fe9240c54991c38b7710ab54a0de71d69e221.gz
* CarpetJacobi: Apply boundary conditions in level modeErik Schnetter2004-12-08
| | | | darcs-hash:20041208222256-891bb-ae079ce98bccbd631cc8bf41e32902bec31edcf9.gz
* Do not use CVS $Date$ for latex documentation any moreErik Schnetter2004-11-18
| | | | darcs-hash:20041118233344-891bb-44b65f16949b0d78bee0a66ad6f65c262652c671.gz
* Remove CVS header tagsErik Schnetter2004-09-18
| | | | | | Replace all CVS header tags with the standard "$Header:$". darcs-hash:20040918132147-891bb-dea889bdd94a479ec412d14d08e9efca63e5c24d.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
* Fix the memory corruption.hawke2003-11-20
| | | | | | | Fix the memory corruption. Doesn't converge with refinement, though. darcs-hash:20031120073403-58737-0a5f287cad04535eac0f5403862605f33e020a1f.gz
* Only switch to global mode if not already in global mode.schnetter2003-11-19
| | | | darcs-hash:20031119130536-07bb3-7d6722ae739c4f3315fdfe85b3e0ac3dc899454e.gz
* Initial revisionhawke2003-11-19
| | | | darcs-hash:20031119094047-58737-ef9911a12e56712a462cb6e555f79d0fa4a7dd6a.gz
* Initial revisionhawke2003-11-19
| | | | darcs-hash:20031119084047-58737-b7481050914bb163f0867f194597c7a50b26e64e.gz
* Initial revisioneschnett2001-03-01
darcs-hash:20010301114010-f6438-12fb8a9ffcc80e86c0a97e37b5b0dae0dbc59b79.gz