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
|
/* Copyright 2019 Andrew Myers, Axel Huebl, David Grote
* Luca Fedeli, Maxence Thevenet, Remi Lehe
* Weiqun Zhang
*
* This file is part of WarpX.
*
* License: BSD-3-Clause-LBNL
*/
#include "BoundaryConditions/PML.H"
#include "Initialization/WarpXAMReXInit.H"
#include "Particles/MultiParticleContainer.H"
#include "Particles/WarpXParticleContainer.H"
#include "Utils/WarpXUtil.H"
#include "WarpX.H"
#include "WarpXWrappers.h"
#include "WarpX_py.H"
#include <AMReX.H>
#include <AMReX_ArrayOfStructs.H>
#include <AMReX_Box.H>
#include <AMReX_FArrayBox.H>
#include <AMReX_FabArray.H>
#include <AMReX_Geometry.H>
#include <AMReX_GpuControl.H>
#include <AMReX_IndexType.H>
#include <AMReX_IntVect.H>
#include <AMReX_MFIter.H>
#include <AMReX_MultiFab.H>
#include <AMReX_PODVector.H>
#include <AMReX_ParIter.H>
#include <AMReX_Particles.H>
#include <AMReX_StructOfArrays.H>
#include <array>
#include <cstdlib>
namespace
{
amrex::Real** getMultiFabPointers(const amrex::MultiFab& mf, int *num_boxes, int *ncomps, int **ngrowvect, int **shapes)
{
*ncomps = mf.nComp();
*num_boxes = mf.local_size();
int shapesize = AMREX_SPACEDIM;
*ngrowvect = static_cast<int*>(malloc(sizeof(int)*shapesize));
for (int j = 0; j < AMREX_SPACEDIM; ++j) {
(*ngrowvect)[j] = mf.nGrow(j);
}
if (mf.nComp() > 1) shapesize += 1;
*shapes = static_cast<int*>(malloc(sizeof(int)*shapesize * (*num_boxes)));
auto data =
static_cast<amrex::Real**>(malloc((*num_boxes) * sizeof(amrex::Real*)));
#ifdef AMREX_USE_OMP
#pragma omp parallel if (amrex::Gpu::notInLaunchRegion())
#endif
for ( amrex::MFIter mfi(mf, false); mfi.isValid(); ++mfi ) {
int i = mfi.LocalIndex();
data[i] = (amrex::Real*) mf[mfi].dataPtr();
for (int j = 0; j < AMREX_SPACEDIM; ++j) {
(*shapes)[shapesize*i+j] = mf[mfi].box().length(j);
}
if (mf.nComp() > 1) (*shapes)[shapesize*i+AMREX_SPACEDIM] = mf.nComp();
}
return data;
}
int* getMultiFabLoVects(const amrex::MultiFab& mf, int *num_boxes, int **ngrowvect)
{
int shapesize = AMREX_SPACEDIM;
*ngrowvect = static_cast<int*>(malloc(sizeof(int)*shapesize));
for (int j = 0; j < AMREX_SPACEDIM; ++j) {
(*ngrowvect)[j] = mf.nGrow(j);
}
*num_boxes = mf.local_size();
int *loVects = (int*) malloc((*num_boxes)*AMREX_SPACEDIM * sizeof(int));
int i = 0;
for ( amrex::MFIter mfi(mf, false); mfi.isValid(); ++mfi, ++i ) {
const int* loVect = mf[mfi].loVect();
for (int j = 0; j < AMREX_SPACEDIM; ++j) {
loVects[AMREX_SPACEDIM*i+j] = loVect[j];
}
}
return loVects;
}
// Copy the nodal flag data and return the copy:
// the nodal flag data should not be modifiable from Python.
int* getFieldNodalFlagData ( const amrex::MultiFab& mf )
{
const amrex::IntVect nodal_flag( mf.ixType().toIntVect() );
int *nodal_flag_data = (int*) malloc(AMREX_SPACEDIM * sizeof(int));
constexpr int NODE = amrex::IndexType::NODE;
for (int i=0 ; i < AMREX_SPACEDIM ; i++) {
nodal_flag_data[i] = (nodal_flag[i] == NODE ? 1 : 0);
}
return nodal_flag_data;
}
}
extern "C"
{
int warpx_Real_size()
{
return (int)sizeof(amrex::Real);
}
int warpx_ParticleReal_size()
{
return (int)sizeof(amrex::ParticleReal);
}
int warpx_nSpecies()
{
const auto & mypc = WarpX::GetInstance().GetPartContainer();
return mypc.nSpecies();
}
bool warpx_use_fdtd_nci_corr()
{
return WarpX::use_fdtd_nci_corr;
}
int warpx_galerkin_interpolation()
{
return WarpX::galerkin_interpolation;
}
int warpx_nComps()
{
return PIdx::nattribs;
}
int warpx_SpaceDim()
{
return AMREX_SPACEDIM;
}
void amrex_init (int argc, char* argv[])
{
warpx_amrex_init(argc, argv);
}
void amrex_init_with_inited_mpi (int argc, char* argv[], MPI_Comm mpicomm)
{
warpx_amrex_init(argc, argv, true, mpicomm);
}
void amrex_finalize (int /*finalize_mpi*/)
{
amrex::Finalize();
}
void warpx_init ()
{
WarpX& warpx = WarpX::GetInstance();
warpx.InitData();
if (warpx_py_afterinit) warpx_py_afterinit();
if (warpx_py_particleloader) warpx_py_particleloader();
}
void warpx_finalize ()
{
WarpX::ResetInstance();
}
void warpx_set_callback_py_afterinit (WARPX_CALLBACK_PY_FUNC_0 callback)
{
warpx_py_afterinit = callback;
}
void warpx_set_callback_py_beforeEsolve (WARPX_CALLBACK_PY_FUNC_0 callback)
{
warpx_py_beforeEsolve = callback;
}
void warpx_set_callback_py_afterEsolve (WARPX_CALLBACK_PY_FUNC_0 callback)
{
warpx_py_afterEsolve = callback;
}
void warpx_set_callback_py_beforedeposition (WARPX_CALLBACK_PY_FUNC_0 callback)
{
warpx_py_beforedeposition = callback;
}
void warpx_set_callback_py_afterdeposition (WARPX_CALLBACK_PY_FUNC_0 callback)
{
warpx_py_afterdeposition = callback;
}
void warpx_set_callback_py_particlescraper (WARPX_CALLBACK_PY_FUNC_0 callback)
{
warpx_py_particlescraper = callback;
}
void warpx_set_callback_py_particleloader (WARPX_CALLBACK_PY_FUNC_0 callback)
{
warpx_py_particleloader = callback;
}
void warpx_set_callback_py_beforestep (WARPX_CALLBACK_PY_FUNC_0 callback)
{
warpx_py_beforestep = callback;
}
void warpx_set_callback_py_afterstep (WARPX_CALLBACK_PY_FUNC_0 callback)
{
warpx_py_afterstep = callback;
}
void warpx_set_callback_py_afterrestart (WARPX_CALLBACK_PY_FUNC_0 callback)
{
warpx_py_afterrestart = callback;
}
void warpx_set_callback_py_particleinjection (WARPX_CALLBACK_PY_FUNC_0 callback)
{
warpx_py_particleinjection = callback;
}
void warpx_set_callback_py_appliedfields (WARPX_CALLBACK_PY_FUNC_0 callback)
{
warpx_py_appliedfields = callback;
}
void warpx_evolve (int numsteps)
{
WarpX& warpx = WarpX::GetInstance();
warpx.Evolve(numsteps);
}
void warpx_addNParticles(int speciesnumber, int lenx,
amrex::ParticleReal const * x, amrex::ParticleReal const * y, amrex::ParticleReal const * z,
amrex::ParticleReal const * vx, amrex::ParticleReal const * vy, amrex::ParticleReal const * vz,
int nattr, amrex::ParticleReal const * attr, int uniqueparticles)
{
auto & mypc = WarpX::GetInstance().GetPartContainer();
auto & myspc = mypc.GetParticleContainer(speciesnumber);
const int lev = 0;
myspc.AddNParticles(lev, lenx, x, y, z, vx, vy, vz, nattr, attr, uniqueparticles);
}
void warpx_ConvertLabParamsToBoost()
{
ConvertLabParamsToBoost();
}
void warpx_ReadBCParams()
{
ReadBCParams();
}
void warpx_CheckGriddingForRZSpectral()
{
CheckGriddingForRZSpectral();
}
amrex::Real warpx_getProbLo(int dir)
{
WarpX& warpx = WarpX::GetInstance();
const amrex::Geometry& geom = warpx.Geom(0);
return geom.ProbLo(dir);
}
amrex::Real warpx_getProbHi(int dir)
{
WarpX& warpx = WarpX::GetInstance();
const amrex::Geometry& geom = warpx.Geom(0);
return geom.ProbHi(dir);
}
amrex::Real warpx_getCellSize(int dir, int lev) {
const std::array<amrex::Real,3>& dx = WarpX::CellSize(lev);
return dx[dir];
}
long warpx_getNumParticles(int speciesnumber) {
const auto & mypc = WarpX::GetInstance().GetPartContainer();
const auto & myspc = mypc.GetParticleContainer(speciesnumber);
return myspc.TotalNumberOfParticles();
}
#define WARPX_GET_FIELD(FIELD, GETTER) \
amrex::Real** FIELD(int lev, int direction, \
int *return_size, int *ncomps, int **ngrowvect, int **shapes) { \
auto & mf = GETTER(lev, direction); \
return getMultiFabPointers(mf, return_size, ncomps, ngrowvect, shapes); \
}
#define WARPX_GET_LOVECTS(FIELD, GETTER) \
int* FIELD(int lev, int direction, \
int *return_size, int **ngrowvect) { \
auto & mf = GETTER(lev, direction); \
return getMultiFabLoVects(mf, return_size, ngrowvect); \
}
WARPX_GET_FIELD(warpx_getEfield, WarpX::GetInstance().getEfield)
WARPX_GET_FIELD(warpx_getEfieldCP, WarpX::GetInstance().getEfield_cp)
WARPX_GET_FIELD(warpx_getEfieldFP, WarpX::GetInstance().getEfield_fp)
WARPX_GET_FIELD(warpx_getBfield, WarpX::GetInstance().getBfield)
WARPX_GET_FIELD(warpx_getBfieldCP, WarpX::GetInstance().getBfield_cp)
WARPX_GET_FIELD(warpx_getBfieldFP, WarpX::GetInstance().getBfield_fp)
WARPX_GET_FIELD(warpx_getCurrentDensity, WarpX::GetInstance().getcurrent)
WARPX_GET_FIELD(warpx_getCurrentDensityCP, WarpX::GetInstance().getcurrent_cp)
WARPX_GET_FIELD(warpx_getCurrentDensityFP, WarpX::GetInstance().getcurrent_fp)
WARPX_GET_LOVECTS(warpx_getEfieldLoVects, WarpX::GetInstance().getEfield)
WARPX_GET_LOVECTS(warpx_getEfieldCPLoVects, WarpX::GetInstance().getEfield_cp)
WARPX_GET_LOVECTS(warpx_getEfieldFPLoVects, WarpX::GetInstance().getEfield_fp)
WARPX_GET_LOVECTS(warpx_getBfieldLoVects, WarpX::GetInstance().getBfield)
WARPX_GET_LOVECTS(warpx_getBfieldCPLoVects, WarpX::GetInstance().getBfield_cp)
WARPX_GET_LOVECTS(warpx_getBfieldFPLoVects, WarpX::GetInstance().getBfield_fp)
WARPX_GET_LOVECTS(warpx_getCurrentDensityLoVects, WarpX::GetInstance().getcurrent)
WARPX_GET_LOVECTS(warpx_getCurrentDensityCPLoVects, WarpX::GetInstance().getcurrent_cp)
WARPX_GET_LOVECTS(warpx_getCurrentDensityFPLoVects, WarpX::GetInstance().getcurrent_fp)
int* warpx_getEx_nodal_flag() {return getFieldNodalFlagData( WarpX::GetInstance().getEfield(0,0) );}
int* warpx_getEy_nodal_flag() {return getFieldNodalFlagData( WarpX::GetInstance().getEfield(0,1) );}
int* warpx_getEz_nodal_flag() {return getFieldNodalFlagData( WarpX::GetInstance().getEfield(0,2) );}
int* warpx_getBx_nodal_flag() {return getFieldNodalFlagData( WarpX::GetInstance().getBfield(0,0) );}
int* warpx_getBy_nodal_flag() {return getFieldNodalFlagData( WarpX::GetInstance().getBfield(0,1) );}
int* warpx_getBz_nodal_flag() {return getFieldNodalFlagData( WarpX::GetInstance().getBfield(0,2) );}
int* warpx_getJx_nodal_flag() {return getFieldNodalFlagData( WarpX::GetInstance().getcurrent(0,0) );}
int* warpx_getJy_nodal_flag() {return getFieldNodalFlagData( WarpX::GetInstance().getcurrent(0,1) );}
int* warpx_getJz_nodal_flag() {return getFieldNodalFlagData( WarpX::GetInstance().getcurrent(0,2) );}
int* warpx_getRho_nodal_flag() {return getFieldNodalFlagData( WarpX::GetInstance().getrho_fp(0) );}
#define WARPX_GET_SCALAR(SCALAR, GETTER) \
amrex::Real** SCALAR(int lev, \
int *return_size, int *ncomps, int **ngrowvect, int **shapes) { \
auto & mf = GETTER(lev); \
return getMultiFabPointers(mf, return_size, ncomps, ngrowvect, shapes); \
}
#define WARPX_GET_LOVECTS_SCALAR(SCALAR, GETTER) \
int* SCALAR(int lev, \
int *return_size, int **ngrowvect) { \
auto & mf = GETTER(lev); \
return getMultiFabLoVects(mf, return_size, ngrowvect); \
}
WARPX_GET_SCALAR(warpx_getChargeDensityCP, WarpX::GetInstance().getrho_cp)
WARPX_GET_SCALAR(warpx_getChargeDensityFP, WarpX::GetInstance().getrho_fp)
WARPX_GET_LOVECTS_SCALAR(warpx_getChargeDensityCPLoVects, WarpX::GetInstance().getrho_cp)
WARPX_GET_LOVECTS_SCALAR(warpx_getChargeDensityFPLoVects, WarpX::GetInstance().getrho_fp)
#define WARPX_GET_FIELD_PML(FIELD, GETTER) \
amrex::Real** FIELD(int lev, int direction, \
int *return_size, int *ncomps, int **ngrowvect, int **shapes) { \
auto * pml = WarpX::GetInstance().GetPML(lev); \
if (pml) { \
auto & mf = *(pml->GETTER()[direction]); \
return getMultiFabPointers(mf, return_size, ncomps, ngrowvect, shapes); \
} else { \
return nullptr; \
} \
}
#define WARPX_GET_LOVECTS_PML(FIELD, GETTER) \
int* FIELD(int lev, int direction, \
int *return_size, int **ngrowvect) { \
auto * pml = WarpX::GetInstance().GetPML(lev); \
if (pml) { \
auto & mf = *(pml->GETTER()[direction]); \
return getMultiFabLoVects(mf, return_size, ngrowvect); \
} else { \
return nullptr; \
} \
}
WARPX_GET_FIELD_PML(warpx_getEfieldCP_PML, GetE_cp)
WARPX_GET_FIELD_PML(warpx_getEfieldFP_PML, GetE_fp)
WARPX_GET_FIELD_PML(warpx_getBfieldCP_PML, GetB_cp)
WARPX_GET_FIELD_PML(warpx_getBfieldFP_PML, GetB_fp)
WARPX_GET_FIELD_PML(warpx_getCurrentDensityCP_PML, Getj_cp)
WARPX_GET_FIELD_PML(warpx_getCurrentDensityFP_PML, Getj_fp)
WARPX_GET_LOVECTS_PML(warpx_getEfieldCPLoVects_PML, GetE_cp)
WARPX_GET_LOVECTS_PML(warpx_getEfieldFPLoVects_PML, GetE_fp)
WARPX_GET_LOVECTS_PML(warpx_getBfieldCPLoVects_PML, GetB_cp)
WARPX_GET_LOVECTS_PML(warpx_getBfieldFPLoVects_PML, GetB_fp)
WARPX_GET_LOVECTS_PML(warpx_getCurrentDensityCPLoVects_PML, Getj_cp)
WARPX_GET_LOVECTS_PML(warpx_getCurrentDensityFPLoVects_PML, Getj_fp)
amrex::ParticleReal** warpx_getParticleStructs(int speciesnumber, int lev,
int* num_tiles, int** particles_per_tile) {
const auto & mypc = WarpX::GetInstance().GetPartContainer();
auto & myspc = mypc.GetParticleContainer(speciesnumber);
int i = 0;
for (WarpXParIter pti(myspc, lev); pti.isValid(); ++pti, ++i) {}
// *num_tiles = myspc.numLocalTilesAtLevel(lev);
*num_tiles = i;
*particles_per_tile = (int*) malloc(*num_tiles*sizeof(int));
amrex::ParticleReal** data = (amrex::ParticleReal**) malloc(*num_tiles*sizeof(typename WarpXParticleContainer::ParticleType*));
i = 0;
for (WarpXParIter pti(myspc, lev); pti.isValid(); ++pti, ++i) {
auto& aos = pti.GetArrayOfStructs();
data[i] = (amrex::ParticleReal*) aos.data();
(*particles_per_tile)[i] = pti.numParticles();
}
return data;
}
amrex::ParticleReal** warpx_getParticleArrays(int speciesnumber, int comp, int lev,
int* num_tiles, int** particles_per_tile) {
const auto & mypc = WarpX::GetInstance().GetPartContainer();
auto & myspc = mypc.GetParticleContainer(speciesnumber);
int i = 0;
for (WarpXParIter pti(myspc, lev); pti.isValid(); ++pti, ++i) {}
// *num_tiles = myspc.numLocalTilesAtLevel(lev);
*num_tiles = i;
*particles_per_tile = (int*) malloc(*num_tiles*sizeof(int));
amrex::ParticleReal** data = (amrex::ParticleReal**) malloc(*num_tiles*sizeof(amrex::ParticleReal*));
i = 0;
for (WarpXParIter pti(myspc, lev); pti.isValid(); ++pti, ++i) {
auto& soa = pti.GetStructOfArrays();
data[i] = (amrex::ParticleReal*) soa.GetRealData(comp).dataPtr();
(*particles_per_tile)[i] = pti.numParticles();
}
return data;
}
void warpx_ComputeDt () {
WarpX& warpx = WarpX::GetInstance();
warpx.ComputeDt ();
}
void warpx_MoveWindow (int step,bool move_j) {
WarpX& warpx = WarpX::GetInstance();
warpx.MoveWindow (step, move_j);
}
void warpx_EvolveE (amrex::Real dt) {
WarpX& warpx = WarpX::GetInstance();
warpx.EvolveE (dt);
}
void warpx_EvolveB (amrex::Real dt, DtType a_dt_type) {
WarpX& warpx = WarpX::GetInstance();
warpx.EvolveB (dt, a_dt_type);
}
void warpx_FillBoundaryE () {
WarpX& warpx = WarpX::GetInstance();
warpx.FillBoundaryE (warpx.getngE());
}
void warpx_FillBoundaryB () {
WarpX& warpx = WarpX::GetInstance();
warpx.FillBoundaryB (warpx.getngE());
}
void warpx_SyncCurrent () {
WarpX& warpx = WarpX::GetInstance();
warpx.SyncCurrent ();
}
void warpx_UpdateAuxilaryData () {
WarpX& warpx = WarpX::GetInstance();
warpx.UpdateAuxilaryData ();
}
void warpx_PushParticlesandDepose (amrex::Real cur_time) {
WarpX& warpx = WarpX::GetInstance();
warpx.PushParticlesandDepose (cur_time);
}
int warpx_getistep (int lev) {
WarpX& warpx = WarpX::GetInstance();
return warpx.getistep (lev);
}
void warpx_setistep (int lev, int ii) {
WarpX& warpx = WarpX::GetInstance();
warpx.setistep (lev, ii);
}
amrex::Real warpx_gett_new (int lev) {
WarpX& warpx = WarpX::GetInstance();
return warpx.gett_new (lev);
}
void warpx_sett_new (int lev, amrex::Real time) {
WarpX& warpx = WarpX::GetInstance();
warpx.sett_new (lev, time);
}
amrex::Real warpx_getdt (int lev) {
WarpX& warpx = WarpX::GetInstance();
return warpx.getdt (lev);
}
int warpx_maxStep () {
WarpX& warpx = WarpX::GetInstance();
return warpx.maxStep ();
}
amrex::Real warpx_stopTime () {
WarpX& warpx = WarpX::GetInstance();
return warpx.stopTime ();
}
int warpx_finestLevel () {
WarpX& warpx = WarpX::GetInstance();
return warpx.finestLevel ();
}
int warpx_getMyProc () {
return amrex::ParallelDescriptor::MyProc();
}
int warpx_getNProcs () {
return amrex::ParallelDescriptor::NProcs();
}
void mypc_Redistribute () {
auto & mypc = WarpX::GetInstance().GetPartContainer();
mypc.Redistribute();
}
}
|