From a770662a2f1becd61ab39302aa5636b7a9771427 Mon Sep 17 00:00:00 2001 From: baiotti Date: Wed, 12 Oct 2005 15:39:42 +0000 Subject: - 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 --- param.ccl | 36 +++++++++++++++++++++++------------- 1 file changed, 23 insertions(+), 13 deletions(-) (limited to 'param.ccl') 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" -- cgit v1.2.3