aboutsummaryrefslogtreecommitdiff
path: root/src/InitSymBound.F
diff options
context:
space:
mode:
authorallen <allen@f80f6fb6-8356-4fd4-90bc-d84ad503c100>1999-07-29 20:29:17 +0000
committerallen <allen@f80f6fb6-8356-4fd4-90bc-d84ad503c100>1999-07-29 20:29:17 +0000
commit2e79efbd010b598ed77b27f4adb5a0d7162d6c78 (patch)
tree716984eef7f8c9a4bb1b76bd056299354d5986fb /src/InitSymBound.F
parent41bb7119fae5797ed8422cee41c46f7d932145c4 (diff)
This commit was generated by cvs2svn to compensate for changes in r2, which
included commits to RCS files with non-trunk default branches. git-svn-id: http://svn.cactuscode.org/arrangements/CactusWave/WaveToyF90/trunk@3 f80f6fb6-8356-4fd4-90bc-d84ad503c100
Diffstat (limited to 'src/InitSymBound.F')
-rw-r--r--src/InitSymBound.F41
1 files changed, 41 insertions, 0 deletions
diff --git a/src/InitSymBound.F b/src/InitSymBound.F
new file mode 100644
index 0000000..8f1dd64
--- /dev/null
+++ b/src/InitSymBound.F
@@ -0,0 +1,41 @@
+ /*@@
+ @file InitSymBound.F
+ @date
+ @author Gabrielle Allen
+ @desc
+ Sets the symmetries for Wave Toy
+ @enddesc
+ @@*/
+
+#include "cctk.h"
+#include "cctk_arguments.h"
+
+ /*@@
+ @routine WaveToyF90_InitSymBound
+ @date
+ @author Gabrielle Allen
+ @desc
+ Sets the symmetries for Wave Toy
+ @enddesc
+ @calls
+ @calledby
+ @history
+
+ @endhistory
+
+@@*/
+
+ subroutine WaveToyF90_InitSymBound(CCTK_FARGUMENTS)
+
+ implicit none
+
+ DECLARE_CCTK_FARGUMENTS
+
+ INTEGER, DIMENSION(3) :: sym = 1
+
+ call SetCartSymmetry(cctkGH, sym, 'wavetoy::phi')
+
+ return
+
+ end subroutine WaveToyF90_InitSymbound
+