-
Notifications
You must be signed in to change notification settings - Fork 0
/
mprdpush2mod.f
480 lines (480 loc) · 18.9 KB
/
mprdpush2mod.f
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
!-----------------------------------------------------------------------
!
module mprdpush2d
!
! Fortran90 interface to parallel 2d PIC Fortran77 library
! mprdpush2lib.f
! mprdpush2mod.f contains multi-tasking interface procedures to process
! relativistic particles with darwin electric and
! magnetic fields:
! defines module mprdpush2d
! rdmjpost => impgrmjpost2 deposits relativistic momentum flux, with
! various interpolations and optimizations.
! calls MPGRMJPOST2, MPGSRMJPOST2, MPGRMJPOST2L,
! MPGSRMJPOST2L, MPGRMJPOST22, MPGSRMJPOST22, MPGRMJPOST22L,
! or MPGSRMJPOST22L
! rdcjpost => impgrdcjpost2 deposits relativistic momentum flux,
! acceleration density, and current density, with various
! interpolations and optimizations.
! calls MPGRDCJPOST2, MPGSRDCJPOST2, MPGRDCJPOST2L,
! MPGSRDCJPOST2L, MPGRDCJPOST22, MPGSRDCJPOST22,
! MPGRDCJPOST22L, or MPGSRDCJPOST22L
! written by viktor k. decyk, ucla
! copyright 2000, regents of the university of california
! update: december 12, 2009
!
use globals, only: LINEAR, QUADRATIC, STANDARD, LOOKAHEAD, VECTOR
use prdpush2d, only: wtimer
use mp0d, only: ntasks
implicit none
private
public :: LINEAR, QUADRATIC, STANDARD, LOOKAHEAD, VECTOR
public :: wtimer, rdmjpost, rdcjpost
!
! buffer data for momentum flux
real, dimension(:,:,:,:,:), allocatable :: amup
integer :: szbufa = 0
save
!
! define interface to Fortran77 procedures
!
interface
subroutine MPGRMJPOST2(part,amu,npp,nps,noff,qm,ci,idimp,npmax,&
&nblok,nxv,nypmx,amup,idtask,nmt,ierr)
implicit none
integer :: idimp, npmax, nblok, nxv, nypmx, nmt, ierr
real :: qm, ci
real, dimension(idimp,npmax,nblok) :: part
real, dimension(4,nxv,nypmx,nblok) :: amu
integer, dimension(nblok) :: npp, nps, noff
real, dimension(4,nxv,nypmx,nblok,nmt) :: amup
integer, dimension(nmt) :: idtask
end subroutine
end interface
interface
subroutine MPGSRMJPOST2(part,amu,npp,nps,noff,qm,ci,idimp,npmax&
&,nblok,nxv,nxyp,amup,idtask,nmt,ierr)
implicit none
integer :: idimp, npmax, nblok, nxv, nxyp, nmt, ierr
real :: qm, ci
real, dimension(idimp,npmax,nblok) :: part
real, dimension(4,nxyp,nblok) :: amu
integer, dimension(nblok) :: npp, nps, noff
real, dimension(4,nxyp,nblok,nmt) :: amup
integer, dimension(nmt) :: idtask
end subroutine
end interface
interface
subroutine MPGRMJPOST2L(part,amu,npp,nps,noff,qm,ci,idimp,npmax&
&,nblok,nxv,nypmx,amup,idtask,nmt,ierr)
implicit none
integer :: idimp, npmax, nblok, nxv, nypmx, nmt, ierr
real :: qm, ci
real, dimension(idimp,npmax,nblok) :: part
real, dimension(4,nxv,nypmx,nblok) :: amu
integer, dimension(nblok) :: npp, nps, noff
real, dimension(4,nxv,nypmx,nblok,nmt) :: amup
integer, dimension(nmt) :: idtask
end subroutine
end interface
interface
subroutine MPGSRMJPOST2L(part,amu,npp,nps,noff,qm,ci,idimp,npma&
&x,nblok,nxv,nxyp,amup,idtask,nmt,ierr)
implicit none
integer :: idimp, npmax, nblok, nxv, nxyp, nmt, ierr
real :: qm, ci
real, dimension(idimp,npmax,nblok) :: part
real, dimension(4,nxyp,nblok) :: amu
integer, dimension(nblok) :: npp, nps, noff
real, dimension(4,nxyp,nblok,nmt) :: amup
integer, dimension(nmt) :: idtask
end subroutine
end interface
interface
subroutine MPGRMJPOST22(part,amu,npp,nps,noff,qm,ci,idimp,npmax&
&,nblok,nxv,nypmx,amup,idtask,nmt,ierr)
implicit none
integer :: idimp, npmax, nblok, nxv, nypmx, nmt, ierr
real :: qm, ci
real, dimension(idimp,npmax,nblok) :: part
real, dimension(2,nxv,nypmx,nblok) :: amu
integer, dimension(nblok) :: npp, nps, noff
real, dimension(2,nxv,nypmx,nblok,nmt) :: amup
integer, dimension(nmt) :: idtask
end subroutine
end interface
interface
subroutine MPGSRMJPOST22(part,amu,npp,nps,noff,qm,ci,idimp,npma&
&x,nblok,nxv,nxyp,amup,idtask,nmt,ierr)
implicit none
integer :: idimp, npmax, nblok, nxv, nxyp, nmt, ierr
real :: qm, ci
real, dimension(idimp,npmax,nblok) :: part
real, dimension(2,nxyp,nblok) :: amu
integer, dimension(nblok) :: npp, nps, noff
real, dimension(2,nxyp,nblok,nmt) :: amup
integer, dimension(nmt) :: idtask
end subroutine
end interface
interface
subroutine MPGRMJPOST22L(part,amu,npp,nps,noff,qm,ci,idimp,npma&
&x,nblok,nxv,nypmx,amup,idtask,nmt,ierr)
implicit none
integer :: idimp, npmax, nblok, nxv, nypmx, nmt, ierr
real :: qm, ci
real, dimension(idimp,npmax,nblok) :: part
real, dimension(2,nxv,nypmx,nblok) :: amu
integer, dimension(nblok) :: npp, nps, noff
real, dimension(2,nxv,nypmx,nblok,nmt) :: amup
integer, dimension(nmt) :: idtask
end subroutine
end interface
interface
subroutine MPGSRMJPOST22L(part,amu,npp,nps,noff,qm,ci,idimp,npm&
&ax,nblok,nxv,nxyp,amup,idtask,nmt,ierr)
implicit none
integer :: idimp, npmax, nblok, nxv, nxyp, nmt, ierr
real :: qm, ci
real, dimension(idimp,npmax,nblok) :: part
real, dimension(2,nxyp,nblok) :: amu
integer, dimension(nblok) :: npp, nps, noff
real, dimension(2,nxyp,nblok,nmt) :: amup
integer, dimension(nmt) :: idtask
end subroutine
end interface
interface
subroutine MPGRDCJPOST2(part,fxy,bxy,npp,nps,noff,cu,dcu,amu,qm&
&,qbm,dt,ci,idimp,npmax,nblok,nxv,nypmx,cup,dcup,amup,idtask,nmt,ie&
&rr)
implicit none
integer :: idimp, npmax, nblok, nxv, nypmx, nmt, ierr
real :: qm, qbm, dt, ci
real, dimension(idimp,npmax,nblok) :: part
real, dimension(3,nxv,nypmx,nblok) :: fxy, bxy, cu, dcu
real, dimension(4,nxv,nypmx,nblok) :: amu
integer, dimension(nblok) :: npp, nps, noff
real, dimension(3,nxv,nypmx,nblok,nmt) :: cup, dcup
real, dimension(4,nxv,nypmx,nblok,nmt) :: amup
integer, dimension(nmt) :: idtask
end subroutine
end interface
interface
subroutine MPGSRDCJPOST2(part,fxy,bxy,npp,nps,noff,cu,dcu,amu,q&
&m,qbm,dt,ci,idimp,npmax,nblok,nxv,nxyp,cup,dcup,amup,idtask,nmt,ie&
&rr)
implicit none
integer :: idimp, npmax, nblok, nxv, nxyp, nmt, ierr
real :: qm, qbm, dt, ci
real, dimension(idimp,npmax,nblok) :: part
real, dimension(3,nxyp,nblok) :: fxy, bxy, cu, dcu
real, dimension(4,nxyp,nblok) :: amu
integer, dimension(nblok) :: npp, nps, noff
real, dimension(3,nxyp,nblok,nmt) :: cup, dcup
real, dimension(4,nxyp,nblok,nmt) :: amup
integer, dimension(nmt) :: idtask
end subroutine
end interface
interface
subroutine MPGRDCJPOST2L(part,fxy,bxy,npp,nps,noff,cu,dcu,amu,q&
&m,qbm,dt,ci,idimp,npmax,nblok,nxv,nypmx,cup,dcup,amup,idtask,nmt,i&
&err)
implicit none
integer :: idimp, npmax, nblok, nxv, nypmx, nmt, ierr
real :: qm, qbm, dt, ci
real, dimension(idimp,npmax,nblok) :: part
real, dimension(3,nxv,nypmx,nblok) :: fxy, bxy, cu, dcu
real, dimension(4,nxv,nypmx,nblok) :: amu
integer, dimension(nblok) :: npp, nps, noff
real, dimension(3,nxv,nypmx,nblok,nmt) :: cup, dcup
real, dimension(4,nxv,nypmx,nblok,nmt) :: amup
integer, dimension(nmt) :: idtask
end subroutine
end interface
interface
subroutine MPGSRDCJPOST2L(part,fxy,bxy,npp,nps,noff,cu,dcu,amu,&
&qm,qbm,dt,ci,idimp,npmax,nblok,nxv,nxyp,cup,dcup,amup,idtask,nmt,i&
&err)
implicit none
integer :: idimp, npmax, nblok, nxv, nxyp, nmt, ierr
real :: qm, qbm, dt, ci
real, dimension(idimp,npmax,nblok) :: part
real, dimension(3,nxyp,nblok) :: fxy, bxy, cu, dcu
real, dimension(4,nxyp,nblok) :: amu
integer, dimension(nblok) :: npp, nps, noff
real, dimension(3,nxyp,nblok,nmt) :: cup, dcup
real, dimension(4,nxyp,nblok,nmt) :: amup
integer, dimension(nmt) :: idtask
end subroutine
end interface
interface
subroutine MPGRDCJPOST22(part,fxy,bz,npp,nps,noff,cu,dcu,amu,qm&
&,qbm,dt,ci,idimp,npmax,nblok,nxv,nypmx,cup,dcup,amup,idtask,nmt,ie&
&rr)
implicit none
integer :: idimp, npmax, nblok, nxv, nypmx, nmt, ierr
real :: qm, qbm, dt, ci
real, dimension(idimp,npmax,nblok) :: part
real, dimension(2,nxv,nypmx,nblok) :: fxy, cu, dcu, amu
real, dimension(nxv,nypmx,nblok) :: bz
integer, dimension(nblok) :: npp, nps, noff
real, dimension(2,nxv,nypmx,nblok,nmt) :: cup, dcup, amup
integer, dimension(nmt) :: idtask
end subroutine
end interface
interface
subroutine MPGSRDCJPOST22(part,fxy,bz,npp,nps,noff,cu,dcu,amu,q&
&m,qbm,dt,ci,idimp,npmax,nblok,nxv,nxyp,cup,dcup,amup,idtask,nmt,ie&
&rr)
implicit none
integer :: idimp, npmax, nblok, nxv, nxyp, nmt, ierr
real :: qm, qbm, dt, ci
real, dimension(idimp,npmax,nblok) :: part
real, dimension(2,nxyp,nblok) :: fxy, cu, dcu, amu
real, dimension(nxyp,nblok) :: bz
integer, dimension(nblok) :: npp, nps, noff
real, dimension(2,nxyp,nblok,nmt) :: cup, dcup, amup
integer, dimension(nmt) :: idtask
end subroutine
end interface
interface
subroutine MPGRDCJPOST22L(part,fxy,bz,npp,nps,noff,cu,dcu,amu,q&
&m,qbm,dt,ci,idimp,npmax,nblok,nxv,nypmx,cup,dcup,amup,idtask,nmt,i&
&err)
implicit none
integer :: idimp, npmax, nblok, nxv, nypmx, nmt, ierr
real :: qm, qbm, dt, ci
real, dimension(idimp,npmax,nblok) :: part
real, dimension(2,nxv,nypmx,nblok) :: fxy, cu, dcu, amu
real, dimension(nxv,nypmx,nblok) :: bz
integer, dimension(nblok) :: npp, nps, noff
real, dimension(2,nxv,nypmx,nblok,nmt) :: cup, dcup, amup
integer, dimension(nmt) :: idtask
end subroutine
end interface
interface
subroutine MPGSRDCJPOST22L(part,fxy,bz,npp,nps,noff,cu,dcu,amu,&
&qm,qbm,dt,ci,idimp,npmax,nblok,nxv,nxyp,cup,dcup,amup,idtask,nmt,i&
&err)
implicit none
integer :: idimp, npmax, nblok, nxv, nxyp, nmt, ierr
real :: qm, qbm, dt, ci
real, dimension(idimp,npmax,nblok) :: part
real, dimension(2,nxyp,nblok) :: fxy, cu, dcu, amu
real, dimension(nxyp,nblok) :: bz
integer, dimension(nblok) :: npp, nps, noff
real, dimension(2,nxyp,nblok,nmt) :: cup, dcup, amup
integer, dimension(nmt) :: idtask
end subroutine
end interface
!
! define generic interface to Fortran90 library
!
interface rdmjpost
module procedure impgrmjpost2
end interface
!
interface rdcjpost
module procedure impgrdcjpost2
end interface
!
! define Fortran90 interface functions to Fortran77 library
!
contains
!
subroutine impgrmjpost2(part,amu,npp,noff,qm,ci,tdcjpost,inorde&
&r,djopt)
! multi-tasking momentum flux deposit, 1d partition
implicit none
integer, optional :: inorder, djopt
real :: qm, ci, tdcjpost
real, dimension(:,:,:), pointer :: part
real, dimension(:,:,:,:), pointer :: amu
integer, dimension(:), pointer :: npp, noff
! local data
integer:: idimp, npmax, nblok, nxv, nypmx, nxyp, nnxyp
integer :: nmt, order, opt, ierr
integer, dimension(size(npp)) :: nps
integer, dimension(ntasks) :: idtask
! real, dimension(size(amu,1),size(amu,2),size(amu,3),size(amu,4)&
! &,ntasks) :: amup
real :: tdc
double precision :: dtime
idimp = size(part,1); npmax = size(part,2)
nblok = size(part,3)
nxv = size(amu,2); nypmx = size(amu,3); nxyp = nxv*nypmx
nnxyp = size(amu,1)*nxyp
nmt = ntasks
order = QUADRATIC
if (present(inorder)) order = inorder
opt = STANDARD
if (present(djopt)) opt = djopt
! check if size of momentum flux buffer has changed
if (szbufa < nnxyp*nblok) then
if (szbufa /= 0) deallocate(amup)
! allocate buffer
allocate(amup(size(amu,1),nxv,nypmx,nblok,ntasks))
szbufa = nnxyp*nblok
endif
! initialize timer
call wtimer(tdc,dtime,-1)
select case(size(amu,1))
case (2)
if (order==LINEAR) then
if (opt==LOOKAHEAD) then
call MPGSRMJPOST22L(part,amu,npp,nps,noff,qm,ci,idimp,&
&npmax,nblok,nxv,nxyp,amup,idtask,nmt,ierr)
else
call MPGRMJPOST22L(part,amu,npp,nps,noff,qm,ci,idimp,n&
&pmax,nblok,nxv,nypmx,amup,idtask,nmt,ierr)
endif
else
if (opt==LOOKAHEAD) then
call MPGSRMJPOST22(part,amu,npp,nps,noff,qm,ci,idimp,n&
&pmax,nblok,nxv,nxyp,amup,idtask,nmt,ierr)
else
call MPGRMJPOST22(part,amu,npp,nps,noff,qm,ci,idimp,np&
&max,nblok,nxv,nypmx,amup,idtask,nmt,ierr)
endif
endif
case (4)
if (order==LINEAR) then
if (opt==LOOKAHEAD) then
call MPGSRMJPOST2L(part,amu,npp,nps,noff,qm,ci,idimp,n&
&pmax,nblok,nxv,nxyp,amup,idtask,nmt,ierr)
else
call MPGRMJPOST2L(part,amu,npp,nps,noff,qm,ci,idimp,np&
&max,nblok,nxv,nypmx,amup,idtask,nmt,ierr)
endif
else
if (opt==LOOKAHEAD) then
call MPGSRMJPOST2(part,amu,npp,nps,noff,qm,ci,idimp,np&
&max,nblok,nxv,nxyp,amup,idtask,nmt,ierr)
else
call MPGRMJPOST2(part,amu,npp,nps,noff,qm,ci,idimp,npm&
&ax,nblok,nxv,nypmx,amup,idtask,nmt,ierr)
endif
endif
end select
if (ierr /= 0) then
call MP_END
call PPEXIT
stop
endif
! record time
call wtimer(tdc,dtime)
tdcjpost = tdcjpost + tdc
end subroutine impgrmjpost2
!
subroutine impgrdcjpost2(part,fxy,bxy,npp,noff,cu,dcu,amu,qm,qb&
&m,dt,ci,tdcjpost,inorder,djopt)
! multi-tasking deposit momentum flux, acceleration density, and current
! density with 2-1/2d electromagnetic fields, 1d partition
implicit none
integer, optional :: inorder, djopt
real :: qm, qbm, dt, ci, tdcjpost
real, dimension(:,:,:), pointer :: part
real, dimension(:,:,:,:), pointer :: fxy, bxy, cu, dcu, amu
integer, dimension(:), pointer :: npp, noff
! local data
integer :: idimp, npmax, nblok, nxv, nypmx, nxyp, nnxyp
integer :: nmt, order, opt, ierr
integer, dimension(size(npp)) :: nps
integer, dimension(ntasks) :: idtask
! real, dimension(size(cu,1),size(cu,2),size(cu,3),size(cu,4),nta&
! &sks) :: cup
! real, dimension(size(dcu,1),size(dcu,2),size(dcu,3),size(dcu,4)&
! &,ntasks) :: dcup
! real, dimension(size(amu,1),size(amu,2),size(amu,3),size(amu,4)&
! &,ntasks) :: amup
real, dimension(:,:,:,:,:), allocatable, save :: cup, dcup
integer, save :: szbufc = 0, szbufd = 0
real :: tdc
double precision :: dtime
idimp = size(part,1); npmax = size(part,2)
nblok = size(part,3)
nxv = size(fxy,2); nypmx = size(fxy,3); nxyp = nxv*nypmx
nmt = ntasks
order = QUADRATIC
if (present(inorder)) order = inorder
opt = STANDARD
if (present(djopt)) opt = djopt
! check if size of current buffer has changed
nnxyp = size(cu,1)*nxyp
if (szbufc < nnxyp*nblok) then
if (szbufc /= 0) deallocate(cup)
allocate(cup(size(cu,1),nxv,nypmx,nblok,ntasks))
szbufc = nnxyp*nblok
endif
! check if size of acceleration buffer has changed
nnxyp = size(dcu,1)*nxyp
if (szbufd < nnxyp*nblok) then
if (szbufd /= 0) deallocate(dcup)
allocate(dcup(size(dcu,1),nxv,nypmx,nblok,ntasks))
szbufd = nnxyp*nblok
endif
! check if size of momentum flux buffer has changed
nnxyp = size(amu,1)*nxyp
if (szbufa < nnxyp*nblok) then
if (szbufa /= 0) deallocate(amup)
allocate(amup(size(amu,1),nxv,nypmx,nblok,ntasks))
szbufa = nnxyp*nblok
endif
! initialize timer
call wtimer(tdc,dtime,-1)
select case(size(bxy,1))
case (1)
if (order==LINEAR) then
if (opt==LOOKAHEAD) then
call MPGSRDCJPOST22L(part,fxy,bxy,npp,nps,noff,cu,dcu,&
&amu,qm,qbm,dt,ci,idimp,npmax,nblok,nxv,nxyp,cup,dcup,amup,idtask,n&
&mt,ierr)
else
call MPGRDCJPOST22L(part,fxy,bxy,npp,nps,noff,cu,dcu,a&
&mu,qm,qbm,dt,ci,idimp,npmax,nblok,nxv,nypmx,cup,dcup,amup,idtask,n&
&mt,ierr)
endif
else
if (opt==LOOKAHEAD) then
call MPGSRDCJPOST22(part,fxy,bxy,npp,nps,noff,cu,dcu,a&
&mu,qm,qbm,dt,ci,idimp,npmax,nblok,nxv,nxyp,cup,dcup,amup,idtask,nm&
&t,ierr)
else
call MPGRDCJPOST22(part,fxy,bxy,npp,nps,noff,cu,dcu,am&
&u,qm,qbm,dt,ci,idimp,npmax,nblok,nxv,nypmx,cup,dcup,amup,idtask,nm&
&t,ierr)
endif
endif
case (3)
if (order==LINEAR) then
if (opt==LOOKAHEAD) then
call MPGSRDCJPOST2L(part,fxy,bxy,npp,nps,noff,cu,dcu,a&
&mu,qm,qbm,dt,ci,idimp,npmax,nblok,nxv,nxyp,cup,dcup,amup,idtask,nm&
&t,ierr)
else
call MPGRDCJPOST2L(part,fxy,bxy,npp,nps,noff,cu,dcu,am&
&u,qm,qbm,dt,ci,idimp,npmax,nblok,nxv,nypmx,cup,dcup,amup,idtask,nm&
&t,ierr)
endif
else
if (opt==LOOKAHEAD) then
call MPGSRDCJPOST2(part,fxy,bxy,npp,nps,noff,cu,dcu,am&
&u,qm,qbm,dt,ci,idimp,npmax,nblok,nxv,nxyp,cup,dcup,amup,idtask,nmt&
&,ierr)
else
call MPGRDCJPOST2(part,fxy,bxy,npp,nps,noff,cu,dcu,amu&
&,qm,qbm,dt,ci,idimp,npmax,nblok,nxv,nypmx,cup,dcup,amup,idtask,nmt&
&,ierr)
endif
endif
end select
if (ierr /= 0) then
call MP_END
call PPEXIT
stop
endif
! record time
call wtimer(tdc,dtime)
tdcjpost = tdcjpost + tdc
end subroutine impgrdcjpost2
!
end module mprdpush2d