aboutsummaryrefslogtreecommitdiff
path: root/src/CoordinateStuff.c
blob: 025fc01d140e9b498f8b8b8450fa0135095648f3 (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
 /*@@
   @file      CoordinateStuff.c
   @date      
   @author    Cactus Maintainers
   @desc 
   Extra functions for coordinate information
   @enddesc 
   @version $Header$
 @@*/

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

#include "cctk.h"

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

CCTK_FILEVERSION(CactusWave_WaveBinarySource_CoordinateStuff_c)

/********************************************************************
 *********************     Local Data Types   ***********************
 ********************************************************************/


/********************************************************************
 ********************* Local Routine Prototypes *********************
 ********************************************************************/


/********************************************************************
 *********************     Local Data   *****************************
 ********************************************************************/


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

int IndexCeilC(cGH *GH, CCTK_REAL coord_value, int d);
int IndexFloorC(cGH *GH, CCTK_REAL coord_value, int d);


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


 /*@@
   @routine    IndexFloorC
   @date       Fri Jan  7 10:34:29 2000
   @author     Gerd Lanfermann
   @desc 
     For a given physical, global coordinate, IndexFloor returns
     the closest lower grid index *locally* in the direction d,
     this includes ghostzones;

     Other return values: 
     -1 : gridindex not on this gridpatch
     -2 : illegal dimension
     -3 : coordinate value outside grid
   @enddesc 
   @calls     
   @calledby   
   @history 
 
   @endhistory 

@@*/

int IndexFloorC(cGH *GH, CCTK_REAL coord_value, int d)
{ 
  int index_low;
  CCTK_REAL cmin,cmax;

  if (d>=0 || d<3)
  {
    CCTK_CoordRange(GH,&cmin,&cmax, d+1, NULL, "cart3d");

    if ((coord_value<cmin)||(coord_value>cmax)) 
    {
      CCTK_VWarn(2,__LINE__,__FILE__,CCTK_THORNSTRING, 
		 "IndexFloor: coordinate value outside grid [%f,%f]:  %f \n", 
		 cmin, cmax, coord_value); 
      index_low = -3;
    }
    else
    {
      index_low    = floor((coord_value-cmin)/ GH->cctk_delta_space[d])
	  - GH->cctk_lbnd[d];

      if (index_low<0 || index_low>=GH->cctk_lsh[d])
      {
	index_low = -1;
      }
    }
  }
  else 
  {
    CCTK_WARN(1,"IndexFloorC: dimension is not valid");
    index_low = -2;
  }
 
  return(index_low);
}


 /*@@
   @routine    IndexCeilC
   @date       Fri Jan  7 10:34:29 2000
   @author     Gerd Lanfermann
   @desc 
     For a given physical, global coordinate, IndexCeil returns
     the closest upper grid index *locally* in the direction d
     including ghostzones.
     Other return values: 
     -1 : grid index not on this gridpatch
     -2 : illegal dimension
     -3 : coordinate value outside grid
   @enddesc 
   @calls     
   @calledby   
   @history 
 
   @endhistory 

@@*/


int IndexCeilC(cGH *GH, CCTK_REAL coord_value, int d)
{  
  int index_up;
  CCTK_REAL cmin,cmax;

  if (d>=0 || d<3)
  {
    CCTK_CoordRange(GH,&cmin,&cmax, d+1, NULL, "cart3d");

    if ((coord_value<cmin)||(coord_value>cmax)) 
    {
      CCTK_VWarn(2,__LINE__,__FILE__,CCTK_THORNSTRING, 
		 "IndexCeil: coordinate value outside grid [%f,%f]:  %f \n", 
		 cmin, cmax, coord_value); 
      index_up = -3;
    }
    else
    {
      index_up   = ceil((coord_value-cmin)/ GH->cctk_delta_space[d])
	  -GH->cctk_lbnd[d];
  
      if (index_up<0 || index_up>=GH->cctk_lsh[d])
      {
	index_up = -1;
      }
    }
  }
  else 
  {
    CCTK_WARN(1,"IndexCeilC: dimension is not valid");
    index_up = -2;
  }

  return(index_up);
}