aboutsummaryrefslogtreecommitdiff
path: root/CarpetExtra/FOWaveToyF77/src/InitSymBound.F77
blob: 875d5f06c4456cbaf1930eb744d55672860f0394 (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
c	-*-Fortran-*-

 /*@@
   @file    InitSymBound.F77
   @date    
   @author  Gabrielle Allen, Erik Schnetter
   @desc
            Sets the symmetries for Wave Toy
   @enddesc
 @@*/

#include "cctk.h"
#include "cctk_Arguments.h"
#include "cctk_Parameters.h"

 /*@@
   @routine    FOWaveToyF77_InitSymBound
   @date      
   @author     Gabrielle Allen, Erik Schnetter
   @desc 
               Sets the symmetries for Wave Toy
   @enddesc 
   @calls     
   @calledby   
   @history 
 
   @endhistory 

@@*/

      subroutine FOWaveToyF77_InitSymBound (CCTK_ARGUMENTS)
      
      implicit none
      
      DECLARE_CCTK_ARGUMENTS
      DECLARE_CCTK_FUNCTIONS
      DECLARE_CCTK_PARAMETERS

      INTEGER one
      PARAMETER (one = 1)
      INTEGER ierr
      INTEGER sym(3)

      sym(1) = one
      sym(2) = one
      sym(3) = one

      call SetCartSymVN(ierr, cctkGH, sym,'wavetoy::pi')
      call SetCartSymVN(ierr, cctkGH, sym,'wavetoy::phi')
      call SetCartSymVN(ierr, cctkGH, sym,'wavetoy::phix')
      call SetCartSymVN(ierr, cctkGH, sym,'wavetoy::phiy')
      call SetCartSymVN(ierr, cctkGH, sym,'wavetoy::phiz')
      
      end