aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Bug-fix from Frank Herrman.goodale2004-05-13
| | | | | | | Fixes PR 1692. git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinInitialData/IDAnalyticBH/trunk@146 6a3ddf76-46e1-4315-99d9-bc56cac1ef84
* Updating to new Einstein hierarchy.goodale2004-05-13
| | | | git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinInitialData/IDAnalyticBH/trunk@144 6a3ddf76-46e1-4315-99d9-bc56cac1ef84
* This parameter file still used the old Einstein stuff.goodale2004-05-13
| | | | git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinInitialData/IDAnalyticBH/trunk@143 6a3ddf76-46e1-4315-99d9-bc56cac1ef84
* Update parameter files to activate thorn SymBase.schnetter2004-03-09
| | | | git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinInitialData/IDAnalyticBH/trunk@141 6a3ddf76-46e1-4315-99d9-bc56cac1ef84
* Include CoordBase in the ActiveThorns list.tradke2003-08-25
| | | | git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinInitialData/IDAnalyticBH/trunk@140 6a3ddf76-46e1-4315-99d9-bc56cac1ef84
* CardGrid3D now inherits from CoordBaserideout2003-08-22
| | | | git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinInitialData/IDAnalyticBH/trunk@139 6a3ddf76-46e1-4315-99d9-bc56cac1ef84
* Remove unnecessary activations of ADMCoupling.hawke2003-07-10
| | | | git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinInitialData/IDAnalyticBH/trunk@138 6a3ddf76-46e1-4315-99d9-bc56cac1ef84
* ADMMacros now requires ADMCouplinghawke2003-07-09
| | | | git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinInitialData/IDAnalyticBH/trunk@137 6a3ddf76-46e1-4315-99d9-bc56cac1ef84
* add a note that the multiple_misner_bh option is broken :(jthorn2003-06-26
| | | | git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinInitialData/IDAnalyticBH/trunk@136 6a3ddf76-46e1-4315-99d9-bc56cac1ef84
* * fix mismatched CCTK_VWarn() formats and arguments forjthorn2003-06-04
| | | | | | | | | "impossible value for conformal_storage" error msgs * also slight tweaks to surrounding code so the compiler knows that make_conformal_derivs is always set before it's used git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinInitialData/IDAnalyticBH/trunk@135 6a3ddf76-46e1-4315-99d9-bc56cac1ef84
* add a parameter file to show the infinite-memory-leak bug I've foundjthorn2003-05-08
| | | | | | | for Misner 3-BH data git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinInitialData/IDAnalyticBH/trunk@134 6a3ddf76-46e1-4315-99d9-bc56cac1ef84
* since I haven't tracked down the infinite memory leak, at least putjthorn2003-05-06
| | | | | | | | | | | | in a level 1 warning to tell users that they're in trouble: WARNING[L1,P0] (IDAnalyticBH): Misner_init(): warning: about to call fill_iso() ; at present this routine seems to leak quasi-infinite amounts of memory at the rate of O(100 megabytes/second) :( :( :( git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinInitialData/IDAnalyticBH/trunk@133 6a3ddf76-46e1-4315-99d9-bc56cac1ef84
* fix description of admbase::initial_data for multiple Misner BHsjthorn2003-05-06
| | | | git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinInitialData/IDAnalyticBH/trunk@132 6a3ddf76-46e1-4315-99d9-bc56cac1ef84
* add CCTK_VInfo() calls to tell the user that we're in this thornjthorn2003-05-06
| | | | | | | setting up initial data git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinInitialData/IDAnalyticBH/trunk@131 6a3ddf76-46e1-4315-99d9-bc56cac1ef84
* fix grdoc comment for iso(),jthorn2003-05-06
| | | | | | | add const qualifier for eval_bh_psi() git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinInitialData/IDAnalyticBH/trunk@130 6a3ddf76-46e1-4315-99d9-bc56cac1ef84
* add prototypes for a bunch of un-prototyped functionsjthorn2003-05-06
| | | | | | | | | | | some code cleanups in Misner_points.c *** I think there is still a quasi-infinite memory leak *** (c. 100 megabytes/second on a xeon) somewhere around the function *** fill_iso() in Misner_points.c git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinInitialData/IDAnalyticBH/trunk@129 6a3ddf76-46e1-4315-99d9-bc56cac1ef84
* fix a bug where settingjthorn2003-05-06
| | | | | | | | | | | | | | | ADMBase::metric_type = "static conformal" StaticConformal::conformal_storage = "factor" led to the local flag make_conformal_derivs never being initialized. Alas, later code then tested this flag, and if the random garbage that's in uninitialized memory happened to be nonzero, the later code would then proceed to try to initialize the 1st derivatives of the conformal factor. Since these don't have storage allocated, this core-dumps. :( :( The bug is fixed by changing the logic to always set make_conformal_derivs . git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinInitialData/IDAnalyticBH/trunk@128 6a3ddf76-46e1-4315-99d9-bc56cac1ef84
* This patch fixes a bug injthorn2003-05-02
| | | | | | | | | | | | | | | | | void Misner_standard(CCTK_ARGUMENTS) where setting ADMBase::metric_type = "static conformal" StaticConformal::conformal_storage = "factor" led to the local flag make_conformal_derivs never being initialized. Alas, later code then tested this flag, and if the random garbage that's in uninitialized memory happened to be nonzero, the later code would then proceed to try to initialize the 1st derivatives of the conformal factor. Since these don't have storage allocated, this core-dumps. :( :( The bug is fixed by changing the logic to always set make_conformal_derivs . git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinInitialData/IDAnalyticBH/trunk@127 6a3ddf76-46e1-4315-99d9-bc56cac1ef84
* Change from using memset() to using a new functionjthorn2003-03-24
| | | | | | | | | IDAnalyticBH_zero_CCTK_REAL_array() when setting a grid array to all zeros. This is necessary because memset() gives all bits 0, but we want floating point (CCTK_REAL) 0.0, which might be a different bit pattern. git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinInitialData/IDAnalyticBH/trunk@126 6a3ddf76-46e1-4315-99d9-bc56cac1ef84
* Removed automatically generated parameter files from testsuite output.tradke2003-01-20
| | | | git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinInitialData/IDAnalyticBH/trunk@125 6a3ddf76-46e1-4315-99d9-bc56cac1ef84
* Added pdf figures.rideout2002-12-03
| | | | | | | Fixed broken references. git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinInitialData/IDAnalyticBH/trunk@124 6a3ddf76-46e1-4315-99d9-bc56cac1ef84
* Fix to a bug in the Schwarzschild metric for the physical case (Note: this ↵allen2002-11-01
| | | | | | | | | | | is just in the physical metric, the conformal (usual) metric is fine!). Spotted and fixed by Frank Herrmann. git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinInitialData/IDAnalyticBH/trunk@123 6a3ddf76-46e1-4315-99d9-bc56cac1ef84
* Typoallen2002-08-18
| | | | | | | Fixes Cactus/1031 git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinInitialData/IDAnalyticBH/trunk@122 6a3ddf76-46e1-4315-99d9-bc56cac1ef84
* Adding missing @history tags.goodale2002-08-14
| | | | | | | Tom git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinInitialData/IDAnalyticBH/trunk@121 6a3ddf76-46e1-4315-99d9-bc56cac1ef84
* Added explicit statement that Kerr assumes rotation about z-axis.pollney2002-06-10
| | | | git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinInitialData/IDAnalyticBH/trunk@120 6a3ddf76-46e1-4315-99d9-bc56cac1ef84
* Fixing name clashes in citationsallen2002-06-04
| | | | git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinInitialData/IDAnalyticBH/trunk@118 6a3ddf76-46e1-4315-99d9-bc56cac1ef84
* fix start and end tagsallen2002-06-04
| | | | git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinInitialData/IDAnalyticBH/trunk@117 6a3ddf76-46e1-4315-99d9-bc56cac1ef84
* changing the documentation.tex files to use our cactus style fileikelley2002-06-04
| | | | git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinInitialData/IDAnalyticBH/trunk@116 6a3ddf76-46e1-4315-99d9-bc56cac1ef84
* changed to Einstein2allen2002-05-09
| | | | git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinInitialData/IDAnalyticBH/trunk@115 6a3ddf76-46e1-4315-99d9-bc56cac1ef84
* schedule initial data at ADMBase_InitialDataallen2002-05-08
| | | | git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinInitialData/IDAnalyticBH/trunk@114 6a3ddf76-46e1-4315-99d9-bc56cac1ef84
* Fixed I/O parameter names and added 'IO::new_filename_scheme = "no" to maketradke2002-05-06
| | | | | | | the testsuites pass again. git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinInitialData/IDAnalyticBH/trunk@113 6a3ddf76-46e1-4315-99d9-bc56cac1ef84
* Corrected wrong files after change in ADMAnalysisallen2002-05-05
| | | | git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinInitialData/IDAnalyticBH/trunk@112 6a3ddf76-46e1-4315-99d9-bc56cac1ef84
* fixed my typo fixing diagramsallen2002-05-05
| | | | git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinInitialData/IDAnalyticBH/trunk@111 6a3ddf76-46e1-4315-99d9-bc56cac1ef84
* fixed figuresallen2002-05-05
| | | | git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinInitialData/IDAnalyticBH/trunk@110 6a3ddf76-46e1-4315-99d9-bc56cac1ef84
* converting par files to einstein2allen2002-05-04
| | | | git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinInitialData/IDAnalyticBH/trunk@109 6a3ddf76-46e1-4315-99d9-bc56cac1ef84
* typoallen2002-05-04
| | | | git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinInitialData/IDAnalyticBH/trunk@108 6a3ddf76-46e1-4315-99d9-bc56cac1ef84
* update to Einstein2 (? thought this was already there?)allen2002-05-04
| | | | git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinInitialData/IDAnalyticBH/trunk@107 6a3ddf76-46e1-4315-99d9-bc56cac1ef84
* Testsuite for all analysis stuff made in pre-einstein revamp versionallen2002-05-04
| | | | git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinInitialData/IDAnalyticBH/trunk@106 6a3ddf76-46e1-4315-99d9-bc56cac1ef84
* Added a reference.pollney2002-05-02
| | | | git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinInitialData/IDAnalyticBH/trunk@105 6a3ddf76-46e1-4315-99d9-bc56cac1ef84
* tiding and changing routine name to avoid clashesallen2002-04-30
| | | | git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinInitialData/IDAnalyticBH/trunk@104 6a3ddf76-46e1-4315-99d9-bc56cac1ef84
* New doc from Denisallen2002-04-29
| | | | git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinInitialData/IDAnalyticBH/trunk@103 6a3ddf76-46e1-4315-99d9-bc56cac1ef84
* Removing old dependency on InitialEinstein.goodale2002-04-28
| | | | | | | Tom git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinInitialData/IDAnalyticBH/trunk@102 6a3ddf76-46e1-4315-99d9-bc56cac1ef84
* Set conformal_state to 1 if only the conformal factor is being initialised.goodale2002-04-26
| | | | | | | Tom git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinInitialData/IDAnalyticBH/trunk@101 6a3ddf76-46e1-4315-99d9-bc56cac1ef84
* Removing some excess code I accidently left in.goodale2002-04-26
| | | | | | | Tom git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinInitialData/IDAnalyticBH/trunk@100 6a3ddf76-46e1-4315-99d9-bc56cac1ef84
* Just spotted that Schwarzschild does calculate the second derivatives, sogoodale2002-04-26
| | | | | | | | | now set the conformal_state appropriately. Tom git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinInitialData/IDAnalyticBH/trunk@99 6a3ddf76-46e1-4315-99d9-bc56cac1ef84
* Converted to use new metric_type and conformal_storage variables.goodale2002-04-26
| | | | | | | | | | | | The thorns calculate the appropriate number of derivatives and set the conformal_state variable appropriately - note that currently there is no code to do second derivatives of Schwarzschild, so this sets the conformal_state to a maximum of 2 (i.e. factor and first derivatives). Tom git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinInitialData/IDAnalyticBH/trunk@98 6a3ddf76-46e1-4315-99d9-bc56cac1ef84
* Adding Pughslab and pughreduce to example parameter files missing thesegoodale2002-01-17
| | | | | | | | | but using ioascii or iobasic respectively. Tom git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinInitialData/IDAnalyticBH/trunk@95 6a3ddf76-46e1-4315-99d9-bc56cac1ef84
* Remove compiler warning on originallen2002-01-05
| | | | git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinInitialData/IDAnalyticBH/trunk@94 6a3ddf76-46e1-4315-99d9-bc56cac1ef84
* little more documentation on initial data solutionsallen2001-12-29
| | | | git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinInitialData/IDAnalyticBH/trunk@93 6a3ddf76-46e1-4315-99d9-bc56cac1ef84
* Formatting changesallen2001-10-21
| | | | git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinInitialData/IDAnalyticBH/trunk@92 6a3ddf76-46e1-4315-99d9-bc56cac1ef84