aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorknarf <knarf@1bdb13ef-5d69-4035-bb54-08abeb3aa7f1>2010-04-22 21:50:33 +0000
committerknarf <knarf@1bdb13ef-5d69-4035-bb54-08abeb3aa7f1>2010-04-22 21:50:33 +0000
commitaf52710c3619dbab9ddc6cd295cbe57663f7825c (patch)
tree9f1a562b17dfa70d8e6cd11cac3dc0c8b02c6eb2
parent35f12f9f8d784d2a442945b9752c8c732047eece (diff)
thorn name change
git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinInitialData/TOVSolver/trunk@107 1bdb13ef-5d69-4035-bb54-08abeb3aa7f1
-rw-r--r--README4
-rw-r--r--doc/documentation.tex4
-rw-r--r--interface.ccl4
-rw-r--r--param.ccl4
-rw-r--r--src/external.inc8
-rw-r--r--src/tov.c8
-rw-r--r--test/test_one_boost_max.par16
-rw-r--r--test/test_one_static_max.par10
-rw-r--r--test/test_tov_carpet.par10
-rw-r--r--test/test_two_av.par24
-rw-r--r--test/test_two_max.par24
11 files changed, 58 insertions, 58 deletions
diff --git a/README b/README
index b11abab..302407b 100644
--- a/README
+++ b/README
@@ -1,11 +1,11 @@
-Cactus Code Thorn Whisky_TOVSolverC
+Cactus Code Thorn TOVSolver
Author(s) : Ian Hawke
Frank Löffler
Luca Baiotti
Christian David Ott
Erik Schnetter
Bruno Giacomazzo
-Maintainer(s): Whisky developers team
+Maintainer(s): Einstein Toolkit
Licence : GPLv2+
--------------------------------------------------------------------------
diff --git a/doc/documentation.tex b/doc/documentation.tex
index f3c9fd1..d84d659 100644
--- a/doc/documentation.tex
+++ b/doc/documentation.tex
@@ -89,7 +89,7 @@
%A.~Nagar \textless alessandro.nagar@polito.it\textgreater}
% The title of the document (not necessarily the name of the Thorn)
-\title{Whisky\_TOVSolverC}
+\title{TOVSolver}
% the date your document was last changed, if your document is in CVS,
% please use:
@@ -359,7 +359,7 @@ C.W.~Misner, K.S.~Thorn and J.A.~Wheeler, Gravitation (Freeman and co. NY, 1973)
%
\bibitem{Baumgarte-file}
T.~W. Baumgarte. There is a copy of his notes in this directory: \\
-Whisky\_Dev/Whisky\_TOVSolverC/doc.
+TOVSolver/doc.
%
\bibitem{Font00a}
J.~A. Font, M. Miller, W. Suen and M. Tobias, Phys. Rev. {\bf D61},
diff --git a/interface.ccl b/interface.ccl
index ccd7415..81a4800 100644
--- a/interface.ccl
+++ b/interface.ccl
@@ -1,6 +1,6 @@
-# Interface definition for thorn TOVSolverC
+# Interface definition for thorn TOVSolver
-implements: WhiskyTOVSolver
+implements: TOVSolver
inherits: Whisky, Constants
USES INCLUDE: constants.h
diff --git a/param.ccl b/param.ccl
index 2f9ff3f..3641cce 100644
--- a/param.ccl
+++ b/param.ccl
@@ -7,10 +7,10 @@ CCTK_INT TOV_Num_TOVs "The number of TOVs"
CCTK_INT TOV_Solve_for_TOVs "Solve for TOVs even if no TOV initial data was requested?"
{
- 0:3 :: "depreciated in favour of Whisky_TOVSolverC::TOV_Enforce_Interpolation"
+ 0:3 :: "depreciated in favour of TOVSolver::TOV_Enforce_Interpolation"
} 3
-BOOLEAN TOV_Enforce_Interpolation "Enforce the interpolation of the data onto the Whisky GFs even without tov as specified initial data" STEERABLE=always
+BOOLEAN TOV_Enforce_Interpolation "Enforce the interpolation of the data onto the Hydro GFs even without tov as specified initial data" STEERABLE=always
{
} "no"
diff --git a/src/external.inc b/src/external.inc
index 071c326..f6c48fa 100644
--- a/src/external.inc
+++ b/src/external.inc
@@ -65,7 +65,7 @@ CCTK_INT TOV_Set_Rho_ADM(CCTK_POINTER_TO_CONST cctkGH,
assert(TOV_phi_1d!=0);
assert(TOV_m_1d!=0);
- /* CCTK_INFO("Request for Sources from TOVSolverC"); */
+ /* CCTK_INFO("Request for Sources from TOVSolver"); */
/* TOV_debug_input_points(size,x,y,z); */
/* loop over all points we got */
@@ -136,7 +136,7 @@ CCTK_INT TOV_Set_Momentum_Source(
assert(TOV_phi_1d!=0);
assert(TOV_m_1d!=0);
- /* CCTK_INFO("Request for Momentum-Sources from TOVSolverC"); */
+ /* CCTK_INFO("Request for Momentum-Sources from TOVSolver"); */
/* loop over all points we got */
for (i=0; i<size; i++)
@@ -207,7 +207,7 @@ CCTK_INT TOV_Set_Initial_Guess_for_u(
assert(TOV_phi_1d!=0);
assert(TOV_m_1d!=0);
- CCTK_INFO("Using initial guess from TOVSolverC");
+ CCTK_INFO("Using initial guess from TOVSolver");
/* TOV_debug_input_points(size,x,y,z); */
/* loop over all points we got */
@@ -578,7 +578,7 @@ CCTK_INT TOV_Rescale_Sources(
fclose(debugfile);
switch(*(const CCTK_INT*)CCTK_ParameterGet("TOV_Populate_Timelevels",
- "Whisky_TOVSolverC", &type))
+ "TOVSolver", &type))
{
case 3:
TOV_Copy(size, rho_p_p, rho);
diff --git a/src/tov.c b/src/tov.c
index cd7fedc..e71df5d 100644
--- a/src/tov.c
+++ b/src/tov.c
@@ -66,7 +66,7 @@ void TOV_C_ParamCheck(CCTK_ARGUMENTS)
CCTK_WARN(1, "TOV_Solve_for_TOVs is depreciated. "
"Use TOV_Enforce_Interpolation=\"yes\" instead.\n");
if (CCTK_ParameterSet("TOV_Enforce_Interpolation",
- "Whisky_TOVSolverC",
+ "TOVSolver",
"true"))
CCTK_WARN(0, "Error while steering this parameter.\n");
else
@@ -989,7 +989,7 @@ void TOV_C_Exact(CCTK_ARGUMENTS)
void TOV_Prepare_Fake_Evolution(CCTK_ARGUMENTS)
{
if (CCTK_ParameterSet("TOV_Populate_Timelevels",
- "Whisky_TOVSolverC",
+ "TOVSolver",
"1"))
CCTK_WARN(0,
"Could not prepare for fake evolution - steering failed\n");
@@ -1034,10 +1034,10 @@ void TOV_Set_ProperPositions(CCTK_ARGUMENTS)
if (CCTK_ParameterSet("par_b", "TwoPunctures", tmp))
CCTK_WARN(0, "Could not set par_b");
snprintf(tmp, 1023, "%g", TOV_Position_x[0] * factor);
- if (CCTK_ParameterSet("TOV_Position_x[0]", "Whisky_TOVSolverC", tmp))
+ if (CCTK_ParameterSet("TOV_Position_x[0]", "TOVSolver", tmp))
CCTK_WARN(0, "Could not set x[0]");
snprintf(tmp, 1023, "%g", TOV_Position_x[1] * factor);
- if (CCTK_ParameterSet("TOV_Position_x[1]", "Whisky_TOVSolverC", tmp))
+ if (CCTK_ParameterSet("TOV_Position_x[1]", "TOVSolver", tmp))
CCTK_WARN(0, "Could not set x[1]");
// printf("proper distance: %g, coordinate distance: %g\n", prop_dist, coord_dist);
diff --git a/test/test_one_boost_max.par b/test/test_one_boost_max.par
index 1b9b7cf..847b5c0 100644
--- a/test/test_one_boost_max.par
+++ b/test/test_one_boost_max.par
@@ -1,4 +1,4 @@
-ActiveThorns = "time MoL pugh pughreduce pughslab coordbase symbase cartgrid3d ioutil ioascii iobasic boundary admbase staticconformal spacemask admcoupling coordgauge admmacros hydrobase whisky whisky_init_data whisky_tovsolverc nanchecker eos_base eos_ideal_fluid eos_polytrope bssn_mol admconstraints Constants LocalReduce TmunuBase InitBase"
+ActiveThorns = "time MoL pugh pughreduce pughslab coordbase symbase cartgrid3d ioutil ioascii iobasic boundary admbase staticconformal spacemask admcoupling coordgauge admmacros hydrobase grhydro grhydro_initdata tovsolver nanchecker eos_base eos_idealfluid eos_polytrope bssn_mol admconstraints Constants LocalReduce TmunuBase InitBase"
TmunuBase::stress_energy_storage = yes
TmunuBase::stress_energy_at_RHS = yes
@@ -47,13 +47,13 @@ ADMBase::initial_data = "tov"
ADMBase::initial_lapse = "tov"
ADMBase::initial_shift = "tov"
-whiskytovsolver::TOV_Rho_Central[0] = 1.28e-3
-whiskytovsolver::TOV_Gamma[0] = 2.0
-whiskytovsolver::TOV_K[0] = 100.0
-whiskytovsolver::TOV_Velocity_x[0] = 0.1
-whiskytovsolver::TOV_Velocity_y[0] = 0.2
-whiskytovsolver::TOV_Velocity_z[0] = 0.3
-whiskytovsolver::TOV_Combine_Method = "maximum"
+tovsolver::TOV_Rho_Central[0] = 1.28e-3
+tovsolver::TOV_Gamma[0] = 2.0
+tovsolver::TOV_K[0] = 100.0
+tovsolver::TOV_Velocity_x[0] = 0.1
+tovsolver::TOV_Velocity_y[0] = 0.2
+tovsolver::TOV_Velocity_z[0] = 0.3
+tovsolver::TOV_Combine_Method = "maximum"
EOS_Polytrope::eos_gamma = 2.0
EOS_Polytrope::eos_k = 100.0
diff --git a/test/test_one_static_max.par b/test/test_one_static_max.par
index 182b56e..aea3cef 100644
--- a/test/test_one_static_max.par
+++ b/test/test_one_static_max.par
@@ -1,4 +1,4 @@
-ActiveThorns = "time MoL pugh pughreduce pughslab coordbase symbase cartgrid3d ioutil ioascii iobasic boundary admbase staticconformal spacemask admcoupling coordgauge admmacros hydrobase whisky whisky_init_data whisky_tovsolverc nanchecker eos_base eos_ideal_fluid eos_polytrope bssn_mol admconstraints Constants LocalReduce TmunuBase InitBase"
+ActiveThorns = "time MoL pugh pughreduce pughslab coordbase symbase cartgrid3d ioutil ioascii iobasic boundary admbase staticconformal spacemask admcoupling coordgauge admmacros hydrobase grhydro grhydro_initdata tovsolver nanchecker eos_base eos_idealfluid eos_polytrope bssn_mol admconstraints Constants LocalReduce TmunuBase InitBase"
TmunuBase::stress_energy_storage = yes
TmunuBase::stress_energy_at_RHS = yes
@@ -47,10 +47,10 @@ ADMBase::initial_data = "tov"
ADMBase::initial_lapse = "tov"
ADMBase::initial_shift = "tov"
-whiskytovsolver::TOV_Rho_Central[0] = 1.28e-3
-whiskytovsolver::TOV_Gamma[0] = 2.0
-whiskytovsolver::TOV_K[0] = 100.0
-whiskytovsolver::TOV_Combine_Method = "maximum"
+tovsolver::TOV_Rho_Central[0] = 1.28e-3
+tovsolver::TOV_Gamma[0] = 2.0
+tovsolver::TOV_K[0] = 100.0
+tovsolver::TOV_Combine_Method = "maximum"
EOS_Polytrope::eos_gamma = 2.0
EOS_Polytrope::eos_k = 100.0
diff --git a/test/test_tov_carpet.par b/test/test_tov_carpet.par
index 0a3ce9e..28feb64 100644
--- a/test/test_tov_carpet.par
+++ b/test/test_tov_carpet.par
@@ -1,5 +1,5 @@
!DESC "Carpet unigrid, one TOV"
-ActiveThorns = "time MoL coordbase symbase cartgrid3d ioutil boundary admbase staticconformal spacemask admcoupling coordgauge admmacros hydrobase whisky whisky_init_data whisky_tovsolverc eos_base eos_ideal_fluid eos_polytrope bssn_mol admconstraints Constants LocalReduce Carpet CarpetLib CarpetInterp CarpetReduce CarpetIOScalar CarpetIOBasic LoopControl TmunuBase InitBase"
+ActiveThorns = "time MoL coordbase symbase cartgrid3d ioutil boundary admbase staticconformal spacemask admcoupling coordgauge admmacros hydrobase grhydro grhydro_initdata tovsolver eos_base eos_idealfluid eos_polytrope bssn_mol admconstraints Constants LocalReduce Carpet CarpetLib CarpetInterp CarpetReduce CarpetIOScalar CarpetIOBasic LoopControl TmunuBase InitBase"
TmunuBase::stress_energy_storage = yes
TmunuBase::stress_energy_at_RHS = yes
@@ -58,10 +58,10 @@ ADMBase::initial_data = "tov"
ADMBase::initial_lapse = "tov"
ADMBase::initial_shift = "tov"
-whiskytovsolver::TOV_Rho_Central[0] = 1.28e-3
-whiskytovsolver::TOV_Gamma[0] = 2.0
-whiskytovsolver::TOV_K[0] = 100.0
-whiskytovsolver::TOV_Combine_Method = "maximum"
+tovsolver::TOV_Rho_Central[0] = 1.28e-3
+tovsolver::TOV_Gamma[0] = 2.0
+tovsolver::TOV_K[0] = 100.0
+tovsolver::TOV_Combine_Method = "maximum"
EOS_Polytrope::eos_gamma = 2.0
EOS_Polytrope::eos_k = 100.0
diff --git a/test/test_two_av.par b/test/test_two_av.par
index 92d6cc9..cd10a61 100644
--- a/test/test_two_av.par
+++ b/test/test_two_av.par
@@ -1,4 +1,4 @@
-ActiveThorns = "time MoL pugh pughreduce pughslab coordbase symbase cartgrid3d ioutil ioascii iobasic boundary admbase staticconformal spacemask admcoupling coordgauge admmacros hydrobase whisky whisky_init_data whisky_tovsolverc nanchecker eos_base eos_ideal_fluid eos_polytrope bssn_mol admconstraints constants LocalReduce TmunuBase InitBase"
+ActiveThorns = "time MoL pugh pughreduce pughslab coordbase symbase cartgrid3d ioutil ioascii iobasic boundary admbase staticconformal spacemask admcoupling coordgauge admmacros hydrobase grhydro grhydro_initdata tovsolver nanchecker eos_base eos_idealfluid eos_polytrope bssn_mol admconstraints constants LocalReduce TmunuBase InitBase"
TmunuBase::stress_energy_storage = yes
TmunuBase::stress_energy_at_RHS = yes
@@ -47,19 +47,19 @@ ADMBase::initial_data = "tov"
ADMBase::initial_lapse = "tov"
ADMBase::initial_shift = "tov"
-whiskytovsolver::TOV_Num_TOVs = 2
-whiskytovsolver::TOV_Num_Radial = 200000
-whiskytovsolver::TOV_Combine_Method = "average"
+tovsolver::TOV_Num_TOVs = 2
+tovsolver::TOV_Num_Radial = 200000
+tovsolver::TOV_Combine_Method = "average"
-whiskytovsolver::TOV_Rho_Central[0] = 0.16e-3
-whiskytovsolver::TOV_Gamma[0] = 2.0
-whiskytovsolver::TOV_K[0] = 100.0
-whiskytovsolver::TOV_Position_x[0] = -15.0
+tovsolver::TOV_Rho_Central[0] = 0.16e-3
+tovsolver::TOV_Gamma[0] = 2.0
+tovsolver::TOV_K[0] = 100.0
+tovsolver::TOV_Position_x[0] = -15.0
-whiskytovsolver::TOV_Rho_Central[1] = 0.32e-3
-whiskytovsolver::TOV_Gamma[1] = 2.0
-whiskytovsolver::TOV_K[1] = 100.0
-whiskytovsolver::TOV_Position_x[1] = 15.0
+tovsolver::TOV_Rho_Central[1] = 0.32e-3
+tovsolver::TOV_Gamma[1] = 2.0
+tovsolver::TOV_K[1] = 100.0
+tovsolver::TOV_Position_x[1] = 15.0
EOS_Polytrope::eos_gamma = 2.0
EOS_Polytrope::eos_k = 100.0
diff --git a/test/test_two_max.par b/test/test_two_max.par
index df59796..095ce74 100644
--- a/test/test_two_max.par
+++ b/test/test_two_max.par
@@ -1,4 +1,4 @@
-ActiveThorns = "time MoL pugh pughreduce pughslab coordbase symbase cartgrid3d ioutil ioascii iobasic boundary admbase staticconformal spacemask admcoupling coordgauge admmacros hydrobase whisky whisky_init_data whisky_tovsolverc nanchecker eos_base eos_ideal_fluid eos_polytrope bssn_mol admconstraints constants LocalReduce TmunuBase InitBase"
+ActiveThorns = "time MoL pugh pughreduce pughslab coordbase symbase cartgrid3d ioutil ioascii iobasic boundary admbase staticconformal spacemask admcoupling coordgauge admmacros hydrobase grhydro grhydro_initdata tovsolver nanchecker eos_base eos_idealfluid eos_polytrope bssn_mol admconstraints constants LocalReduce TmunuBase InitBase"
TmunuBase::stress_energy_storage = yes
TmunuBase::stress_energy_at_RHS = yes
@@ -47,19 +47,19 @@ ADMBase::initial_data = "tov"
ADMBase::initial_lapse = "tov"
ADMBase::initial_shift = "tov"
-whiskytovsolver::TOV_Num_TOVs = 2
-whiskytovsolver::TOV_Num_Radial = 200000
-whiskytovsolver::TOV_Combine_Method = "maximum"
+tovsolver::TOV_Num_TOVs = 2
+tovsolver::TOV_Num_Radial = 200000
+tovsolver::TOV_Combine_Method = "maximum"
-whiskytovsolver::TOV_Rho_Central[0] = 0.16e-3
-whiskytovsolver::TOV_Gamma[0] = 2.0
-whiskytovsolver::TOV_K[0] = 100.0
-whiskytovsolver::TOV_Position_x[0] = -15.0
+tovsolver::TOV_Rho_Central[0] = 0.16e-3
+tovsolver::TOV_Gamma[0] = 2.0
+tovsolver::TOV_K[0] = 100.0
+tovsolver::TOV_Position_x[0] = -15.0
-whiskytovsolver::TOV_Rho_Central[1] = 0.32e-3
-whiskytovsolver::TOV_Gamma[1] = 2.0
-whiskytovsolver::TOV_K[1] = 100.0
-whiskytovsolver::TOV_Position_x[1] = 15.0
+tovsolver::TOV_Rho_Central[1] = 0.32e-3
+tovsolver::TOV_Gamma[1] = 2.0
+tovsolver::TOV_K[1] = 100.0
+tovsolver::TOV_Position_x[1] = 15.0
EOS_Polytrope::eos_gamma = 2.0
EOS_Polytrope::eos_k = 100.0