aboutsummaryrefslogtreecommitdiff
path: root/src/InitSymBound.F
blob: d077848d5f5e112977928620e88a4c86f0c667f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
 /*@@
   @file    InitSymBound.F
   @date    
   @author  Gabrielle Allen
   @desc
            Sets the symmetries across the coordinate axes
   @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_ARGUMENTS)

      implicit none
      
      DECLARE_CCTK_ARGUMENTS 

      INTEGER :: ierr
      INTEGER, DIMENSION(3) :: sym = 1

      call SetCartSymVN(ierr, cctkGH, sym, 'wavetoy::phi')

      end subroutine WaveToyF90_InitSymbound