aboutsummaryrefslogtreecommitdiff
path: root/src/FlatBoundary.c
blob: dab27f2ac595c9eafab92e811f7978fb8b976d4a (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
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
 /*@@
   @file      FlatBoundaryWrappers.c
   @date      
   @author    Gerd Lanfermann
   @desc 
   Flat boundary conditions in 1,2 and 3D
   @enddesc 
   @version $Header$
 @@*/

/*#define DEBUG_BOUND*/

#include <stdio.h>
#include <assert.h>
#include <stdlib.h>
#include <ctype.h>
#include <stdarg.h>
#include <string.h>

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

#include "BoundarySymmetries.h"
#include "Symmetry.h"


/* Internal routine prototypes */

static int BndApplyFlat3Di(cGH *GH, 
			   int  gdim, 
			   int *doBC, 
			   int *lssh,
			   int *stencil, 
			   CCTK_REAL *var);

static int BndApplyFlat2Di(cGH *GH, 
			   int  gdim, 
			   int *doBC, 
			   int *lssh,
			   int *stencil, 
			   CCTK_REAL *var);

static int BndApplyFlat1Di(cGH *GH, 
			   int  gdim, 
			   int *doBC, 
			   int *lssh,
			   int *stencil, 
			   CCTK_REAL *var);

static int ApplyBndFlat(cGH *GH, 
			int *stencil, 
			int first_var,
			int num_vars);

/* Local variables */



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

/*@@
   @routine    BndFlatGI
   @date       Thu Mar  2 11:11:40 2000
   @author     Gerd Lanfermann
   @desc 
   Apply flat boundary conditions by group index
   @enddesc 
   @calls     
   @calledby   
   @history 
 
   @endhistory 

@@*/

int BndFlatGI(cGH *GH, int *stencil, int gi) 
{
  int numvars, first_vi;

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

  return ApplyBndFlat(GH,stencil,first_vi,numvars);
}

void CCTK_FCALL CCTK_FNAME(BndFlatGI)
     (int *ierr, cGH *GH, int *sw, int *gi)
{
  *ierr = BndFlatGI(GH, sw, *gi);
  return;
}




/*@@
   @routine    BndFlatGN
   @date       Thu Mar  2 11:11:40 2000
   @author     Gerd Lanfermann
   @desc 
   Apply flat boundary conditions by group  name
   @enddesc 
   @calls     
   @calledby   
   @history 
 
   @endhistory 

@@*/

int BndFlatGN(cGH *GH, int *sw, const char *gn)
{
  int retval;
  int gi;
  gi   = CCTK_GroupIndex(gn);
  
  if (gi>-1)
  {
    retval=BndFlatGI(GH, sw, gi);
  }
  else 
  {
    CCTK_VWarn(1,__LINE__,__FILE__,"Boundary",
	       "BndFlatGN: Grid variable %s not found",gn);
    retval=-1;
  }
  return retval;
}
 
void CCTK_FCALL CCTK_FNAME(BndFlatGN)
     (int *ierr, cGH *GH, int *sw, ONE_FORTSTRING_ARG)
{
  ONE_FORTSTRING_CREATE(gn)
  *ierr = BndFlatGN(GH, sw, gn);
  free(gn);
  return;
}



/*@@
   @routine    BndFlatVI
   @date       Thu Mar  2 11:11:40 2000
   @author     Gerd Lanfermann
   @desc 
   Apply flat boundary conditions by variable index
   @enddesc 
   @calls     
   @calledby   
   @history 
 
   @endhistory 

@@*/

int BndFlatVI(cGH *GH, int *stencil, int vi) 
{
  return ApplyBndFlat(GH,stencil,vi,1);
}

void CCTK_FCALL CCTK_FNAME(BndFlatVI)
     (int *ierr, cGH *GH, int *sw, int *vi)
{
  *ierr = BndFlatVI(GH, sw, *vi);
  return;
}



/*@@
   @routine    BndFlatVN
   @date       Thu Mar  2 11:11:40 2000
   @author     Gerd Lanfermann
   @desc 
   Apply flat boundary conditions by variable name
   @enddesc 
   @calls     
   @calledby   
   @history 
 
   @endhistory 

@@*/

int BndFlatVN(cGH *GH, 
	      int *sw,
	      const char *vn)
{
  int  vi;
  int  retval;

  vi   = CCTK_VarIndex(vn);
  
  if (vi>-1)
  {
    retval = BndFlatVI(GH, sw, vi);
  }
  else
  {
    retval = -1;
    CCTK_VWarn(1,__LINE__,__FILE__,"Boundary",
	       "BndFlatVN: Grid variable %s not found",vn);
  }
  return retval;
}

void CCTK_FCALL CCTK_FNAME(BndFlatVN)
     (int *ierr, cGH *GH, int *sw, ONE_FORTSTRING_ARG)
{  
  ONE_FORTSTRING_CREATE(vn)
  *ierr = BndFlatVN(GH, sw, vn);
  free(vn);
  return;
}
  


/********************************************************************
 *********************     Local Routines   *************************
 ********************************************************************/

/*@@
   @routine    ApplyBndFlat
   @date       Jul 5 2000
   @author     Gabrielle Allen
   @desc 
   Wrapper for setting up and calling flat boundary conditions
   @enddesc 
   @history 
 
   @endhistory 

@@*/

int ApplyBndFlat(cGH *GH, 
		 int *stencil, 
		 int first_var,
		 int num_vars)
{
  int symmetry_handle;  /* handle for the optional symmetry structure */
  int vi, gi, dim;
  int idim;
  int berr,ierr;
  int *doBC, *dstag, *lssh;
  int timelevel;        /* timelevel that condition applied on */
  SymmetryGHex *sGHex;

  /* See if we have a symmetry array */
  symmetry_handle = CCTK_GHExtensionHandle("Symmetry");
  if (symmetry_handle < 0)
  {
    sGHex = NULL;
  }
  else
  {
    sGHex  = (SymmetryGHex*)GH->extensions[symmetry_handle];
  }

  /* Get group dimension */
  dim = CCTK_GroupDimFromVarI(first_var);

  /* allocate arrays */
  doBC   = (int *)malloc((2*dim)*sizeof(int)); 
  dstag  = (int *)malloc(dim*sizeof(int));
  lssh   = (int *)malloc(dim*sizeof(int));

  /* get the directional staggering of the group */
  gi   = CCTK_GroupIndexFromVarI(first_var);
  ierr = CCTK_GroupStaggerDirArrayGI(dstag, dim, gi);

  /* get the current timelevel */
  timelevel = CCTK_NumTimeLevelsFromVarI (first_var) - 1;
  if (timelevel > 0)
    timelevel--;

  for (vi=first_var; vi<first_var+num_vars; vi++) 
  {

    /* Apply condition if:
       + boundary is not a symmetry boundary 
       (no symmetry or unset(=unsed))
       + boundary is a physical boundary
       + have enough grid points
    */
    if (sGHex)
    {
      for (idim=0;idim<dim;idim++) 
      {
	doBC[idim*2]   = (((sGHex->GFSym[vi][idim*2]==GFSYM_NOSYM)||
			   (sGHex->GFSym[vi][idim*2]==GFSYM_UNSET)) &&
			  GH->cctk_lsh[idim]>1 && GH->cctk_bbox[idim*2]);
	doBC[idim*2+1] = (((sGHex->GFSym[vi][idim*2+1]==GFSYM_NOSYM)||
			   (sGHex->GFSym[vi][idim*2+1]==GFSYM_UNSET)) &&
			  GH->cctk_lsh[idim]>1 && GH->cctk_bbox[idim*2+1]);
	lssh[idim] = GH->cctk_lssh[CCTK_LSSH_IDX(dstag[idim],idim)];
      }
    }
    else
    {
      for (idim=0;idim<dim;idim++) 
      {
	doBC[idim*2]   = (GH->cctk_lsh[idim]>1 && GH->cctk_bbox[idim*2]);
	doBC[idim*2+1] = (GH->cctk_lsh[idim]>1 && GH->cctk_bbox[idim*2+1]);
	lssh[idim]     = GH->cctk_lssh[CCTK_LSSH_IDX(dstag[idim],idim)];
      }
    }

    switch (dim) 
    {
      case 1: berr = BndApplyFlat1Di(GH, 
				     dim,
				     doBC, 
				     lssh,
				     stencil,
				     GH->data[vi][timelevel]); break;
      case 2: berr = BndApplyFlat2Di(GH, 
				     dim,
				     doBC, 
				     lssh,
				     stencil,
				     GH->data[vi][timelevel]); break;
      case 3: berr = BndApplyFlat3Di(GH, 
				     dim,
				     doBC,
				     lssh,
				     stencil,
				     GH->data[vi][timelevel]); break;     
      default : berr = -1; CCTK_WARN(1, "ApplyBndFlat: No BC for dim>3");
    }
    berr = (berr>-1) ? 0 : -1;
  }
  
  free(dstag);
  free(doBC);
  free(lssh);
  
  return(ierr);
}


/*@@
   @routine    BndApplyFlat3Di
   @date       Thu Mar  2 11:14:08 2000
   @author     Gerd Lanfermann
   @desc 
     Apply flat boundary conditions to 3d variables
   @enddesc 
   @calls     
   @calledby   
   @history 
 
   @endhistory 

@@*/

int BndApplyFlat3Di(cGH *GH, 
		    int  gdim, 
		    int *doBC, 
		    int *lssh,
		    int *stencil, 
		    CCTK_REAL *var) 
{
  int i,j,k,sw;

  /* lower x */
  if (doBC[0] == 1)
  {
    for (k=0;k<GH->cctk_lsh[2];k++)
    {
      for (j=0;j<GH->cctk_lsh[1];j++)
      {
	for (sw=0;sw<stencil[0];sw++)
	{
	  var[CCTK_GFINDEX3D(GH,sw,j,k)]
	    = var[CCTK_GFINDEX3D(GH,stencil[0],j,k)];
	}
      }
    }
  }
  
  /* upper x */
  if (doBC[1] == 1)
  {
    for (k=0;k<GH->cctk_lsh[2];k++)
    {
      for (j=0;j<GH->cctk_lsh[1];j++)
      {
	for (sw=0;sw<stencil[0];sw++)
	{
	  var[CCTK_GFINDEX3D(GH,GH->cctk_lsh[0]-sw-1,j,k)]
	    = var[CCTK_GFINDEX3D(GH,GH->cctk_lsh[0]-stencil[0]-1,j,k)];
	}
      }
    }
  }
  
  /*lower y */
  if (doBC[2] == 1)
  {
    for (k=0;k<GH->cctk_lsh[2];k++)
    {
      for (i=0;i<GH->cctk_lsh[0];i++)
      {
	for (sw=0;sw<stencil[1];sw++)
	{
	  var[CCTK_GFINDEX3D(GH,i,sw,k)]
	    = var[CCTK_GFINDEX3D(GH,i,stencil[1],k)];
	}
      }
    }
  }
  
  /* upper y */
  if (doBC[3] == 1)
  {
    for (k=0;k<GH->cctk_lsh[2];k++)
    {
      for (i=0;i<GH->cctk_lsh[0];i++)
      {
	for (sw=0;sw<stencil[1];sw++)
	{
	  var[CCTK_GFINDEX3D(GH,i,GH->cctk_lsh[1]-sw-1,k)]
	    = var[CCTK_GFINDEX3D(GH,i,GH->cctk_lsh[1]-stencil[1]-1,k)];
	}
      }
    }
  }

  /* lower z */
  if (doBC[4] == 1)
  {
    for (j=0;j<GH->cctk_lsh[1];j++)
    {
      for (i=0;i<GH->cctk_lsh[0];i++)
      {
	for (sw=0;sw<stencil[2];sw++)
	{
	  var[CCTK_GFINDEX3D(GH,i,j,sw)]
	    = var[CCTK_GFINDEX3D(GH,i,j,stencil[2])];
	}
      }
    }
  }

  /* upper z */
  if (doBC[5] == 1)
  {
    for (j=0;j<GH->cctk_lsh[1];j++)
    {
      for (i=0;i<GH->cctk_lsh[0];i++)
      {
	for (sw=0;sw<stencil[2];sw++)
	{
	  var[CCTK_GFINDEX3D(GH,i,j,GH->cctk_lsh[2]-sw-1)]
	    = var[CCTK_GFINDEX3D(GH,i,j,GH->cctk_lsh[2]-stencil[2]-1)];
	}
      }
    }
  }
  return(0);
}



/*@@
   @routine    BndApplyFlat2Di
   @date       Thu Mar  2 11:14:08 2000
   @author     Gerd Lanfermann
   @desc 
     Apply flat boudnary conditions to 2d variables
   @enddesc 
   @calls     
   @calledby   
   @history 
 
   @endhistory 

@@*/
int BndApplyFlat2Di(cGH *GH, 
		    int  gdim, 
		    int *doBC, 
		    int *lssh,
		    int *stencil, 
		    CCTK_REAL *var) 
{
  int i,j,sw;
    
  /* lower x */
  if (doBC[0] == 1)
  {
    for (j=0;j<GH->cctk_lsh[1];j++)
    {
      for (sw=0;sw<stencil[0];sw++)
      {
	var[CCTK_GFINDEX2D(GH,sw,j)]
	  = var[CCTK_GFINDEX2D(GH,stencil[0],j)];
      }
    }
  }
  
  /* upper x */
  if (doBC[1] == 1)
  {
    for (j=0;j<GH->cctk_lsh[1];j++)
    {
      for (sw=0;sw<stencil[0];sw++)
      {
	var[CCTK_GFINDEX2D(GH,GH->cctk_lsh[0]-sw-1,j)]
	  = var[CCTK_GFINDEX2D(GH,GH->cctk_lsh[0]-stencil[0]-1,j)];
      }
    }
  }

  /* lower y */
  if (doBC[2] == 1)
  {
    for (i=0;i<GH->cctk_lsh[0];i++)
    {
      for (sw=0;sw<stencil[1];sw++)
      {
	var[CCTK_GFINDEX2D(GH,i,sw)]
	  = var[CCTK_GFINDEX2D(GH,i,stencil[1])];
      }
    }
  }
  
  /* upper y */
  if (doBC[3] == 1)
  {
    for (i=0;i<GH->cctk_lsh[0];i++)
    {
      for (sw=0;sw<stencil[1];sw++)
      {
	var[CCTK_GFINDEX2D(GH,i,GH->cctk_lsh[1]-sw-1)]
	  = var[CCTK_GFINDEX2D(GH,i,GH->cctk_lsh[1]-stencil[1]-1)];
      }
    }
  }

  return(0);
}



/*@@
   @routine    BndApplyFlat1Di
   @date       Thu Mar  2 11:14:08 2000
   @author     Gerd Lanfermann
   @desc 
     Apply flat boudnary conditions to 1d variables
   @enddesc 
   @calls     
   @calledby   
   @history 
 
   @endhistory 

@@*/

int BndApplyFlat1Di(cGH *GH, 
		    int  gdim, 
		    int *doBC, 
		    int *lssh,
		    int *stencil, 
		    CCTK_REAL *var) 
{ int sw;

  /* lower x */
  if (doBC[0] == 1)
  {
    for (sw=0;sw<stencil[0];sw++)
    {
      var[CCTK_GFINDEX1D(GH,sw)]
	= var[CCTK_GFINDEX1D(GH,stencil[0])];
    }
  }
  
  /* upper x */
  if (doBC[1] == 1)
  {
    for (sw=0;sw<stencil[0];sw++)
    {
      var[CCTK_GFINDEX1D(GH,GH->cctk_lsh[0]-sw-1)]
	= var[CCTK_GFINDEX1D(GH,GH->cctk_lsh[0]-stencil[0]-1)];
    }
  }
  return(0);
}



/********************************************************************
 *********************    DEPRECATED: Beta 8   **********************
 ********************************************************************/

int FlatBCGroup(cGH *GH, 
		int *stencil_size, 
		const char *impgrpname)
{
  CCTK_WARN(1,"FlatBCGroup: ROUTINE DEPRECATED, see Beta8 release notices");
  return(BndFlatGN(GH,stencil_size,impgrpname));
}

void CCTK_FCALL CCTK_FNAME(FlatBCGroup)(int *retval, 
					 cGH *GH, 
					 int *stencil_size, 
					 ONE_FORTSTRING_ARG) 
{
  ONE_FORTSTRING_CREATE(impgrpname)
  CCTK_WARN(1,"FlatBCGroup: ROUTINE DEPRECATED, see Beta8 release notices");
  *retval = BndFlatGN(GH,stencil_size,impgrpname);
  free(impgrpname);
}

int FlatBCVar(cGH *GH, 
	      int *stencil_size, 
	      const char *impvarname) 
{
  CCTK_WARN(1,"FlatBCVar: ROUTINE DEPRECATED, see Beta8 release notices");
  return(BndFlatVN(GH,stencil_size,impvarname));
}

void CCTK_FCALL CCTK_FNAME(FlatBCVar)(int *retval, 
				       cGH *GH, 
				       int *stencil_size, 
				       ONE_FORTSTRING_ARG) 
{
  ONE_FORTSTRING_CREATE(impvarname)
  CCTK_WARN(1,"FlatBCVar: ROUTINE DEPRECATED, see Beta8 release notices");
  *retval = BndFlatVN(GH, stencil_size, impvarname);
  free(impvarname);
}

int FlatBCVarI(cGH *GH, int *stencil_size, int vi) 
{
  CCTK_WARN(1,"FlatBCVarI: ROUTINE DEPRECATED, see Beta8 release notices");
  return(BndFlatVI(GH, stencil_size, vi));
}

void CCTK_FCALL CCTK_FNAME(FlatBCVarI)(int *retval, 
					cGH *GH, 
					int *stencil_size, 
					int *vi) 
{
  CCTK_WARN(1,"FlatBCVarI: ROUTINE DEPRECATED, see Beta8 release notices");
  *retval = BndFlatVI(GH, stencil_size, *vi);
}

int FlatBCGroupI(cGH *GH, 
		 int *stencil_size, 
		 int gi) 
{
  CCTK_WARN(1,"FlatBCGroupI: ROUTINE DEPRECATED, see Beta8 release notices");
  return(BndFlatGI(GH, stencil_size, gi));
}

void CCTK_FCALL CCTK_FNAME(FlatBCGroupI)(int *retval, 
					  cGH *GH, 
					  int *stencil_size, 
					  int *gi) 
{
  CCTK_WARN(1,"FlatBCGroupI: ROUTINE DEPRECATED, see Beta8 release notices");
  *retval=BndFlatGI(GH, stencil_size, *gi);
}