aboutsummaryrefslogtreecommitdiff
path: root/Carpet/CarpetMask/src
diff options
context:
space:
mode:
authorErik Schnetter <schnetter@cct.lsu.edu>2007-04-21 04:52:00 +0000
committerErik Schnetter <schnetter@cct.lsu.edu>2007-04-21 04:52:00 +0000
commitc0aa147090c411252a39e6b787fcd984061ee5b8 (patch)
treece9829b642bb791a3eb934ae7e7fea3572971be3 /Carpet/CarpetMask/src
parent3e8f354f6b9881f54a3c7c8eb41f4d9f52cf3c1a (diff)
CarpetMask: New thorn
CarpetMask allows removing certain regions from Carpet's reduction operators. This can be used to excise punctures or other unwanted features. darcs-hash:20070421045211-dae7b-90791ae8ab35f639b8873144fd66f2587cc5e068.gz
Diffstat (limited to 'Carpet/CarpetMask/src')
-rw-r--r--Carpet/CarpetMask/src/make.code.defn7
-rw-r--r--Carpet/CarpetMask/src/mask_excluded.cc69
-rw-r--r--Carpet/CarpetMask/src/mask_excluded.hh11
-rw-r--r--Carpet/CarpetMask/src/mask_surface.cc100
-rw-r--r--Carpet/CarpetMask/src/mask_surface.hh11
5 files changed, 198 insertions, 0 deletions
diff --git a/Carpet/CarpetMask/src/make.code.defn b/Carpet/CarpetMask/src/make.code.defn
new file mode 100644
index 000000000..92d82ef80
--- /dev/null
+++ b/Carpet/CarpetMask/src/make.code.defn
@@ -0,0 +1,7 @@
+# Main make.code.defn file for thorn CarpetMask
+
+# Source files in this directory
+SRCS = mask_excluded.cc mask_surface.cc
+
+# Subdirectories containing source files
+SUBDIRS =
diff --git a/Carpet/CarpetMask/src/mask_excluded.cc b/Carpet/CarpetMask/src/mask_excluded.cc
new file mode 100644
index 000000000..97268ef42
--- /dev/null
+++ b/Carpet/CarpetMask/src/mask_excluded.cc
@@ -0,0 +1,69 @@
+#include <cmath>
+
+#include <cctk.h>
+#include <cctk_Arguments.h>
+#include <cctk_Parameters.h>
+
+#include "mask_excluded.hh"
+
+
+
+namespace CarpetMask {
+
+ using namespace std;
+
+
+
+ /**
+ * Set the weight in the excluded regions to zero.
+ */
+
+ void
+ CarpetExcludedSetup (CCTK_ARGUMENTS)
+ {
+ DECLARE_CCTK_ARGUMENTS;
+ DECLARE_CCTK_PARAMETERS;
+
+ CCTK_REAL * const weight =
+ static_cast <CCTK_REAL *>
+ (CCTK_VarDataPtr (cctkGH, 0, "CarpetReduce::weight"));
+
+ if (not weight) {
+ CCTK_WARN (CCTK_WARN_ABORT,
+ "CarpetReduce is not active, or CarpetReduce::mask does not have storage");
+ }
+
+ for (int n = 0; n < 10; ++ n) {
+
+ CCTK_REAL const r0 = excluded_radius[n];
+ if (r0 >= 0.0) {
+
+ CCTK_REAL const x0 = excluded_centre_x[n];
+ CCTK_REAL const y0 = excluded_centre_y[n];
+ CCTK_REAL const z0 = excluded_centre_z[n];
+
+ CCTK_REAL const r2 = pow (r0, 2);
+
+ for (int k = 0; k < cctk_lsh[2]; ++ k) {
+ for (int j = 0; j < cctk_lsh[1]; ++ j) {
+ for (int i = 0; i < cctk_lsh[0]; ++ i) {
+ int const ind = CCTK_GFINDEX3D (cctkGH, i, j, k);
+
+ CCTK_REAL const dx2 = pow (x[ind] - x0, 2);
+ CCTK_REAL const dy2 = pow (y[ind] - y0, 2);
+ CCTK_REAL const dz2 = pow (z[ind] - z0, 2);
+
+ if (dx2 + dy2 + dz2 <= r2) {
+ weight[ind] = 0.0;
+ }
+
+ }
+ }
+ }
+
+ } // if r>=0
+ } // for n
+
+ }
+
+} // namespace CarpetMask
diff --git a/Carpet/CarpetMask/src/mask_excluded.hh b/Carpet/CarpetMask/src/mask_excluded.hh
new file mode 100644
index 000000000..70edd8e8f
--- /dev/null
+++ b/Carpet/CarpetMask/src/mask_excluded.hh
@@ -0,0 +1,11 @@
+#include <cctk.h>
+#include <cctk_Arguments.h>
+
+namespace CarpetMask {
+
+ extern "C" {
+ void
+ CarpetExcludedSetup (CCTK_ARGUMENTS);
+ }
+
+} // namespace CarpetMask
diff --git a/Carpet/CarpetMask/src/mask_surface.cc b/Carpet/CarpetMask/src/mask_surface.cc
new file mode 100644
index 000000000..667a38643
--- /dev/null
+++ b/Carpet/CarpetMask/src/mask_surface.cc
@@ -0,0 +1,100 @@
+#include <cassert>
+#include <cmath>
+
+#include <cctk.h>
+#include <cctk_Arguments.h>
+#include <cctk_Parameters.h>
+
+#include "mask_surface.hh"
+
+
+
+namespace CarpetMask {
+
+ using namespace std;
+
+
+
+ /**
+ * Set the weight in the excluded regions to zero.
+ */
+
+ void
+ CarpetSurfaceSetup (CCTK_ARGUMENTS)
+ {
+ DECLARE_CCTK_ARGUMENTS;
+ DECLARE_CCTK_PARAMETERS;
+
+ CCTK_REAL * const weight =
+ static_cast <CCTK_REAL *>
+ (CCTK_VarDataPtr (cctkGH, 0, "CarpetReduce::weight"));
+
+ if (not weight) {
+ CCTK_WARN (CCTK_WARN_ABORT,
+ "CarpetReduce is not active, or CarpetReduce::mask does not have storage");
+ }
+
+ for (int n = 0; n < 10; ++ n) {
+
+ int const sn = excluded_surface[n];
+ if (sn >= 0) {
+
+ assert (sn < nsurfaces);
+
+ CCTK_REAL const shrink_factor = excluded_surface_factor[n];
+
+ if (sf_valid[sn] > 0) {
+
+ CCTK_REAL const x0 = sf_origin_x[sn];
+ CCTK_REAL const y0 = sf_origin_y[sn];
+ CCTK_REAL const z0 = sf_origin_z[sn];
+
+ CCTK_REAL const theta0 = sf_origin_theta[sn];
+ CCTK_REAL const phi0 = sf_origin_phi [sn];
+ CCTK_REAL const dtheta = sf_delta_theta[sn];
+ CCTK_REAL const dphi = sf_delta_phi [sn];
+
+ int const ntheta = sf_ntheta[sn];
+ int const nphi = sf_nphi [sn];
+
+ for (int k = 0; k < cctk_lsh[2]; ++ k) {
+ for (int j = 0; j < cctk_lsh[1]; ++ j) {
+ for (int i = 0; i < cctk_lsh[0]; ++ i) {
+ int const ind = CCTK_GFINDEX3D (cctkGH, i, j, k);
+
+ CCTK_REAL const dx = x[ind] - x0;
+ CCTK_REAL const dy = y[ind] - y0;
+ CCTK_REAL const dz = z[ind] - z0;
+
+ CCTK_REAL const rho =
+ sqrt (pow (dx, 2) + pow (dy, 2) + pow (dz, 2));
+ if (rho < 1.0e-12) {
+ // Always excise the surface origin
+ weight[ind] = 0.0;
+ } else {
+ CCTK_REAL const theta = acos (dz / rho);
+ CCTK_REAL const phi = atan2 (dy, dx);
+ int const a = floor ((theta - theta0) / dtheta + 0.5);
+ int const b = floor ((phi - phi0 ) / dphi + 0.5);
+
+ assert (a >= 0 and a < ntheta);
+ assert (b >= 0 and b < nphi );
+
+ CCTK_REAL const dr = sf_radius[a + maxntheta * b];
+ if (rho <= dr * shrink_factor) {
+ weight[ind] = 0.0;
+ }
+ }
+
+ }
+ }
+ }
+
+ } // if surface is valid
+
+ } // if r>=0
+ } // for n
+
+ }
+
+} // namespace CarpetMask
diff --git a/Carpet/CarpetMask/src/mask_surface.hh b/Carpet/CarpetMask/src/mask_surface.hh
new file mode 100644
index 000000000..a3e1f19d0
--- /dev/null
+++ b/Carpet/CarpetMask/src/mask_surface.hh
@@ -0,0 +1,11 @@
+#include <cctk.h>
+#include <cctk_Arguments.h>
+
+namespace CarpetMask {
+
+ extern "C" {
+ void
+ CarpetSurfaceSetup (CCTK_ARGUMENTS);
+ }
+
+} // namespace CarpetMask