aboutsummaryrefslogtreecommitdiff
path: root/interface.ccl
diff options
context:
space:
mode:
authormiguel <miguel@89daf98e-ef62-4674-b946-b8ff9de2216c>2000-11-21 14:38:27 +0000
committermiguel <miguel@89daf98e-ef62-4674-b946-b8ff9de2216c>2000-11-21 14:38:27 +0000
commit5e2b1830f36258bf29092e3db1038a814f8b8b0f (patch)
tree05f51fadf8fbb52354cd29d5b7874b4c8451984a /interface.ccl
parentfca4cec519a663bdcd438322621ded4dda3628b5 (diff)
Important change for excision. The size of the excision box is now
controlled by global scalars instead of parameters. This makes it much better because this numbers have to change. Before I was just changing the parameters which was causing trouble when recovering from checkpoint. git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinder/trunk@153 89daf98e-ef62-4674-b946-b8ff9de2216c
Diffstat (limited to 'interface.ccl')
-rw-r--r--interface.ccl48
1 files changed, 48 insertions, 0 deletions
diff --git a/interface.ccl b/interface.ccl
index 16c6baf..55dc0d7 100644
--- a/interface.ccl
+++ b/interface.ccl
@@ -6,6 +6,10 @@ implements: ahfinder
inherits: interp einstein grid IO
+##################
+### PUBLIC ###
+##################
+
public:
real ahfindergrid type=GF
@@ -24,6 +28,45 @@ ahmask
} "Grid function for masking"
+###############################
+### Scalars for excision ###
+###############################
+
+real hole1_bounds type=SCALAR
+{
+dhole1_xmin,
+dhole1_ymin,
+dhole1_zmin,
+dhole1_xmax,
+dhole1_ymax,
+dhole1_zmax
+} "Bounds of excision box for hole 1"
+
+real hole2_bounds type=SCALAR
+{
+dhole2_xmin,
+dhole2_ymin,
+dhole2_zmin,
+dhole2_xmax,
+dhole2_ymax,
+dhole2_zmax
+} "Bounds of excision box for hole 2"
+
+real hole3_bounds type=SCALAR
+{
+dhole3_xmin,
+dhole3_ymin,
+dhole3_zmin,
+dhole3_xmax,
+dhole3_ymax,
+dhole3_zmax
+} "Bounds of excision box for hole 3"
+
+
+###################
+### PRIVATE ###
+###################
+
private:
real ahfgradient type=GF
@@ -44,3 +87,8 @@ real find3grid type=GF
ahfgrid3,
ahf_exp3
} "Grid functions to use in find3 algorithm"
+
+
+
+
+