aboutsummaryrefslogtreecommitdiff
path: root/src/Symmetry.c
blob: 55a1acb50cf9d1467b93be27a0df3aff70094c07 (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
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
/*@@
   @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 <stdio.h>

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

/*#define DEBUG_BOUND*/

 /*@@
   @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 ApplySym
   @enddesc 
   @calls     
   @calledby   
   @history 
 
   @endhistory 

@@*/

void SetCartSymmetry(cGH *GH, int *sym, const char *imp_gf) {
  
  DECLARE_CCTK_PARAMETERS

  SymmetryGHex *sGHex; 
  int index;

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

  /* now that we have the same, get the index to the GFs */
  index = CCTK_VarIndex(imp_gf);
  if (index<0) 
  {
    char *message;
    message = (char *)malloc((100*strlen(imp_gf))*sizeof(char));
    sprintf(message,"Grid function %s has no index",imp_gf);
    CCTK_WARN(0,message);
    free(message);
  };
  
  /* 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! 
   */

  if (CCTK_Equals(domain,"full")) 
  {

#ifdef DEBUG_BOUND
    printf(" Registered full grid symmetries for -%s- in SetCartSymmetry\n",imp_gf);
#endif

    sGHex->GFSym[index][0] = GFSYM_NOSYM;
    sGHex->GFSym[index][2] = GFSYM_NOSYM;
    sGHex->GFSym[index][4] = GFSYM_NOSYM;

  } 
  else if (CCTK_Equals(domain,"octant")) 
  {

#ifdef DEBUG_BOUND
    printf(" Registered octant symmetries for -%s- in SetCartSymmetry\n",imp_gf);
#endif

    sGHex->GFSym[index][0] = sym[0];
    sGHex->GFSym[index][2] = sym[1];
    sGHex->GFSym[index][4] = sym[2];

  } 
  else if (CCTK_Equals(domain,"quadrant")) 
  {

#ifdef DEBUG_BOUND
    printf("Registered quadrant symmetries for -%s- in SetCartSymmetry\n",imp_gf);
#endif    

    sGHex->GFSym[index][0] = sym[0];
    sGHex->GFSym[index][2] = sym[1];
    sGHex->GFSym[index][4] = GFSYM_NOSYM;

  } 
  else if (CCTK_Equals(domain,"bitant")) 
  {

#ifdef DEBUG_BOUND
    printf("Registered bitant symmetries for -%s- in SetCartSymmetry\n",imp_gf);
#endif    

    sGHex->GFSym[index][4] = sym[2];
    sGHex->GFSym[index][0] = GFSYM_NOSYM;
    sGHex->GFSym[index][2] = GFSYM_NOSYM;
  }

  /* All untouched GFSym[][] will hold GFSYM_UNSET */

  USE_CCTK_PARAMETERS

}

void FMODIFIER FORTRAN_NAME(SetCartSymmetry)(cGH *GH,  int *sym, ONE_FORTSTRING_ARG) {

  ONE_FORTSTRING_CREATE(imp_gf) 
  SetCartSymmetry(GH, sym, imp_gf);
  free(imp_gf);
} 




 /*@@
   @routine    ApplySymmetry
   @date       Mon Mar 15 15:16:28 1999
   @author     Gerd Lanfermann
   @desc 
      Takes the GH and the name of the group.

      Routine applies the symmetry BC to the GFs of a  group as set by SetSym 
      in GHExtension.  It is called by C or Fortran (via a wrapper) by 
      passing the group name. The assignment of the symmetries is carried out
      by the F routine FortranSym.
   @enddesc 
   @calls   FortranSym  
   @calledby   
   @history 
 
   @endhistory 

@@*/




int CartSymBCGroupI(cGH *GH, int groupnum) {

  void FORTRAN_NAME(SymmetryCondition)(int *, CCTK_REAL *, int *, int *, int *);
  
  DECLARE_CCTK_PARAMETERS

  SymmetryGHex *sGHex; 
  int first,last,index,j;
  int doSym[6];

  /* Get out if we are sure no symmetries should be applied */
  if (CCTK_Equals(domain,"full")) return 0;

  /* Get the pointer to the Symmetry GH extension */
  sGHex  = (SymmetryGHex*)GH->extensions[CCTK_GHExtensionHandle("Symmetry")];


  if (groupnum < 0) 
  {
    char *message=NULL;
    message = (char *)malloc(300*sizeof(char));
    sprintf(message,"Invalid group number %d",groupnum);
    CCTK_WARN(0,message);
    free(message);
  }

  /*get the index of the first GF in the group and how many Vars there are*/
  first = CCTK_FirstVarIndexI(groupnum);
  last  = first+CCTK_NumVarsInGroupI(groupnum)-1;

  /* loop over the variables in the group */
  for (index=first; index<=last; index++) {

    /* and check that we actually have a grid function (and not a scalar)*/
    if (CCTK_GroupTypeFromVarI(index) == GROUP_GF) {

      /*at this point, there should be NO ESYM_UNSET anymore 
        if there is, we forgot to register the symmetries for a GF */
      if ((sGHex->GFSym[index][0]==GFSYM_UNSET)||
	  (sGHex->GFSym[index][2]==GFSYM_UNSET)||
	  (sGHex->GFSym[index][4]==GFSYM_UNSET)) {
	char *message=NULL;
	message = (char *)malloc(300*sizeof(char));
	sprintf(message,"Cannot apply symmetry to >%s< (# %d) without registered symmetries",
		CCTK_GroupNameFromVarI(index),index);
	CCTK_WARN(1,message);
	free(message);
      }
      
      /* whether we want to apply sym depends on several things: */
      for (j=0;j<3;j++) 
      {
	doSym[2*j+1]=0;
	if ( (GH->cctk_lsh[j]>1) && (GH->cctk_bbox[2*j]==1) &&
	    (sGHex->GFSym[index][2*j] != GFSYM_UNSET) &&
	    (sGHex->GFSym[index][2*j] != GFSYM_NOSYM) 
	     )
	  doSym[2*j] = 1;
	else 
	  doSym[2*j] = 0;
      }

      /* Call the Fortran Symmetry Routine */
      FORTRAN_NAME(SymmetryCondition)(
	     GH->cctk_lsh,            
	     /* xyz-size of PE local grid */
	     GH->data[index][0],         
	     /* pointer to start of data array for GF[index]*/
	     GH->cctk_nghostzones,            
	     /* number of ghost zones */
	     sGHex->GFSym[index],  
	     /* the symmetries for this GF */
	     doSym
	     /* flags whether to apply syms */
	     );                       
    }
  }

  return 0;

  USE_CCTK_PARAMETERS

}





int CartSymBCVarI(cGH *GH, int varnum) {

  void FORTRAN_NAME(SymmetryCondition)(int *, CCTK_REAL *, int *, int *, int *);
  
  DECLARE_CCTK_PARAMETERS

  SymmetryGHex *sGHex; 
  int j;
  int doSym[6];

  /* Get out if we are sure no symmetries should be applied */
  if (CCTK_Equals(domain,"full")) return 0;


  /* Get the pointer to the Symmetry GH extension */
  sGHex  = (SymmetryGHex*)GH->extensions[CCTK_GHExtensionHandle("Symmetry")];

    /* and check that we actually have a grid function (and not a scalar)*/
    if (CCTK_GroupTypeFromVarI(varnum) == GROUP_GF) {



      /*at this point, there should be NO ESYM_UNSET anymore 
        if there is, we forgot to register the symmetries for a GF */
      if ((sGHex->GFSym[varnum][0]==GFSYM_UNSET)||
	  (sGHex->GFSym[varnum][2]==GFSYM_UNSET)||
	  (sGHex->GFSym[varnum][4]==GFSYM_UNSET)) {
	char *message=NULL;
	message = (char *)malloc(300*sizeof(char));
	sprintf(message,"Cannot apply symmetry to >%s< (# %d) without registered symmetries",
		CCTK_GroupNameFromVarI(varnum),varnum);
	CCTK_WARN(1,message);
	free(message);
      }
      
      /* whether we want to apply sym depends on several things: */
      for (j=0;j<3;j++) 
      {
	doSym[2*j+1]=0;
	if ( (GH->cctk_lsh[j]>1) && (GH->cctk_bbox[2*j]==1) &&
	    (sGHex->GFSym[varnum][2*j] != GFSYM_UNSET) &&
	    (sGHex->GFSym[varnum][2*j] != GFSYM_NOSYM) 
	     )
	  doSym[2*j] = 1;
	else 
	  doSym[2*j] = 0;
      }

      /* Call the Fortran Symmetry Routine */
      FORTRAN_NAME(SymmetryCondition)(
	     GH->cctk_lsh,            
	     /* xyz-size of PE local grid */
	     GH->data[varnum][0],         
	     /* pointer to start of data array for GF[varnum]*/
	     GH->cctk_nghostzones,            
	     /* number of ghost zones */
	     sGHex->GFSym[varnum],  
	     /* the symmetries for this GF */
	     doSym
	     /* flags whether to apply syms */
	     );                       
    }

    return 0;

    USE_CCTK_PARAMETERS

}


int CartSymBCVar(cGH *GH, char *name) 
{

  int index;
  index = CCTK_VarIndex(name);
  CartSymBCVarI(GH,index);
  return 0;

}

int CartSymBCGroup(cGH *GH, char *name) 
{

  int index;
  int retval;
  index = CCTK_GroupIndex(name);
  retval = CartSymBCGroupI(GH,index);
  return retval;

}

void FMODIFIER FORTRAN_NAME(CartSymBCVar)(int *ierr, cGH *GH, ONE_FORTSTRING_ARG) 
{ 

  ONE_FORTSTRING_CREATE(name)  
  *ierr = CartSymBCVar(GH,name);
  free(name);
}

void FMODIFIER FORTRAN_NAME(CartSymBCGroup)(int *ierr, cGH *GH, ONE_FORTSTRING_ARG) 
{ 

  ONE_FORTSTRING_CREATE(name)  
  *ierr = CartSymBCGroup(GH,name);
  free(name);
}

void FMODIFIER FORTRAN_NAME(ApplySymmetry)(cGH *GH, ONE_FORTSTRING_ARG) 
{ 

  ONE_FORTSTRING_CREATE(name)  
  CartSymBCGroup(GH,name);
  free(name);
}

void FMODIFIER FORTRAN_NAME(CartSymBCVarI)(int *ierr, cGH *GH, int *index) 
{ 
  *ierr = CartSymBCVarI(GH,*index);
}

void FMODIFIER FORTRAN_NAME(CartSymBCGRoupI)(int *ierr, cGH *GH, int *index) 
{ 
  *ierr = CartSymBCGroupI(GH,*index);
}