aboutsummaryrefslogtreecommitdiff
path: root/src/Boundary.c
blob: 908617b5c63ba45e05b18c3924025d9d9093114f (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
#include "cctk.h"
#include "cctk_Arguments.h"
#include "cctk_Parameters.h"

#include "cctk_Faces.h"

#include "util_Table.h"


static int handle=-1;

void WaveToyExtra_Boundary(CCTK_ARGUMENTS);
void WaveToyExtra_Boundary(CCTK_ARGUMENTS)
{
  DECLARE_CCTK_ARGUMENTS;
  DECLARE_CCTK_PARAMETERS;

  CCTK_INT ierr=0;

  if (CCTK_EQUALS(bound,"custom"))
  {
    if (!CCTK_EQUALS(custom_options,""))
    {
      if (handle == -1)
      {
	handle = Util_TableCreateFromString(custom_options);
	if (handle < 0)
	{
	  CCTK_VWarn(0,__LINE__,__FILE__,CCTK_THORNSTRING,
		     "WaveToyC_Boundaries: Error creating table for "
		     "boundary condition %s",custom_bound);
	}
      }
    }
    ierr = Boundary_SelectVarForBC(cctkGH, CCTK_ALL_FACES, 1, handle, 
				   "wavetoy::phi",custom_bound);  
  }    

  if (ierr < 0) 
  {
    CCTK_VWarn(0,__LINE__,__FILE__,CCTK_THORNSTRING,
	       "WaveToyC_Boundaries: Error selecting boundary "
	       "condition %s",bound);
  }

  return;
}


 /*@@
   @routine    WaveToyC_Terminate
   @date       
   @author     Gabrielle Allen
   @desc 
               Tidy up wavetoy
   @enddesc 
   @history 
   @endhistory 
@@*/
void WaveToyC_Terminate(const cGH *GH)
{
  Util_TableDestroy(handle);
}