aboutsummaryrefslogtreecommitdiff
path: root/src/SetSymmetry.c
blob: afefea23d6c1076b1579f70f19f45f1f711771ac (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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
/*@@
   @file      Symmetry.c
   @date      Mon Mar 15 15:09:00 1999
   @author    Gerd Lanfermann
   @desc 
     This file contains the routines for registering and applying symmetry 
     boundary conditions
   @enddesc 
 @@*/

#include <stdlib.h>

#include "cctk.h"
#include "cctk_Parameters.h"
#include "cctk_FortranString.h"
#include "Symmetry.h" 

static const char *rcsid = "$Header$";

CCTK_FILEVERSION(CactusBase_CartGrid3D_SetSymmetry_c)

/********************************************************************
 *********************     Local Data Types   ***********************
 ********************************************************************/

/********************************************************************
 ********************* Local Routine Prototypes *********************
 ********************************************************************/

void DecodeSymParameters3D(int sym[6]);

void CCTK_FCALL CCTK_FNAME(SetCartSymVI)
     (int *ierr, cGH *GH, int *sym, int *vi);
void CCTK_FCALL CCTK_FNAME(SetCartSymVN)
     (int *ierr, cGH *GH, int *sym, ONE_FORTSTRING_ARG);
void CCTK_FCALL CCTK_FNAME(SetCartSymGI)
     (int *ierr, cGH *GH, int *sym, int *gi);
void CCTK_FCALL CCTK_FNAME(SetCartSymGN)
     (int *ierr, cGH *GH, int *sym, ONE_FORTSTRING_ARG);



/********************************************************************
 *********************     External Routines   **********************
 ********************************************************************/

 /*@@
   @routine    SetCartSymmetry
   @date       Mon Mar 15 15:10:58 1999
   @author     Gerd Lanfermann
   @desc 
   This routine sets the GH extension (EinsteinBoundGHex *bGHex), 
   which describes the symmetry  boundary type of each GF. Takes 
   the name of the GF ("implementation::gfname") and the symmetry operators 
   sx,sy,sz and inserts them in the array bGHex. 
   These values will looked up by the application routines SymmetryWrappers
   @enddesc 
   @calls     
   @calledby   
   @history enhanced by E.Schnetter
 
   @endhistory 

@@*/

int SetCartSymVI(cGH *GH, int *sym, int vi) 
{
  
  DECLARE_CCTK_PARAMETERS

  int domainsym[MAX_FACE];
  SymmetryGHex *sGHex;
  int dir;
  
  /* Pointer to the SymmetryGHextension */
  sGHex  = (SymmetryGHex *)GH->extensions[CCTK_GHExtensionHandle("Symmetry")];

  /* Reference the hash table in the GHex and tell it what kind of
     symmetry is being applied 
     (depending on sym and the grid layout) 
     If there is no symmetry necessary,set ESYM_NOSYM
     When we apply a symmetry and find ESYM_UNSET, something went wrong! 
   */

#ifdef SYM_DEBUG
  printf("SetSymmetry: %s   [%d,%d,%d]\n",CCTK_VarName(vi), sym[0],sym[1],sym[2]);
#endif
  
  DecodeSymParameters3D(domainsym);
  for (dir=0; dir<MAX_FACE; ++dir) 
  {
    if (domainsym[dir] == GFSYM_REFLECTION) 
    {
      sGHex->GFSym[vi][dir] = sym[dir/2];
    }
    else if (domainsym[dir] == GFSYM_ROTATION_X) 
    {
      sGHex->GFSym[vi][dir] = sym[1]*sym[2];
    }
    else if (domainsym[dir] == GFSYM_ROTATION_Y) 
    {
      sGHex->GFSym[vi][dir] = sym[0]*sym[2];
    }
    else if (domainsym[dir] == GFSYM_ROTATION_Z) 
    {
      sGHex->GFSym[vi][dir] = sym[0]*sym[1];
    }
    else 
    {
      sGHex->GFSym[vi][dir] = GFSYM_NOSYM;
    }
  }

#ifdef SYM_DEBUG
  printf("SetSymmetry: %s   [%d,%d,%d]\n\n", CCTK_VarName(vi),
	 sGHex->GFSym[vi][0],
	 sGHex->GFSym[vi][2],
	 sGHex->GFSym[vi][4]);
#endif
  return 0;
}

void CCTK_FCALL CCTK_FNAME(SetCartSymVI)
     (int *ierr, cGH *GH, int *sym, int *vi)
{
  *ierr = SetCartSymVI(GH, sym, *vi);
}

 /*@@
   @routine    SetCartSymVN
   @date       Thu May 11 13:32:55 2000
   @author     Gerd Lanfermann
   @desc 
      Applies symmetry boundary conditions from
      variable index
   @enddesc 
   @calls     
   @calledby   
   @history 
 
   @endhistory 

@@*/

int SetCartSymVN(cGH *GH, int *sym, const char *vn) {
  int vi;
  vi = CCTK_VarIndex(vn);
  
  if (vi>-1)
  {
    return(SetCartSymVI(GH, sym, vi));
  }
  else
  {
    CCTK_VWarn(1,__LINE__,__FILE__,CCTK_THORNSTRING,
	       "Cannot find variable %s in SetCartSymVN",vn);
    return(-1);
  }
}

void CCTK_FCALL CCTK_FNAME(SetCartSymVN)
     (int *ierr, cGH *GH, int *sym, ONE_FORTSTRING_ARG)
{
  ONE_FORTSTRING_CREATE(vn)
  *ierr = SetCartSymVN(GH, sym, vn);
  free(vn);
}



 /*@@
   @routine SetCartSymGI
   @date       
   @author  Gerd Lanfermann   
   @desc 
      Applies symmetry boundary conditions from
      Group index
   @enddesc 
   @calls     
   @calledby   
   @history 
 
   @endhistory 

@@*/

int SetCartSymGI(cGH *GH, int *sym, int gi) 
{
  
  DECLARE_CCTK_PARAMETERS

  int domainsym[MAX_FACE];
  SymmetryGHex *sGHex; 
  int first_vari,numvars,vi;
  int dir;
  
  sGHex  = (SymmetryGHex *)GH->extensions[CCTK_GHExtensionHandle("Symmetry")];

  first_vari = CCTK_FirstVarIndexI(gi);
  numvars    = CCTK_NumVarsInGroupI(gi);

  if (first_vari<0)
  {
    CCTK_VWarn(1,__LINE__,__FILE__,CCTK_THORNSTRING,
	       "Cannot find group %s (grp.index: %d) in SetCartSymGI",
	       CCTK_GroupName(gi),first_vari);
    return(-1);
  }

  /* Reference the hash table in the GHex and tell it what kind of
     symmetry is being applied 
     (depending on sym and the grid layout) 
     If there is no symmetry necessary,set ESYM_NOSYM
     When we apply a symmetry and find ESYM_UNSET, something went wrong! 
   */
  for (vi=first_vari; vi<first_vari+numvars; vi++) 
  {

#ifdef SYM_DEBUG
    printf("SetSymmetry: %s   [%d,%d,%d]\n",CCTK_VarName(vi), 
	   sym[0],sym[1],sym[2]);
#endif
    
    DecodeSymParameters3D (domainsym);
    for (dir=0; dir<MAX_FACE; dir++) 
    {
      if (domainsym[dir] == GFSYM_REFLECTION) 
      {
	sGHex->GFSym[vi][dir] = sym[dir/2];
      }
      else if (domainsym[dir] == GFSYM_ROTATION_X) 
      {
	sGHex->GFSym[vi][dir] = sym[1]*sym[2];
      }
      else if (domainsym[dir] == GFSYM_ROTATION_Y) 
      {
	sGHex->GFSym[vi][dir] = sym[0]*sym[2];
      }
      else if (domainsym[dir] == GFSYM_ROTATION_Z) 
      {
	sGHex->GFSym[vi][dir] = sym[0]*sym[1];
      }
      else 
      {
	sGHex->GFSym[vi][dir] = GFSYM_NOSYM;
      }
    }

#ifdef SYM_DEBUG
    printf("SetSymmetry: %s   [%d,%d,%d]\n\n", CCTK_VarName(vi), 
	   sGHex->GFSym[vi][0],
	   sGHex->GFSym[vi][2],
	   sGHex->GFSym[vi][4]);
#endif
  }
  return(0);
}

void CCTK_FCALL CCTK_FNAME(SetCartSymGI)
     (int *ierr, cGH *GH, int *sym, int *gi)
{
  *ierr = SetCartSymGI(GH, sym, *gi);
}



 /*@@
   @routine    
   @date       
   @author     
   @desc 
      Applies symmetry boundary conditions from
      "Implementation::Groupname"
   @enddesc 
   @calls     
   @calledby   
   @history 
 
   @endhistory 

@@*/

int SetCartSymGN(cGH *GH, int *sym, const char *gn) 
{
  int gi = CCTK_GroupIndex(gn);
  
  if (gi>-1)
  {
    return(SetCartSymGI(GH, sym, gi));
  }
  else
  {
    CCTK_VWarn(1,__LINE__,__FILE__,CCTK_THORNSTRING,
	       "Cannot find group %s in SetCartSymGN",gn);
    return(-1);
  }
}

void CCTK_FCALL CCTK_FNAME(SetCartSymGN)
     (int *ierr, cGH *GH, int *sym, ONE_FORTSTRING_ARG)
{
  ONE_FORTSTRING_CREATE(gn)
  *ierr = SetCartSymGN(GH, sym, gn);
  free(gn);
}