ASCOT5
Loading...
Searching...
No Matches
dist_5D.c
Go to the documentation of this file.
1
5#include <stdio.h>
6#include <stdlib.h>
7#include <math.h>
8#include "../ascot5.h"
9#include "../consts.h"
10#include "../physlib.h"
11#include "dist_5D.h"
12#include "../particle.h"
13
17size_t dist_5D_index(int i_r, int i_phi, int i_z, int i_ppara, int i_pperp,
18 int i_time, int i_q, size_t step_6, size_t step_5,
19 size_t step_4, size_t step_3, size_t step_2,
20 size_t step_1) {
21 return (size_t)(i_r) * step_6
22 + (size_t)(i_phi) * step_5
23 + (size_t)(i_z) * step_4
24 + (size_t)(i_ppara) * step_3
25 + (size_t)(i_pperp) * step_2
26 + (size_t)(i_time) * step_1
27 + (size_t)(i_q);
28}
29
36
37 size_t n_q = (size_t)(data->n_q);
38 size_t n_time = (size_t)(data->n_time);
39 size_t n_pperp = (size_t)(data->n_pperp);
40 size_t n_ppara = (size_t)(data->n_ppara);
41 size_t n_z = (size_t)(data->n_z);
42 size_t n_phi = (size_t)(data->n_phi);
43 data->step_6 = n_q * n_time * n_pperp * n_ppara * n_z * n_phi;
44 data->step_5 = n_q * n_time * n_pperp * n_ppara * n_z;
45 data->step_4 = n_q * n_time * n_pperp * n_ppara;
46 data->step_3 = n_q * n_time * n_pperp;
47 data->step_2 = n_q * n_time;
48 data->step_1 = n_q;
49
50 data->histogram = calloc(data->step_6 * (size_t)data->n_r, sizeof(real));
51 return data->histogram == NULL;
52}
53
60 free(data->histogram);
61}
62
69 GPU_MAP_TO_DEVICE(
70 data->histogram[0:data->n_r*data->n_phi*data->n_z*data->n_ppara*data->n_pperp*data->n_time*data->n_q]
71 )
72}
73
86 particle_simd_fo* p_i) {
87
88 GPU_PARALLEL_LOOP_ALL_LEVELS
89 for(int i = 0; i < p_f->n_mrk; i++) {
90 if(p_f->running[i]) {
91 real i_r = floor((p_f->r[i] - dist->min_r)
92 / ((dist->max_r - dist->min_r)/dist->n_r));
93
94 real phi = fmod(p_f->phi[i], 2*CONST_PI);
95 if(phi < 0) {
96 phi += 2*CONST_PI;
97 }
98 int i_phi = floor((phi - dist->min_phi)
99 / ((dist->max_phi - dist->min_phi)/dist->n_phi));
100
101 int i_z = floor((p_f->z[i] - dist->min_z)
102 / ((dist->max_z - dist->min_z) / dist->n_z));
103
104 real ppara = ( p_f->p_r[i] * p_f->B_r[i]
105 + p_f->p_phi[i] * p_f->B_phi[i]
106 + p_f->p_z[i] * p_f->B_z[i])
107 / sqrt( p_f->B_r[i] * p_f->B_r[i]
108 + p_f->B_phi[i]* p_f->B_phi[i]
109 + p_f->B_z[i] * p_f->B_z[i]);
110 int i_ppara = floor((ppara - dist->min_ppara)
111 / ((dist->max_ppara - dist->min_ppara) / dist->n_ppara));
112
113 real pperp = sqrt(
114 p_f->p_r[i] * p_f->p_r[i]
115 + p_f->p_phi[i] * p_f->p_phi[i]
116 + p_f->p_z[i] * p_f->p_z[i]
117 - ppara * ppara);
118 int i_pperp = floor((pperp - dist->min_pperp)
119 / ((dist->max_pperp - dist->min_pperp) / dist->n_pperp));
120
121 int i_time = floor((p_f->time[i] - dist->min_time)
122 / ((dist->max_time - dist->min_time) / dist->n_time));
123
124 int i_q = floor((p_f->charge[i]/CONST_E - dist->min_q)
125 / ((dist->max_q - dist->min_q) / dist->n_q));
126
127 if(i_r >= 0 && i_r <= dist->n_r - 1 &&
128 i_phi >= 0 && i_phi <= dist->n_phi - 1 &&
129 i_z >= 0 && i_z <= dist->n_z - 1 &&
130 i_ppara >= 0 && i_ppara <= dist->n_ppara - 1 &&
131 i_pperp >= 0 && i_pperp <= dist->n_pperp - 1 &&
132 i_time >= 0 && i_time <= dist->n_time - 1 &&
133 i_q >= 0 && i_q <= dist->n_q - 1 ) {
134 real weight = p_f->weight[i] * (p_f->time[i] - p_i->time[i]);
135
136 size_t index = dist_5D_index(
137 i_r, i_phi, i_z, i_ppara, i_pperp, i_time,
138 i_q, dist->step_6, dist->step_5, dist->step_4,
139 dist->step_3, dist->step_2, dist->step_1);
140 GPU_ATOMIC
141 dist->histogram[index] += weight;
142 }
143 }
144 }
145}
146
159 particle_simd_gc* p_i) {
160 real phi[NSIMD];
161 real pperp[NSIMD];
162
163 int i_r[NSIMD];
164 int i_phi[NSIMD];
165 int i_z[NSIMD];
166 int i_ppara[NSIMD];
167 int i_pperp[NSIMD];
168 int i_time[NSIMD];
169 int i_q[NSIMD];
170
171 int ok[NSIMD];
172 real weight[NSIMD];
173
174 #pragma omp simd
175 for(int i = 0; i < NSIMD; i++) {
176 if(p_f->running[i]) {
177 i_r[i] = floor((p_f->r[i] - dist->min_r)
178 / ((dist->max_r - dist->min_r)/dist->n_r));
179
180 phi[i] = fmod(p_f->phi[i], 2*CONST_PI);
181 if(phi[i] < 0) {
182 phi[i] = phi[i] + 2*CONST_PI;
183 }
184 i_phi[i] = floor((phi[i] - dist->min_phi)
185 / ((dist->max_phi - dist->min_phi)/dist->n_phi));
186
187 i_z[i] = floor((p_f->z[i] - dist->min_z)
188 / ((dist->max_z - dist->min_z) / dist->n_z));
189
190 i_ppara[i] = floor((p_f->ppar[i] - dist->min_ppara)
191 / ((dist->max_ppara - dist->min_ppara) / dist->n_ppara));
192
193 pperp[i] = sqrt(2 * sqrt( p_f->B_r[i] * p_f->B_r[i]
194 + p_f->B_phi[i] * p_f->B_phi[i]
195 + p_f->B_z[i] * p_f->B_z[i] )
196 * p_f->mu[i] * p_f->mass[i]);
197 i_pperp[i] = floor((pperp[i] - dist->min_pperp)
198 / ((dist->max_pperp - dist->min_pperp) / dist->n_pperp));
199
200 i_time[i] = floor((p_f->time[i] - dist->min_time)
201 / ((dist->max_time - dist->min_time) / dist->n_time));
202
203 i_q[i] = floor((p_f->charge[i]/CONST_E - dist->min_q)
204 / ((dist->max_q - dist->min_q) / dist->n_q));
205
206 if(i_r[i] >= 0 && i_r[i] <= dist->n_r - 1 &&
207 i_phi[i] >= 0 && i_phi[i] <= dist->n_phi - 1 &&
208 i_z[i] >= 0 && i_z[i] <= dist->n_z - 1 &&
209 i_ppara[i] >= 0 && i_ppara[i] <= dist->n_ppara - 1 &&
210 i_pperp[i] >= 0 && i_pperp[i] <= dist->n_pperp - 1 &&
211 i_time[i] >= 0 && i_time[i] <= dist->n_time - 1 &&
212 i_q[i] >= 0 && i_q[i] <= dist->n_q - 1 ) {
213 ok[i] = 1;
214 weight[i] = p_f->weight[i] * (p_f->time[i] - p_i->time[i]);
215 }
216 else {
217 ok[i] = 0;
218 }
219 }
220 }
221
222 for(int i = 0; i < NSIMD; i++) {
223 if(p_f->running[i] && ok[i]) {
224 size_t index = dist_5D_index(
225 i_r[i], i_phi[i], i_z[i], i_ppara[i], i_pperp[i], i_time[i],
226 i_q[i], dist->step_6, dist->step_5, dist->step_4,
227 dist->step_3, dist->step_2, dist->step_1);
228 #pragma omp atomic
229 dist->histogram[index] += weight[i];
230 }
231 }
232}
Main header file for ASCOT5.
double real
Definition ascot5.h:85
#define NSIMD
Number of particles simulated simultaneously in a particle group operations.
Definition ascot5.h:91
Header file containing physical and mathematical constants.
#define CONST_PI
pi
Definition consts.h:11
#define CONST_E
Elementary charge [C].
Definition consts.h:32
void dist_5D_update_gc(dist_5D_data *dist, particle_simd_gc *p_f, particle_simd_gc *p_i)
Update the histogram from guiding center markers.
Definition dist_5D.c:158
size_t dist_5D_index(int i_r, int i_phi, int i_z, int i_ppara, int i_pperp, int i_time, int i_q, size_t step_6, size_t step_5, size_t step_4, size_t step_3, size_t step_2, size_t step_1)
Function for calculating the index in the histogram array.
Definition dist_5D.c:17
void dist_5D_update_fo(dist_5D_data *dist, particle_simd_fo *p_f, particle_simd_fo *p_i)
Update the histogram from full-orbit particles.
Definition dist_5D.c:85
void dist_5D_free(dist_5D_data *data)
Free allocated resources.
Definition dist_5D.c:59
int dist_5D_init(dist_5D_data *data)
Initializes distribution from offload data.
Definition dist_5D.c:35
void dist_5D_offload(dist_5D_data *data)
Offload data to the accelerator.
Definition dist_5D.c:68
Header file for dist_5D.c.
real fmod(real x, real y)
Compute the modulus of two real numbers.
Definition math.c:22
Header file for math.c.
Header file for particle.c.
Methods to evaluate elementary physical quantities.
Histogram parameters.
Definition dist_5D.h:15
real min_time
Definition dist_5D.h:37
real max_r
Definition dist_5D.h:18
real max_pperp
Definition dist_5D.h:34
size_t step_5
Definition dist_5D.h:48
real min_phi
Definition dist_5D.h:21
size_t step_3
Definition dist_5D.h:46
real max_phi
Definition dist_5D.h:22
real min_ppara
Definition dist_5D.h:29
size_t step_1
Definition dist_5D.h:44
real max_z
Definition dist_5D.h:26
real max_time
Definition dist_5D.h:38
size_t step_2
Definition dist_5D.h:45
int n_ppara
Definition dist_5D.h:28
size_t step_6
Definition dist_5D.h:49
int n_pperp
Definition dist_5D.h:32
real min_z
Definition dist_5D.h:25
real max_ppara
Definition dist_5D.h:30
real min_r
Definition dist_5D.h:17
real max_q
Definition dist_5D.h:42
real * histogram
Definition dist_5D.h:51
real min_pperp
Definition dist_5D.h:33
size_t step_4
Definition dist_5D.h:47
real min_q
Definition dist_5D.h:41
Struct representing NSIMD particle markers.
Definition particle.h:210
integer * running
Definition particle.h:252
Struct representing NSIMD guiding center markers.
Definition particle.h:275