aboutsummaryrefslogtreecommitdiff
path: root/CarpetExtra/FOWaveToyF77
Commit message (Collapse)AuthorAge
* CarpetExtra: Correct the email address of the Cactus TesmErik Schnetter2005-11-19
| | | | | | Change <cactus@cactuscode.org> to <cactusmaint@cactuscode.org>. darcs-hash:20051119214211-dae7b-fe429d1717c09be397ad83dc7687caad315f9f87.gz
* FOWaveToyF77: do not inherit from IDFOScalarWaveErik Schnetter2005-04-09
| | | | darcs-hash:20050409185109-891bb-f9d76b8e9811534cbdc1b8b1b8f06525dfdfa9b9.gz
* Remove CVS header tagsErik Schnetter2004-09-18
| | | | | | Replace all CVS header tags with the standard "$Header:$". darcs-hash:20040918132147-891bb-dea889bdd94a479ec412d14d08e9efca63e5c24d.gz
* Correct definitions of aliased functionsschnetter2004-05-21
| | | | darcs-hash:20040521154357-07bb3-3dcdbe40f101f2713307dc64331c849e29f6a7c1.gz
* Use "requires" instead of "requires thorns".schnetter2004-04-18
| | | | darcs-hash:20040418120959-07bb3-05050a71e475171cac6b293de35118e4af8df5ba.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
* 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
* 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
* Make the width of the boundary a Cactus parameter "bound_width".schnetter2003-07-08
| | | | darcs-hash:20030708211245-07bb3-04251d647d052d857072f63961daafaec3d05c60.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
* added timelevel specs for storageshawley2003-06-26
| | | | darcs-hash:20030626175131-e415b-12d215181b022a89cf1c1b262f832f8d533aff2e.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
* cleaned up static boundary condition a bitshawley2002-02-27
| | | | darcs-hash:20020227133456-e415b-829fb0a57007e880eedb7a041bfa8ca8d1570045.gz
* now registering phix, phiy and phiz and components of a "vector" typeshawley2002-02-26
| | | | darcs-hash:20020226135622-e415b-a01fdae41a7c78f1b793ef3c064caf876c8ea2db.gz
* now registers resid functionshawley2002-02-26
| | | | darcs-hash:20020226130526-e415b-c8eaec3f58e2f53dac7662eee9aef436b2f506c9.gz
* registers bounds for pi. phix, phiy, phizshawley2002-02-22
| | | | darcs-hash:20020222131128-e415b-c511d7cb8db6a191fb8581225eafc07a48c11a38.gz
* added support for "static" boundary conditionshawley2002-02-22
| | | | darcs-hash:20020222130958-e415b-0e30e925dff8bb688f5efb97988c31c280c4a48f.gz
* added support for "static" boundary conditionshawley2002-02-21
| | | | darcs-hash:20020221113833-e415b-661035023ec73214e8a885c0a7eda4a716e0436e.gz
* fixed equation for phi in evolution routineshawley2002-02-18
| | | | darcs-hash:20020218144713-e415b-e6cbe2d67758f31f91bb37644bcff36e568c7fb4.gz
* result of talking with Gerd and Thomas Radke about how to implement &shawley2002-02-18
| | | | | | | result of talking with Gerd and Thomas Radke about how to implement & schedule this darcs-hash:20020218133647-e415b-c20fe3a51ad57f33964678c510e086f3ef835865.gz
* created a separate group for scalarevolve_derivs. Talked with Gerd andshawley2002-02-18
| | | | | | | | created a separate group for scalarevolve_derivs. Talked with Gerd and Thomas Radke regarding whether to make FOWaveToy implement wavetoy or not, what to make public, what to make private, etc... darcs-hash:20020218133602-e415b-271ff263e778d1a650dd92d31f04d5d0ab11f847.gz
* Initial revisionshawley2002-02-18
| | | | darcs-hash:20020218102534-e415b-377a960557b608d7eb50fff5c49084975ec77d30.gz
* Initial revisionshawley2002-02-18
| | | | darcs-hash:20020218092534-e415b-4448df0bd59400594d1463064b02b2729f7dd858.gz
* Initial revisioneschnett2001-03-01
darcs-hash:20010301114010-f6438-12fb8a9ffcc80e86c0a97e37b5b0dae0dbc59b79.gz