aboutsummaryrefslogtreecommitdiff
path: root/Examples/wave_sine.par
diff options
context:
space:
mode:
authorIan Hinder <ian.hinder@aei.mpg.de>2011-11-28 23:26:16 +0100
committerIan Hinder <ian.hinder@aei.mpg.de>2011-11-29 00:02:06 +0100
commit0fae31f1f74a6de36bf7327837c722cf09b5340e (patch)
tree104ef0283a5817ef3da766551f9662f4aab2e2b2 /Examples/wave_sine.par
parent2c19a5e9033fd37b91274fbcd0e9928b87e596ad (diff)
wave_sine.par: Increase ghost and boundary size to 2
This is necessary because Kranc checks that you have enough ghost and boundary points for all the finite difference operators you use, and the boundary condition calculation uses PDonesided2nd, which requires a ghost size of 2. Given how this is used, it almost certainly can be used with a smaller ghost size, but the check in Kranc does not know this.
Diffstat (limited to 'Examples/wave_sine.par')
-rw-r--r--Examples/wave_sine.par14
1 files changed, 7 insertions, 7 deletions
diff --git a/Examples/wave_sine.par b/Examples/wave_sine.par
index e28a05c..7a4e2df 100644
--- a/Examples/wave_sine.par
+++ b/Examples/wave_sine.par
@@ -6,16 +6,16 @@ ActiveThorns = "IOUtil Carpet CarpetLib CarpetSlab CoordBase CoordBase SymBase C
CoordBase::domainsize = minmax
-CoordBase::boundary_size_x_lower = 1
-CoordBase::boundary_size_y_lower = 1
-CoordBase::boundary_size_z_lower = 1
+CoordBase::boundary_size_x_lower = 2
+CoordBase::boundary_size_y_lower = 2
+CoordBase::boundary_size_z_lower = 2
CoordBase::boundary_shiftout_x_lower = 1
CoordBase::boundary_shiftout_y_lower = 1
CoordBase::boundary_shiftout_z_lower = 1
-CoordBase::boundary_size_x_upper = 1
-CoordBase::boundary_size_y_upper = 1
-CoordBase::boundary_size_z_upper = 1
+CoordBase::boundary_size_x_upper = 2
+CoordBase::boundary_size_y_upper = 2
+CoordBase::boundary_size_z_upper = 2
CoordBase::boundary_shiftout_x_upper = 0
CoordBase::boundary_shiftout_y_upper = 0
CoordBase::boundary_shiftout_z_upper = 0
@@ -34,7 +34,7 @@ CoordBase::dx = 0.05
CoordBase::dy = 0.05
CoordBase::dz = 0.05
-driver::ghost_size = 1
+driver::ghost_size = 2
Carpet::domain_from_coordbase = "yes"
Carpet::poison_new_timelevels = "yes"
Carpet::check_for_poison = "no"