aboutsummaryrefslogtreecommitdiff
path: root/CarpetExtra
Commit message (Collapse)AuthorAge
* Select boundary selection in level mode.schnetter2004-05-05
| | | | darcs-hash:20040505194344-07bb3-006a5932b7a451f1ec8552fb74aab9de46f36305.gz
* Use "requires" instead of "requires thorns".schnetter2004-04-18
| | | | darcs-hash:20040418120959-07bb3-05050a71e475171cac6b293de35118e4af8df5ba.gz
* Calculate an approximation of the solution errorschnetter2004-04-07
| | | | darcs-hash:20040407150821-07bb3-eed6ae63d064c5746d4a408eabc7f1dd82db542d.gz
* Update parameter filesschnetter2004-03-23
| | | | darcs-hash:20040323110121-07bb3-54db1756625eb6495d0642992a2e9fde39cd4bd6.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:20040125135727-07bb3-51c9647c1b5080e7e180b52a1b81fa155cfd19e9.gz
* Allow different kinds of initial data.schnetter2004-01-11
| | | | darcs-hash:20040111112039-07bb3-7ffb487a26951fb48a0b090f5aaa6d160a4620f0.gz
* Allow different kinds of initial data.schnetter2004-01-11
| | | | darcs-hash:20040111102039-07bb3-aa2db5eb23fb28d9175c9e2718658a4b6f868a86.gz
* Make the dependency on the thorns CartGrid3D and/or Boundary explicit.schnetter2003-11-17
| | | | darcs-hash:20031117114725-07bb3-0633e6c1f9ea3637b662462706bc0104c859aa02.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
* Change include mechanism for aliased functions in Fortran. One now has toschnetter2003-10-27
| | | | | | | | Change include mechanism for aliased functions in Fortran. One now has to #include "cctk_Functions.h" and then use the macro DECLARE_CCTK_FUNCTIONS. darcs-hash:20031027143140-07bb3-c89b45361b934b875cad21d4f74b278d9eacdd46.gz
* Change include mechanism for aliased functions in Fortran. One now has toschnetter2003-10-27
| | | | | | | | Change include mechanism for aliased functions in Fortran. One now has to #include "cctk_Functions.h" and then use the macro DECLARE_CCTK_FUNCTIONS. darcs-hash:20031027133140-07bb3-d4036d092a34df15aa67213d3e4d691dc0ea72ca.gz
* These files are Fortran 77, not Fortran 90.schnetter2003-09-20
| | | | darcs-hash:20030920114727-07bb3-a6a3356b90a00f50bf96ef24e7b1b98c157c5516.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
* White space changes.schnetter2003-08-27
| | | | darcs-hash:20030827164458-07bb3-e800cab00641c86706fca4c3a5f8848cb65b9ad4.gz
* Do not inherit Hyperslab.schnetter2003-08-14
| | | | darcs-hash:20030814152254-07bb3-5a01620db9f5226b7e1d8efd6089085ea7816675.gz
* Add new kind of initial data "Gaussian pulse".schnetter2003-08-14
| | | | darcs-hash:20030814152209-07bb3-442fd3095423f18d9ad4c961b6745b65e5328a05.gz
* Fix the casing of the postrestrict group to PostRestrict. Update allschnetter2003-07-20
| | | | | | | | | | | | | Fix the casing of the postrestrict group to PostRestrict. Update all schedule.ccl files accordingly. Introduce a Carpet parameter buffer_width. This parameter specifies a region within refined grids that is also boundary-prolongated. Introduce a function CarpetEnableProlongation to dis- and re-enable boundary prolongation. darcs-hash:20030720190343-07bb3-0c5db5cebe769c0d4b3237f11a089aab9da94b1a.gz
* Added FlexIO to the ActiveThorns list. It's required now because CarpetIOFlexIOtradke2003-07-10
| | | | | | inherits it. darcs-hash:20030710102848-1d9bf-93d148169251e1932ba9ee387fbd6c6b52bc4bc2.gz
* Make the width of the boundary a Cactus parameter "bound_width".schnetter2003-07-08
| | | | darcs-hash:20030708211245-07bb3-04251d647d052d857072f63961daafaec3d05c60.gz
* Remove unused variables.schnetter2003-07-08
| | | | darcs-hash:20030708210219-07bb3-03be634af693a15b84dbfb31696e5813379ac2d9.gz
* Change level mode to local mode. Didn't I just commit this already?schnetter2003-07-08
| | | | darcs-hash:20030708205248-07bb3-634bd40b610744d3bdc8b9d5b0e1fe47db9b1a18.gz
* Use 2 boundary points.schnetter2003-07-08
| | | | darcs-hash:20030708205119-07bb3-216ec1f828a93ca0e6a1afae0737f780838a0623.gz
* Schedule boundary routine in local, not in level, mode, because itschnetter2003-07-08
| | | | | | | Schedule boundary routine in local, not in level, mode, because it applies the excision boundary condition locally. darcs-hash:20030708200439-07bb3-3e302bcb0905211c240f2dfba21f6f4f118bdd9c.gz
* Evolve up to the boundary.schnetter2003-07-08
| | | | darcs-hash:20030708193923-07bb3-4bf8f7536ac456bfbf92a3465f75a71841f4ff77.gz
* Make options table persistent.schnetter2003-07-08
| | | | darcs-hash:20030708183601-07bb3-101f1100fcc8b3da40f60cd452ec1a850f46d2f1.gz
* Update sample parameter file.schnetter2003-06-30
| | | | | | | Update sample parameter file. Update sample gnuplot scripts. darcs-hash:20030630152851-07bb3-ec6b991f8b3f67cfa44a68579187d6403b0ea867.gz
* More changes.schnetter2003-06-27
| | | | darcs-hash:20030627144403-07bb3-eef90b47b87e79f643cba49f2dc68e8b268c1a2a.gz
* Remove superfluous parameter checking.schnetter2003-06-27
| | | | | | | Remove superfluous parameter checking. Provide correct asymptotic limits. darcs-hash:20030627142611-07bb3-106ad5807b1a2ab2feea367886e03cbe9ca2377d.gz
* Fix scheduling bug.schnetter2003-06-27
| | | | | | | Fix scheduling bug. Add parameter file. darcs-hash:20030627140521-07bb3-7c235a34ac66ad613186580ebea7920e10d08230.gz
* Rename implementation to "FOWaveToy". Rename all variable names in strings.schnetter2003-06-27
| | | | | | | | | Rename implementation to "FOWaveToy". Rename all variable names in strings. Adapt to new boundary condition scheme. Change from Cart3d to CartGrid3D. darcs-hash:20030627135458-07bb3-f2096160de0784ebea9d799216d7eaead9d02879.gz
* up to date, after conference callshawley2003-06-27
| | | | darcs-hash:20030627132953-e415b-04f50c0324d3cab1c559a2318e9ff1387c4358a0.gz
* modified boundary conditionsshawley2003-06-27
| | | | darcs-hash:20030627132924-e415b-c8b5efa021b3c8fe01967784290e870ed179c3f6.gz
* Added text to match with CactusWave/WaveToyF77shawley2003-06-26
| | | | darcs-hash:20030626182815-e415b-66eb29adea583b385e4a3ab3394a2c93ba7610ac.gz
* added updates to switch from Cart3d to CartGrid3Dshawley2003-06-26
| | | | darcs-hash:20030626182754-e415b-d4332c6ba4b5d8e7a8f629638e71e519f0d5bda1.gz
* updated from old Cart3D calls to newer CartGrid3dshawley2003-06-26
| | | | darcs-hash:20030626181015-e415b-557158ec00d8bf4641ac734063ac38b73f4aad7f.gz
* updated from old Cart3d calls to newer CartGrid3D callsshawley2003-06-26
| | | | darcs-hash:20030626180721-e415b-6cf7087ebfe4055241ee64773f4e8d8981426d50.gz
* added timelevel specs for storageshawley2003-06-26
| | | | darcs-hash:20030626175131-e415b-12d215181b022a89cf1c1b262f832f8d533aff2e.gz
* WaveToyMoL: Produce more output.schnetter2003-06-18
| | | | | | | | WaveToyMoL: Produce more output. WaveToyFO: Add parameter files. *.F77: Fix bugs. darcs-hash:20030618180829-07bb3-0bfc535397f0e58ad8079502f731b0706a25e058.gz
* Major update after a quiet time.schnetter2003-06-18
| | | | | | | | | | | | | | | | | | | | Major update after a quiet time. Carpet: The flesh now has new cGH fields cctk_levoff[], cctk_levoffdenom[], and cctk_timefac that describe the spatial offset and temporal refinement factor between the base and the current refinement level. These fields are now set and used; they change how coordinates are handled. CarpetIOASCII: Fix bugs regarding choosing the output hyperslab and the output coordinates. ID*, *Toy*: New WaveToy examples with various formulations and different integrations methods. Currently, none of them converge to second order except the standard WaveToy formulation. These updates require the recent flesh, base thorn (and MoL) updates. darcs-hash:20030618162427-07bb3-70761f74bce6ae246b5a2943a385647657d46d34.gz
* Update.schnetter2003-05-13
| | | | darcs-hash:20030513143223-07bb3-07f35bcec90d10890a28279691d1bfe63b6f5db5.gz
* Activate thorn Slab.schnetter2003-04-30
| | | | darcs-hash:20030430104529-07bb3-5f3825199145f1c1300c89a3426e9a67617bc211.gz
* Add required thorn "Slab" to the activation sequence.schnetter2003-04-09
| | | | darcs-hash:20030409163301-07bb3-b407ff8175844dbc71f6e1d8dd940c0bc34c57b4.gz
* Remove #warning statements that are not understood by the SGIschnetter2003-03-28
| | | | | | | Remove #warning statements that are not understood by the SGI compiler. What was I thinking? darcs-hash:20030328091154-07bb3-dc9908d5049478c1e85f72a4bb4a1703fdf83fb1.gz
* Updated parameter files.schnetter2002-10-24
| | | | darcs-hash:20021024191153-07bb3-90dd8efad24bdb5625a2365fba0a57ea96adc14d.gz
* Exchanged the files.schnetter2002-09-25
| | | | darcs-hash:20020925164403-07bb3-af607c9b8605d59a1caf87ccf135636f87f80f51.gz
* Updated parameter files.schnetter2002-07-15
| | | | darcs-hash:20020715151201-07bb3-5f54f67ee438d6b72b20e0c8d543c4be69d2c31e.gz
* Added missing file. Fixed wrong file.schnetter2002-06-06
| | | | darcs-hash:20020606130400-07bb3-5486d71d31fb7f0a1b7b2846e7c0e665b1fe385e.gz
* Changed options file.schnetter2002-06-06
| | | | darcs-hash:20020606121950-07bb3-8ddf50f048be056ed4224aa852559100471cb678.gz