aboutsummaryrefslogtreecommitdiff
path: root/src/InitSymBound.F90
diff options
context:
space:
mode:
authoryye00 <yye00@daab82bb-f315-4ad1-b6d0-9353ff8b6e27>2005-04-29 21:48:33 +0000
committeryye00 <yye00@daab82bb-f315-4ad1-b6d0-9353ff8b6e27>2005-04-29 21:48:33 +0000
commitcc9521292cf24cca824d5573e66dfa7cd8c1eb6f (patch)
tree44c2c5af3413dbb5231d34817e9309459794c772 /src/InitSymBound.F90
parent4b95038531a96c4f7dc48b25cf44287e90f505cf (diff)
accidentally wiped the file with a bad substitution
git-svn-id: http://svn.cactuscode.org/arrangements/CactusWave/WaveToyFreeF90/trunk@77 daab82bb-f315-4ad1-b6d0-9353ff8b6e27
Diffstat (limited to 'src/InitSymBound.F90')
-rw-r--r--src/InitSymBound.F9039
1 files changed, 39 insertions, 0 deletions
diff --git a/src/InitSymBound.F90 b/src/InitSymBound.F90
index e69de29..8822a73 100644
--- a/src/InitSymBound.F90
+++ b/src/InitSymBound.F90
@@ -0,0 +1,39 @@
+ /*@@
+ @file InitSymBound.F90
+ @date
+ @author Gabrielle Allen
+ @desc
+ Sets the symmetries across the coordinate axes
+ @enddesc
+ @@*/
+
+#include "cctk.h"
+#include "cctk_Arguments.h"
+
+ /*@@
+ @routine WaveToyFreeF90_InitSymBound
+ @date
+ @author Gabrielle Allen
+ @desc
+ Sets the symmetries for Wave Toy
+ @enddesc
+ @calls
+ @calledby
+ @history
+
+ @endhistory
+
+@@*/
+
+subroutine WaveToyFreeF90_InitSymBound(CCTK_ARGUMENTS)
+
+ implicit none
+
+ DECLARE_CCTK_ARGUMENTS
+
+ INTEGER :: ierr
+ INTEGER, DIMENSION(3) :: sym = 1
+
+ call SetCartSymVN(ierr, cctkGH, sym, 'wavetoy::phi')
+
+end subroutine WaveToyFreeF90_InitSymbound