aboutsummaryrefslogtreecommitdiff
path: root/src/Wrapper.c
blob: 251b21eb9a3d8a654572c1d165538d597570d70a (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
 /*@@
   @file      Wrapper.c
   @date      Tue Aug 24 12:50:07 1999
   @author    Gerd Lanfermann
   @desc 
   The C wrapper, which calles the core Fortran routine, which 
   performs the actual solve.
   We cannot derive the pointers to the GF data from the indices in 
   Fortran. So we do this here in C and then pass the everything 
   over to the Fortran routine.

   This wrapper is registers with the Elliptic solver registry 
   (not the Fortran file) , as coded up in ./CactusElliptic/EllBase
   @enddesc 
 @@*/

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

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

#include "EllBase.h"

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

CCTK_FILEVERSION(CactusElliptic_EllSOR_Wrapper_c)

int SORFlat3D(cGH *GH, int FieldIndex, int MIndex, int NIndex,
              CCTK_REAL *AbsTol, CCTK_REAL *RelTol);
int SORConfMetric3D(cGH *GH, int *MetricPsiI, int conformal,
                    int FieldIndex, int MIndex, int NIndex,
                    CCTK_REAL *AbsTol, CCTK_REAL *RelTol);
int SORConfMetric(cGH *GH, 
                  int *MetricPsiI, 
                  int FieldIndex, 
                  int MIndex, 
                  int NIndex, 
                  CCTK_REAL *AbsTol,
                  CCTK_REAL *RelTol);
int SORFlat(cGH *GH, 
            int FieldIndex, 
            int MIndex, 
            int NIndex, 
            CCTK_REAL *AbsTol, 
            CCTK_REAL *RelTol);

/*@@
   @routine    SORConfMetric
   @date       Tue Sep 26 11:31:42 2000
   @author     Gerd Lanfermann
   @desc 
     elliptic solver wrapper which provides a interface to the 
     different n-dimensional SOR solvers for the conformal metric, 
     of which only 3D is coded currently.

     This wrapper is registered and if it is being called with 
     a n-dim. grid function, it goes of and picks the correct solver.

     We pass in the arguments that are neccessary for this class of elliptic eq. 
     this solver is intended to solve. See ./CactusElliptic/EllBase/src/ for the
     classes of elliptic eq. 
   @enddesc 
   @calls      
   @calledby   
   @history 
 
   @endhistory 

@@*/

int SORConfMetric(cGH *GH, 
                  int *MetricPsiI, 
                   int FieldIndex, 
                   int MIndex, 
                   int NIndex, 
                   CCTK_REAL *AbsTol,
                   CCTK_REAL *RelTol) 
{
  int retval = ELL_NOSOLVER;

  switch (CCTK_GroupDimFromVarI(FieldIndex))
  {
    case 1:  
      CCTK_WARN(0,"SORConfMetric: No 1D SOR solver implemented");
      break;
    case 2:
      CCTK_WARN(0,"SORConfMetric: No 2D SOR solver implemented");
      break;
    case 3:
      retval = SORConfMetric3D(GH, MetricPsiI, 1, 
                               FieldIndex, MIndex, NIndex,
                               AbsTol, RelTol);
      break;
    default:
      CCTK_WARN(1,"SORConfMetric: Solver only implemented for 3D");
      break;
  }

  return retval;
}
 
int SORMetric(cGH *GH, 
              int *MetricI, 
              int FieldIndex, 
              int MIndex, 
              int NIndex, 
              CCTK_REAL *AbsTol,
              CCTK_REAL *RelTol) 
{
  int retval = ELL_NOSOLVER;

  switch (CCTK_GroupDimFromVarI(FieldIndex))
  {
    case 1:  
      CCTK_WARN(0,"SORMetric: No 1D SOR solver implemented");
      break;
    case 2:
      CCTK_WARN(0,"SORMetric: No 2D SOR solver implemented");
      break;
    case 3:
      retval = SORConfMetric3D(GH, MetricI, 0, 
                           FieldIndex, MIndex, NIndex,
                           AbsTol, RelTol);
      break;
    default:
      CCTK_WARN(1,"SORMetric: Solver only implemented for 3D");
      break;
  }

  return retval;
}
 
/*@@
   @routine    SORFlat
   @date       Tue Sep 26 11:31:42 2000
   @author     Gerd Lanfermann
   @desc 
     Elliptic solver wrapper which provides a interface to the 
     different n-dimensional SOR solvers (flat case), 
     of which only 3D is coded currently.

     This wrapper is registered and if it is being called with 
     a n-dimensional grid function, it then picks the correct solver.

     We pass in the arguments that are necessary for this class of 
     elliptic equations this solver is intended to solve. 
     See ./CactusElliptic/EllBase/src/ for the classes of elliptic equations.
   @enddesc 
   @calls     
   @calledby   
   @history 
 
   @endhistory 

@@*/

int SORFlat(cGH *GH, 
            int FieldIndex, 
            int MIndex, 
            int NIndex, 
            CCTK_REAL *AbsTol, 
            CCTK_REAL *RelTol) 
{
  int retval;

  retval = ELL_NOSOLVER;

  switch (CCTK_GroupDimFromVarI(FieldIndex))
  {
    case 1:  
      CCTK_WARN(1,"SORFlat: No 1D SOR solver implemented");
      break;
    case 2:
      CCTK_WARN(1,"SORFlat: No 2D SOR solver implemented");
      break;
    case 3:
      retval = SORFlat3D(GH, FieldIndex, MIndex, NIndex, AbsTol, RelTol);
      break;
  default:
      CCTK_WARN(1,"SORFlat: Solver only implemented for 3D");
      break;
  }

  return retval;

}