aboutsummaryrefslogtreecommitdiff
path: root/CarpetAttic
Commit message (Collapse)AuthorAge
* Import CarpetErik Schnetter2011-12-14
| | | | Ignore-this: 309b4dd613f4af2b84aa5d6743fdb6b3
* Remove CVS header tagsErik Schnetter2004-09-18
| | | | | | Replace all CVS header tags with the standard "$Header:$". darcs-hash:20040918132147-891bb-dea889bdd94a479ec412d14d08e9efca63e5c24d.gz
* Outdate sample thorn listsErik Schnetter2004-09-18
| | | | darcs-hash:20040918123752-891bb-d5fe2f4d72825048ff28c3f3687a9c36f2112431.gz
* Update parameter filesschnetter2004-03-23
| | | | darcs-hash:20040323100159-07bb3-dd0dd602fc7850cbf027cabcec0837b74194849c.gz
* Improve error messageschnetter2004-03-08
| | | | darcs-hash:20040308071229-07bb3-2cb5eb5795fcf763f72a09ca1549c34d774bca40.gz
* Replace [] array accesses with .at() array accesses.schnetter2004-03-01
| | | | | | | | Replace [] array accesses with .at() array accesses. Track and check whether all grid points of a variable have been initialised. Abort if it is not so. darcs-hash:20040301212246-07bb3-4b03051d52085be708bdf6643fbdd899512cf56e.gz
* Make FlexIO output work for grid arrays as well.schnetter2004-02-27
| | | | darcs-hash:20040227152334-07bb3-d3238b5b22c759ea619c4fe7eb5f286613841c9e.gz
* Make FlexIO output work for grid arrays as well.schnetter2004-02-27
| | | | darcs-hash:20040227142334-07bb3-fa364bf9c2f216af99d16e923efc9635b65c8d03.gz
* Add functions to read attributes.schnetter2004-02-10
| | | | | | | | | Add functions to read attributes. Store the dataset name in the file. Read variables from files based on the stored name, not based on the filename. darcs-hash:20040210101414-07bb3-893b0f6bddd8acd0e7dcc1b1d35bd310d57b6f79.gz
* Fix bugs in the file reader.schnetter2004-02-09
| | | | | | | Fix bugs in the file reader. Register the file reader with the IO interface. darcs-hash:20040209140232-07bb3-569649d7cbc8b14eb96cefb87d888f3f2c0fb318.gz
* FlexIO string attributes seem to need space for the trailing nul character.schnetter2004-02-07
| | | | darcs-hash:20040207153417-07bb3-d093562a97823a3daff6d01c62b947f27d7acfe9.gz
* Make the file reader work.schnetter2004-02-07
| | | | darcs-hash:20040207152156-07bb3-5b44697ec895aa3744df7cc23d1f705a223bfc20.gz
* Make the file reader work.schnetter2004-02-07
| | | | darcs-hash:20040207142140-07bb3-e5e38c10925f303f4ca0d67f4c52142e78403d8d.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:20040125135727-07bb3-51c9647c1b5080e7e180b52a1b81fa155cfd19e9.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
* Checkpointing and Recovery working with Wavetoy on 1 and 2 processorscott2004-01-13
| | | | darcs-hash:20040113134652-19929-a9114fc6d8c5ebc0101c4991df99032093c3f35a.gz
* Mostly code beautification. Incorporated Erik's new WriteAttributecott2004-01-12
| | | | | | | | Mostly code beautification. Incorporated Erik's new WriteAttribute functions and changed the way CarpetIOFlexIO writes dataset attributes. All the functionality provided in CarpetIOFlexIO is now provided. darcs-hash:20040112095031-19929-f76eb19112c1ff26b232ab05ba03b0b1beb00687.gz
* Mostly code beautification. Incorporated Erik's new WriteAttributecott2004-01-12
| | | | | | | | Mostly code beautification. Incorporated Erik's new WriteAttribute functions and changed the way CarpetIOFlexIO writes dataset attributes. All the functionality provided in CarpetIOFlexIO is now provided. darcs-hash:20040112085031-19929-ce03ec0298a148bc14855d0db33cfa50ce59e681.gz
* a few changes that help with recoverycott2004-01-09
| | | | darcs-hash:20040109144346-19929-67096355895264e0861c3792c7bd3893ee932801.gz
* Okay. Here we go. Recovery goes through without any crashes on a very simplecott2004-01-08
| | | | | | | | | Okay. Here we go. Recovery goes through without any crashes on a very simple test case. No test for consistency yet. The code is still a huge construction site... darcs-hash:20040108184333-19929-b0d1df37d71a59413ba5893926fef4e5862ea7a7.gz
* Saving a day's work... don't try recovery yet.cott2004-01-07
| | | | darcs-hash:20040107153049-19929-d817dfcb9fcaae5f794d4648530bc781a2fa0982.gz
* removed obsolete function WriteGScott2004-01-07
| | | | darcs-hash:20040107121404-19929-279507a275e8bcb9b2ae29c5eb0e87d86b2c34cd.gz
* Getting there... Skeleton of reovery routine for data is in place.cott2004-01-07
| | | | | | | Getting there... Skeleton of reovery routine for data is in place. Need to modify scheduling for IOUtil_RecoverGH: OPTIONS: global darcs-hash:20040107115756-19929-6e1501955bbe1a8811de898e2803d3e22875265d.gz
* We can now recover parameters.cott2004-01-06
| | | | darcs-hash:20040106075639-19929-06e2883236b3a6710cabb2229a18e62219bd5452.gz
* just a quick commit to save the current state before I start messing with ↵cott2004-01-05
| | | | | | parameter distribution darcs-hash:20040105215416-19929-b5fa95175f2996b0b9effd25433de64c4cb914af.gz
* Fix CVS Header tag.schnetter2003-12-10
| | | | darcs-hash:20031210171425-07bb3-2f77d9b624c8000ba1cecb85223edb54fb54c8c9.gz
* Add the content of the cGH structure to each dataset. This allows toschnetter2003-12-10
| | | | | | | | | Add the content of the cGH structure to each dataset. This allows to extract all the information independent of FlexIO. There is also a version number "carpet_flexio_version" that will increase for every incompatible change. darcs-hash:20031210170853-07bb3-31f1ce9c51d6dfb67d265f1ee806522c7391aac5.gz
* Fixed problems with zero sized scalars/arrays.cott2003-12-10
| | | | darcs-hash:20031210135006-19929-c71ad141ef8be15da9a14d4b84414ad703e0719e.gz
* Fixed problems with zero sized arrays/scalars.cott2003-12-10
| | | | darcs-hash:20031210134930-19929-df9164b8596f45f23adc51296e744f1e74e7c720.gz
* Fixed problems with zero-sized arrays/scalars.cott2003-12-10
| | | | darcs-hash:20031210134910-19929-33d792c63bb24c8d2da4cffcbf6c2432bf9f765b.gz
* Minor changes. Code compiles now (last revision didn't). Don't try recovery. ↵cott2003-12-03
| | | | | | | | | Checkpointing Minor changes. Code compiles now (last revision didn't). Don't try recovery. Checkpointing fails for grid arrays and grid scalers : / darcs-hash:20031203150251-19929-6ebdc1ceb6529e57955393dcc54ec582626af807.gz
* New development version. Writing a checkpoint file should work fine. Don't ↵cott2003-12-01
| | | | | | try to restart... darcs-hash:20031201121521-19929-ece689faa551c47b92903400ac6c2a0ea2c6bdeb.gz
* Added stuff for recovery. Don't try to use it!cott2003-12-01
| | | | darcs-hash:20031201111552-19929-58ef708f964d2f3745e0e1fda43a1f20feb81191.gz
* New development version. Writing a checkpoint file should work fine. Don't ↵cott2003-12-01
| | | | | | try to restart... darcs-hash:20031201111521-19929-cb3e2647898441edbf381badbc6448402facafd8.gz
* Correct dependencies.schnetter2003-11-19
| | | | darcs-hash:20031119151220-07bb3-9001adde0d782838b017cf104e06736858534c47.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:20031105151837-07bb3-758a87ff0355dba053269df4b7d7d79bea018669.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
* Make gf and data objects store a Cactus variable index that thisschnetter2003-10-14
| | | | | | | | Make gf and data objects store a Cactus variable index that this object is associated with. This can be used to access various kinds of information, e.g. variable names. darcs-hash:20031014143916-07bb3-678d114393008db7790b5ed72d6462673414c06a.gz
* Writing Checkpoint files works now, but requires some small changes to ↵cvs_anon2003-10-02
| | | | | | Carpet/Carpet/src/Evolve.cc. darcs-hash:20031002093403-62b91-40b3a80a6c90098980848decc15a2aec8d7fd5cc.gz
* Another update. Fixed minor bugs, found another problem concerning HDF5.cvs_anon2003-09-30
| | | | darcs-hash:20030930113319-62b91-5d49edeeb92f9ef9287df8ae3d9a173d0a9ad6e0.gz
* Writing checkpoint files with refinement turned on works now. HDF5 problem. ↵cvs_anon2003-09-25
| | | | | | IEEE fine. darcs-hash:20030925063804-62b91-2be238f72d1e5321a7d4c1c2e9a10dac619305a4.gz
* yet another not working cvs commit to save the current statecvs_anon2003-09-24
| | | | darcs-hash:20030924063530-62b91-f476be710cbcc753a402f858f1780341384ef3c0.gz
* Re-commit of old version to fix my accidental commit yesterday.cvs_anon2003-09-24
| | | | darcs-hash:20030924061502-62b91-2428a17befd681cd13e3989d486038b8fbadac78.gz
* New file containing util routines.cvs_anon2003-09-23
| | | | darcs-hash:20030923103550-62b91-5ab4d33553469e5e3298597d0148cf4ed1ecdc8a.gz
* Another (updated) development version. Still not working.cvs_anon2003-09-23
| | | | darcs-hash:20030923103443-62b91-cd8947bfd13f75214085c9e0d78df729e3f90c72.gz
* another (updated) development versioncvs_anon2003-09-23
| | | | darcs-hash:20030923103212-62b91-f2161d87387c7e4c88290a8b4f78b56ef4b048ee.gz
* Include "Symmetry.h" instead of "AlphaThorns/Cart3d/src/Cart3d.h".schnetter2003-09-20
| | | | darcs-hash:20030920115303-07bb3-3726b5d4d410699c48bfc41127e0b2f0a5eb613c.gz
* Messed around with this. Still not working. Ran into Carpet problems.[_^?_] ↵cvs_anon2003-09-17
| | | | | | Asking Erik&Ian darcs-hash:20030917114700-62b91-94be58492a57149b904308dba06069a97daa3be1.gz
* Hack to stop FlexIO data type clash with LAM MPI.tradke2003-09-08
| | | | darcs-hash:20030908124148-1d9bf-d1565620e6e88b5a5c0485a24f5e7cac8e5e6521.gz
* Carpet infrastructure thorns now require the thorns they depend upontradke2003-09-04
| | | | | | | | (CarpetLib, Carpet, FlexIO) to be compiled in and activated via the "Requires thorns: ..." attribute in the configuration.ccl files. No need to inherit from those thorns/implementations anymore. darcs-hash:20030904142321-1d9bf-309be01f0950d97b8cb45d041d44edce01aff2a5.gz