aboutsummaryrefslogtreecommitdiff
path: root/src/Startup.c
blob: 37c7fa7b7bc7c61822e4f771d02f91bdcb23930e (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
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#include "cctk.h"
#include "cctk_Arguments.h"
#include "cctk_Parameters.h"

#include "CactusElliptic/EllBase/src/EllBase.h"
#include "CactusElliptic/EllBase/src/Ell_DBstructure.h"

  void sor_confmetric(cGH *GH, 
		      int *MetricPsiI, 
		      int FieldI, 
		      int MI,
                      int NI, 
		      CCTK_REAL *AbsTol, 
		      CCTK_REAL *RelTol);
  void sor_flat(cGH *GH, 
		int FieldI,
		int MI, 
		int NI, 
		CCTK_REAL *AbsTol, 
		CCTK_REAL *RelTol);

/* routine registers the SOR solver "sor_confmetric" under the name "sor" 
   with the Elliptic Class "LinConfMetric".
*/

void EllSOR_Register(CCTK_ARGUMENTS) 
{

  DECLARE_CCTK_ARGUMENTS 
  DECLARE_CCTK_PARAMETERS 


  int err;

  /* Register the solver with the elliptic classes */

  err = Ell_RegisterSolver(sor_confmetric,"sor","Ell_LinConfMetric");
  if (!err==ELL_SUCCESS)
  {
    CCTK_WARN(0,"Failed to register sor for Ell_LinConfMetric");
  }
  err = Ell_RegisterSolver(sor_flat,"sor","Ell_LinFlat");
  if (!err==ELL_SUCCESS)
  {
    CCTK_WARN(0,"Failed to register sor for Ell_LinFlat");
  }

  /* These "keys" have to be same in other elliptic solver and in 
     the routines that sets them ! */

  /* Register boundary SOR can handle */
  err = Ell_CreateKey(CCTK_VARIABLE_STRING,"EllSOR::Bnd::Robin");
  err = Ell_CreateKey(CCTK_VARIABLE_STRING,"EllSOR::Bnd::Const");

  

}