aboutsummaryrefslogtreecommitdiff
path: root/param.ccl
diff options
context:
space:
mode:
authorbaiotti <baiotti@54511f98-0e4f-0410-826e-eb8b393f5a1e>2005-10-12 15:39:42 +0000
committerbaiotti <baiotti@54511f98-0e4f-0410-826e-eb8b393f5a1e>2005-10-12 15:39:42 +0000
commita770662a2f1becd61ab39302aa5636b7a9771427 (patch)
tree4e451bd62dce2d1e3d1f1cc611e162b45e112933 /param.ccl
parentbd0fc470a7c3c64f5a14dc021b2d39fbd431a45d (diff)
- make results independent from the number of processors (not yet finished)
- change some parameter names, so that, to me, they are more clear (debatable) - add another way of setting the integration surface position - move constant divisions out of the loops - modify info messages git-svn-id: http://svn.aei.mpg.de/numrel/AEIThorns/ADMMass/trunk@4 54511f98-0e4f-0410-826e-eb8b393f5a1e
Diffstat (limited to 'param.ccl')
-rw-r--r--param.ccl36
1 files changed, 23 insertions, 13 deletions
diff --git a/param.ccl b/param.ccl
index 51a01e2..f2337a7 100644
--- a/param.ccl
+++ b/param.ccl
@@ -6,59 +6,69 @@ CCTK_INT ADMMass_number "number of measurements" STEERABLE=ALWAYS
0: :: "0 or positive"
} 1
-CCTK_REAL ADMMass_x_min[100] "x_min" STEERABLE=ALWAYS
+CCTK_REAL ADMMass_x_min[100] "x position of the leftmost yz-plane for the integration box" STEERABLE=ALWAYS
{
: :: "anything"
} -100.0
-CCTK_REAL ADMMass_x_max[100] "x_max" STEERABLE=ALWAYS
+CCTK_REAL ADMMass_x_max[100] "x position of the righttmost yz-plane for the integration box" STEERABLE=ALWAYS
{
: :: "anything"
} 100.0
-CCTK_REAL ADMMass_y_min[100] "y_min" STEERABLE=ALWAYS
+CCTK_REAL ADMMass_y_min[100] "y position of the leftmost xz-plane for the integration box" STEERABLE=ALWAYS
{
: :: "anything"
} -100.0
-CCTK_REAL ADMMass_y_max[100] "y_max" STEERABLE=ALWAYS
+CCTK_REAL ADMMass_y_max[100] "y position of the rightmost xz-plane for the integration box" STEERABLE=ALWAYS
{
: :: "anything"
} 100.0
-CCTK_REAL ADMMass_z_min[100] "z_min" STEERABLE=ALWAYS
+CCTK_REAL ADMMass_z_min[100] "z position of the leftmost xy-plane for the integration box" STEERABLE=ALWAYS
{
: :: "anything"
} -100.0
-CCTK_REAL ADMMass_z_max[100] "z_max" STEERABLE=ALWAYS
+CCTK_REAL ADMMass_z_max[100] "z position of the rightmost xy-plane for the integration box" STEERABLE=ALWAYS
{
: :: "anything"
} 100.0
-CCTK_REAL ADMMass_x_pos[100] "x_pos" STEERABLE=ALWAYS
+CCTK_REAL ADMMass_x_pos[100] "x position of the center of the integration box" STEERABLE=ALWAYS
{
: :: "anything"
} 0.0
-CCTK_REAL ADMMass_y_pos[100] "y_pos" STEERABLE=ALWAYS
+CCTK_REAL ADMMass_y_pos[100] "y position of the center of the integration box" STEERABLE=ALWAYS
{
: :: "anything"
} 0.0
-CCTK_REAL ADMMass_z_pos[100] "z_pos" STEERABLE=ALWAYS
+CCTK_REAL ADMMass_z_pos[100] "z position of the center of the integration box" STEERABLE=ALWAYS
{
: :: "anything"
} 0.0
-CCTK_REAL ADMMass_boundary_distance[100] "distance to boundary" STEERABLE=ALWAYS
+CCTK_REAL ADMMass_distance_from_grid_boundary[100] "distance between the grid boundaries and the surface of the integration box" STEERABLE=ALWAYS
{
: :: "<=0 for disable, positive otherwise"
} -1.0
-CCTK_REAL ADMMass_volume_radius[100] "radius of volume extraction" STEERABLE=ALWAYS
+
+CCTK_REAL ADMMass_surface_distance[100] "distance between the above-defined center of the integration (cubic) box and its surface" STEERABLE=ALWAYS
+{
+ : :: "<=0 for disable, positive otherwise"
+} -1.0
+
+CCTK_REAL ADMMass_volume_radius[100] "radius of the sphere inside which the volume integral is computed" STEERABLE=ALWAYS
{
: :: "<=0 for disable, positive otherwise"
} -1.0
-BOOLEAN ADMMass_use_boundary_distance_as_volume_radius "Use ADMMass_boundary_distance insteat of ADMMass_volume_radius" STEERABLE=ALWAYS
+BOOLEAN ADMMass_use_surface_distance_as_volume_radius "Use ADMMass_surface_distance instead of ADMMass_volume_radius" STEERABLE=ALWAYS
{
} "yes"
-BOOLEAN ADMMass_Excise_Horizons "Do not calculate the volume integral inside AHs" STEERABLE=ALWAYS
+BOOLEAN ADMMass_use_all_volume_as_volume_radius "Use ADMMass_distance_from_grid_boundary instead of ADMMass_volume_radius" STEERABLE=ALWAYS
+{
+} "no"
+
+BOOLEAN ADMMass_Excise_Horizons "Should we calculate the volume integral inside AHs?" STEERABLE=ALWAYS
{
} "no"