summaryrefslogtreecommitdiff
path: root/src/main/Coord.c
blob: 2af37d25b22db3ec42da30e45857bdc1829aa948 (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
 /*@@
   @file      Coord.c
   @date      11-12th April 1999
   @author    Gabrielle Allen
   @desc 
   Routines to deal with cooordinates and coordinate registration
   @enddesc 
 @@*/

/*#define DEBUG_COORD*/

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

#include "cctk_Flesh.h"
#include "cctk_Coord.h"
#include "cctk_WarnLevel.h"
#include "cctk_Groups.h"
#include "StoreHandledData.h"
#include "ErrorCodes.h"
#include "cctk_FortranString.h"

static char *rcsid = "$Header$";

CCTK_FILEVERSION(main_Coord_c)

struct Coordprops
{ 
  char *    name;
  int       index;
  CCTK_REAL origin;
  int       direction;
};

typedef struct COORD_RANGE 
{

  cGH *GH;

  struct Coordprops *props;       /* Coordinate data */

  CCTK_REAL lower;                /* Lower range */
  CCTK_REAL upper;                /* Upper range */

  struct COORD_RANGE *next;       /* List */

} coord_range;

static cHandledData *coordinates = NULL;
static int num_coords = 0;
static struct COORD_RANGE *first = NULL;

struct Coordprops *CCTKi_CoordData(const char *name);
int CCTKi_CoordHande(const char *name);





 /*@@
   @routine    CoordRegisterI
   @date       11-12th April 1999
   @author     Gabrielle Allen
   @desc 
               Register a GF as a coordinate with a name, and index
               and a direction
   @enddesc 
   @calls      Util_GetHandle, Util_NewHandle, CCTK_Warn

   @var        name        
   @vdesc      Name coordinate is registered as
   @vtype      const char *
   @vio        in
   @vcomment   The name must not be the same as the variable name
   @endvar 

   @var        index
   @vdesc      The index of the variable providing the coordinate
   @vtype      int
   @vio        in
   @vcomment
   @endvar

   @var        dir
   @vdesc      An index giving the coordinate direction
   @vtype      int
   @vio        in
   @vcomment   This should be an optional argument
   @endvar
 
   @returntype int
   @returndesc
      -1           = Duplicate coordinate name, all duplicates
                     will be ignored
      ERROR_MEMORY = Failure with malloc
      >= 0           Handle returned by coordinate registration
   @endreturndesc

   @@*/

int CCTK_CoordRegisterI(int dir, int index, const char*name)
{

  int handle;
  struct Coordprops *new_coord;

  /* Check that the method hasn't already been registered */
  handle = Util_GetHandle(coordinates, name, NULL);

  if(handle < 0)
  {
    /* New extension. */
    new_coord = (struct Coordprops *)malloc(sizeof(struct Coordprops));

    if(new_coord)
    {
      /* Get a handle for it. */
      handle = Util_NewHandle(&coordinates, name, new_coord);

      /* Initialise the coordinate properties structure */
      new_coord->name      = (char *)name;
      new_coord->index     = index;
      new_coord->direction = dir;
      new_coord->origin    = 0;

      /* Remember how many methods there are */
      num_coords++;

#ifdef DEBUG_COORD
      printf(" In CCTK_CoordRegisterI\n");
      printf(" ----------------------\n");
      printf("   handle %d, name %s,\n",handle,name);
      printf("   index %d, direction %d\n",index,dir);
#endif

    }
    else
    {
      /* Memory failure. */
      handle = ERROR_MEMORY;
    }
  }
  else
  {
    /* Method already exists. */
    CCTK_VWarn(1,__LINE__,__FILE__,"Cactus",
	       "Coordinate with name -%s- already registered",name);
    handle = -1;
  }
    
  return handle;

}

void CCTK_FCALL CCTK_FNAME(CCTK_CoordRegisterI)
     (int *handle, int *dir, int *index, ONE_FORTSTRING_ARG)
{
  ONE_FORTSTRING_CREATE(name)
  *handle = CCTK_CoordRegisterI(*dir,*index, name);
  free(name);
}





 /*@@
   @routine    CoordRegister
   @date       11-12th April 1999
   @author     Gabrielle Allen
   @desc 
               Register a GF as a coordinate with a name and
               a direction.
   @enddesc 
   @calls      CCTK_CoordRegisterI, CCTK_VarIndex

   @var        name        
   @vdesc      Name coordinate is registered as
   @vtype      const char *
   @vio        in
   @vcomment   The name must not be the same as the variable name
   @endvar 

   @var        gfname
   @vdesc      The name of the variable providing the coordinate
   @vtype      const char *
   @vio        in
   @vcomment
   @endvar

   @var        dir
   @vdesc      An index giving the coordinate direction
   @vtype      int
   @vio        in
   @vcomment   This should be an optional argument
   @endvar
 
   @returntype int
   @returndesc
      -1           = Duplicate coordinate name, all duplicates
                     will be ignored
      ERROR_MEMORY = Failure with malloc
      >= 0           Handle returned by coordinate registration
   @endreturndesc

   @@*/

int CCTK_CoordRegister(int dir, 
                       const char *gfname, 
                       const char *coordname)
{
  
  int retval;
  int index;

  index = CCTK_VarIndex(gfname);

  if (index >= 0)
  { 
     retval = CCTK_CoordRegisterI(dir,index,coordname);
  }
  else
  {
    /* FIXME Should this register this error or a failed to register coord error */
    retval = ERROR_INDEXNOTINRANGE;
  }

  return retval;

}

void CCTK_FCALL CCTK_FNAME(CCTK_CoordRegister)
     (int *handle,int *dir,TWO_FORTSTRINGS_ARGS)
{
  TWO_FORTSTRINGS_CREATE(gf,name)
  *handle = CCTK_CoordRegister(*dir, gf, name);
  free(gf);
  free(name);
}




int CCTK_CoordRegisterRange(cGH *GH, 
                            CCTK_REAL min, 
                            CCTK_REAL max, 
                            const char *coordname)
{
  coord_range *newguy;
  int retval = 0;

  /* New coord_range */
  newguy = (coord_range *)malloc(sizeof(coord_range));

  if (newguy)
  {
    newguy->GH   = GH;

    newguy->props = CCTKi_CoordData(coordname);

#ifdef DEBUG_COORD
    printf("Registering range (%f,%f) for %s (on %x)\n",min,max,coordname,newguy);
#endif

    newguy->lower = min;
    newguy->upper = max;

    newguy->next = first;
    first = newguy;
  }
  else
  {
    CCTK_Warn (0,__LINE__,__FILE__,"Cactus",
		"Cannot allocate data for coordinate range");
  }

  return retval;

}

void CCTK_FCALL CCTK_FNAME(CCTK_CoordRegisterRange)
     (cGH *GH,CCTK_REAL *lower,CCTK_REAL *upper,ONE_FORTSTRING_ARG)
{
  ONE_FORTSTRING_CREATE(name)
  CCTK_CoordRegisterRange (GH,*lower,*upper,name);
  free(name);
}





int CCTK_CoordIndex(const char *name)
{
  int handle;
  struct Coordprops *coord;

  for (handle = 0;;handle++)
  {
    coord = (struct Coordprops *)Util_GetHandledData(coordinates, handle);
    if (coord)
    {
      if (CCTK_Equals(name,(const char *)coord->name))
        return coord->index;
    }
    else
    {
      CCTK_VWarn(2,__LINE__,__FILE__,"Cactus",
		 "Could not find registered coordinate %s",name);
      return ERROR_COORDNOTFOUND;
    }
    
  }
}

void CCTK_FCALL CCTK_FNAME(CCTK_CoordIndex)
     (int *index, ONE_FORTSTRING_ARG)
{
  ONE_FORTSTRING_CREATE(name)
  *index = CCTK_CoordIndex (name);
  free(name);
}





int CCTK_CoordDir(const char *name)
{
  int handle;
  struct Coordprops *coord;

  for (handle = 0;;handle++)
  {
    coord = (struct Coordprops *)Util_GetHandledData(coordinates, handle);
    if (coord)
    {
      if (CCTK_Equals(name,(const char *)coord->name))
        return coord->direction;
    }
    else
    {
      CCTK_VWarn(2,__LINE__,__FILE__,"Cactus",
		"Could not find registered coordinate %s",name);
      return ERROR_COORDNOTFOUND;
    }
    
  }
}

void CCTK_FCALL CCTK_FNAME(CCTK_CoordDir)
     (int *dir, ONE_FORTSTRING_ARG)
{
  ONE_FORTSTRING_CREATE(name)
  *dir = CCTK_CoordDir(name);
  free(name);
}





 /*@@
   @routine    CoordRange
   @date       10th January 2000
   @author     Gabrielle Allen
   @desc 
               Supplies the global range of the named coordinate.
   @enddesc 
   @calls     

   @var        
   @vdesc      
   @vtype      
   @vio        
   @vcomment   
   @endvar 

   @returntype int
   @returndesc Returns zero for success and negative for error
   @endreturndesc

   @@*/

int CCTK_CoordRange(cGH *GH, 
                    CCTK_REAL *lower, 
                    CCTK_REAL *upper, 
                    const char *name)
{
  coord_range *curr;

  for (curr=first;curr;curr=curr->next)
  {

#ifdef DEBUG_COORD
    printf("name  = %s, currname = %s\n",name,curr->props->name);
#endif

    if (curr->GH == GH && CCTK_Equals(name,curr->props->name))
    {
      *lower = curr->lower;
      *upper = curr->upper;

#ifdef DEBUG_COORD
      printf("Returning range (%f,%f) for %s (from %x)\n",
             *lower,*upper,name,curr);
#endif

      return 0;
    }
  }

  return -1;

}

void CCTK_FCALL CCTK_FNAME(CCTK_CoordRange)
     (int *ierr,cGH *GH,CCTK_REAL *lower,CCTK_REAL *upper,ONE_FORTSTRING_ARG)
{
  ONE_FORTSTRING_CREATE(name)
  *ierr = CCTK_CoordRange (GH,lower,upper,name);
  free(name);
}





 /*@@
   @routine    CoordLocalRange
   @date       10th January 2000
   @author     Gabrielle Allen
   @desc 
               Returns the range of the coordinate on this processor
               For now this is done in a straightforward manner, assuming
               that a regular grid is used and that the coordinate is a
               Grid function.
   @enddesc 
   @calls     

   @var        
   @vdesc      
   @vtype      
   @vio        
   @vcomment   
   @endvar 

   @returntype int
   @returndesc
   @endreturndesc

   @@*/

int CCTK_CoordLocalRange(cGH *GH, 
                         CCTK_REAL *lower, 
                         CCTK_REAL *upper, 
                         const char *name)
{

  CCTK_REAL global_lower;
  CCTK_REAL global_upper;
  int dir = CCTK_CoordDir(name);
  
  CCTK_CoordRange(GH,&global_lower,&global_upper,name);

  *lower = global_lower+GH->cctk_lbnd[dir-1]*GH->cctk_delta_space[dir-1];
  *upper = global_lower+GH->cctk_ubnd[dir-1]*GH->cctk_delta_space[dir-1];

#ifdef DEBUG  
  printf("Upper/Lower are %f,%f\n",*lower,*upper);
#endif

  return 0;

}
  
void CCTK_FCALL CCTK_FNAME(CCTK_CoordLocalRange)
     (int *ierr,cGH *GH,CCTK_REAL *lower,CCTK_REAL *upper,ONE_FORTSTRING_ARG)
{
  ONE_FORTSTRING_CREATE(name)
  *ierr = CCTK_CoordLocalRange (GH,lower,upper,name);
  free(name);
}





/* ================== */
/* Internal Functions */
/* ================== */

int CCTKi_CoordHandle(const char *name)
{
  int handle;
  struct Coordprops *coord;

  for (handle = 0;;handle++)
  {
    coord = (struct Coordprops *)Util_GetHandledData(coordinates, handle);
    if (coord)
    {
      if (CCTK_Equals(name,(const char *)coord->name))
        return handle;
    }
    else
    {
      CCTK_VWarn(2,__LINE__,__FILE__,"Cactus",
		"Could not find registered coordinate %s",name);
      return ERROR_COORDNOTFOUND;
    }
    
  }
}                       

struct Coordprops *CCTKi_CoordData(const char *name)
{
  int handle;
  struct Coordprops *coord;

  for (handle = 0;;handle++)
  {
    coord = (struct Coordprops *)Util_GetHandledData(coordinates, handle);
    if (coord)
    {
      if (CCTK_Equals(name,(const char *)coord->name))
        return coord;
    }
    else
    {
      CCTK_VWarn(2,__LINE__,__FILE__,"Cactus",
		"Could not find registered coordinate %s",name);
      return NULL;
    }
    
  }
}                       





/* DEPRECATED 4.0b5 */

int CCTK_RegisterCoordI(int dir, int index, const char*name)
{
  return CCTK_CoordRegisterI(dir,index,name);
}

void CCTK_FCALL CCTK_FNAME(CCTK_RegisterCoord)
     (int *handle, int *dir, TWO_FORTSTRINGS_ARGS)
{
  TWO_FORTSTRINGS_CREATE(gf,name)
  *handle = CCTK_RegisterCoord(*dir, gf, name);
  free(gf);
  free(name);
}

int CCTK_RegisterCoordRange(cGH *GH, 
                            CCTK_REAL min, 
                            CCTK_REAL max, 
                            const char *coordname)
{
  return CCTK_CoordRegisterRange(GH,min,max,coordname);
}

void CCTK_FCALL CCTK_FNAME(CCTK_RegisterCoordRange)
     (cGH *GH,CCTK_REAL *lower,CCTK_REAL *upper,ONE_FORTSTRING_ARG)
{
  ONE_FORTSTRING_CREATE(name)
  CCTK_RegisterCoordRange (GH,*lower,*upper,name);
  free(name);
}

int CCTK_RegisterCoord(int dir, 
                       const char *gfname, 
                       const char *coordname)
{
  return CCTK_CoordRegister(dir,gfname,coordname);
}

/* DEPRECATED */

CCTK_REAL CCTK_CoordOrigin(const char *name)
{
  int handle;
  struct Coordprops *coord;

  for (handle = 0;;handle++)
  {
    coord = (struct Coordprops *)Util_GetHandledData(coordinates, handle);
    if (coord)
    {
      if (CCTK_Equals(name,(const char *)coord->name))
        return coord->origin;
    }
    else
    {
      CCTK_VWarn(2,__LINE__,__FILE__,"Cactus",
		"Could not find registered coordinate %s",name);
      return ERROR_COORDNOTFOUND;
    }
    
  }

}