aboutsummaryrefslogtreecommitdiff
path: root/Carpet/CarpetIOASCII/param.ccl
Commit message (Collapse)AuthorAge
* CarpetIOASCII: Correct handling of "output_symmetry_points"Erik Schnetter2006-05-01
| | | | | | | | | | | | Only apply the parameter output_symmetry_points at outer boundaries. Only apply the parameter out3D_outer_ghosts if this is not a symmetry boundary. Unify handling of output_symmetry_points, out3D_ghosts, and out3D_outer_ghosts. darcs-hash:20060501225333-dae7b-e7afe3acb60c898967c562885f3601eb4eb4e6bb.gz
* CarpetIOASCII: Clean up param.cclErik Schnetter2006-04-13
| | | | darcs-hash:20060413200629-dae7b-6f4353cf3cb7866817fc5fc27f8eeb4eebcbb58b.gz
* 1D ASCII output of values on the diagonal.cott2006-01-09
| | | | | | | This currently works only in full or octant mode. For bitant (and other modes) a generalization is needed and planned. darcs-hash:20060109213744-34d71-18256721e94f1c798b3bf48ff83187a5c5658a46.gz
* CarpetIOASCII: check I/O parameters at startupThomas Radke2005-11-19
| | | | | | | | | An consistency check has been added at simulation startup to parse the values of the IOASCII::out[0-3]d_vars parameters and print a level 0 or 1 warning message (depending on IO::strict_io_parameter_check) if they contain an invalid variable/group name. darcs-hash:20051119170808-776a0-4ae9fb3557437df8ac4c491234ac9de569278206.gz
* CarpetIOASCII: Do not annotate output files when IO::out_fileinfo="none"Erik Schnetter2005-06-06
| | | | darcs-hash:20050606130520-891bb-ec221f9cc5d5d970c7849a7b0e645202303c8808.gz
* CarpetIOASCII: Do not output symmetry points if desiredErik Schnetter2005-05-27
| | | | darcs-hash:20050527124414-891bb-40372c8e1b77c7fc70a1f02c609518c6c0222a99.gz
* CarpetIOASCII: Make it possible to have only one output file per groupErik Schnetter2005-05-09
| | | | | | | | | | | | Add a parameter CarpetIOASCII::one_file_per_group that collects the output for all variables of a group into a single file. This reduces the number of files, and should thus speed up output and reduce disk usage. If at least one variable of a group is output, then the whole group is output. darcs-hash:20050509124629-891bb-1b9ad778333a2e7a17815be120635402cf5f0ca5.gz
* global: Remove $Header$ keywords from Carpet arrangementErik Schnetter2005-01-01
| | | | darcs-hash:20050101162121-891bb-ac9d070faecc19f91b4b57389d3507bfc6c6e5ee.gz
* CarpetIOASCII: Allow arbitrary precisionErik Schnetter2004-10-02
| | | | darcs-hash:20041002183532-891bb-5b715329313c827c7a628513295f5f330f08a884.gz
* Remove CVS header tagsErik Schnetter2004-09-18
| | | | | | Replace all CVS header tags with the standard "$Header:$". darcs-hash:20040918132147-891bb-dea889bdd94a479ec412d14d08e9efca63e5c24d.gz
* Add STEERABLE=ALWAYS integer parameter IOASCII::out_precision to specify thetradke2004-06-23
| | | | | | number of precision digits for floating-point output. Defaults to 15. darcs-hash:20040623153511-1d9bf-c3e0ca2b263431e4113d2c422fb2dac3cfc1b0f5.gz
* USES BOOLEAN strict_io_parameter_checktradke2004-06-14
| | | | darcs-hash:20040614073305-1d9bf-c42059693a8d87aae8fe1e1df172716d3376a433.gz
* Added the option "divisor" to out?d_criterion.bzink2004-06-03
| | | | darcs-hash:20040603080347-5b8bb-9375277326973c1c75fe326db70081817fdc31fd.gz
* Do not use CCTK_QueryParameterTimesSet to find out whether to use aschnetter2004-04-03
| | | | | | | | Do not use CCTK_QueryParameterTimesSet to find out whether to use a parameter value from this thorn, or from IO. Use special parameter values for that instead, and make these the default. darcs-hash:20040403103812-07bb3-9ced16d97fe79409f081d910121401e9e1ffe12f.gz
* Add 0-dimensional ("point") output. This is necessary to output gridschnetter2004-02-18
| | | | | | | | | | | Add 0-dimensional ("point") output. This is necessary to output grid scalars. Make the output triggering on all refinement levels be independent. Honour do_global_mode when outputting grid scalars and grid arrays. darcs-hash:20040218141229-07bb3-87d51a3ac71175ba7d190f45dd0d735e81ff0350.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
* Added STEERABLE = ALWAYS to parameter output_all_timelevelscott2004-01-13
| | | | darcs-hash:20040113142658-19929-bdda00a3cb2bc7e14c7111108e8e471892ca99cb.gz
* Make CarpetIOASCII parameters private rather than restricted so that theytradke2003-09-02
| | | | | | don't interfere with other implementations of IOASCII. darcs-hash:20030902103717-1d9bf-52b94299763b04c2798724d97f5794ee5c6c15c6.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
* Change parameter "outdir" to "out_dir".schnetter2002-10-24
| | | | darcs-hash:20021024100034-07bb3-ea31bde68f93f0e1f9e4cbfb7bdf34cb93ecc4fd.gz
* Fixed a bug in CarpetSlab; was using the local instead of the globalschnetter2002-03-23
| | | | | | | | | | | | | | | | Fixed a bug in CarpetSlab; was using the local instead of the global extent. Added a more comfortable way to specify the refined region. The new method has no restrictions. Added a way to specify the location of the outer boundary explicitely. Added dummy parameter "periodic*" so that Carpet can be used as drop-in replacement of PUGH (at least when running without refinement). darcs-hash:20020323192054-07bb3-2b9208c8a6b54a55c98d4035095cd4ff6ebcd447.gz
* Moved ASCII output from CarpetLib (where it never belonged) toschnetter2002-01-09
| | | | | | | | | Moved ASCII output from CarpetLib (where it never belonged) to CarpetIOASCII. Added parameter to not output the ghost zones for ASCII output. darcs-hash:20020109224240-07bb3-457f3768c8aee0b68db6a7a85741ccd9191ee39e.gz
* Fixed test cases for axial symmetry (changed parameter files.)schnetter2001-12-17
| | | | | | | | Fixed test cases for axial symmetry (changed parameter files.) Extented Carpet to handle multiple grid components per processor. Currently works on one processor only. darcs-hash:20011217123400-07bb3-47796190d04061ea23798717f6714978bf7e1f55.gz
* Added new thorns CarpetReduce and CarpetRegrid to parameter files.schnetter2001-12-14
| | | | darcs-hash:20011214165954-07bb3-e68f15a15027098cd26981663394a4365aee510d.gz
* ASCII output is now more comfortable.eschnett2001-03-05
| | | | darcs-hash:20010305133022-f6438-57faa8be7f7224b49ec36d2895b9e9d3cf5e547f.gz
* Initial revisioneschnett2001-03-01
| | | | darcs-hash:20010301124010-f6438-fca5ed1e25f84efd816aa0d13fc23b58add7195d.gz
* Initial revisioneschnett2001-03-01
darcs-hash:20010301114010-f6438-12fb8a9ffcc80e86c0a97e37b5b0dae0dbc59b79.gz