-
Notifications
You must be signed in to change notification settings - Fork 0
/
mprbpush2mod.f
961 lines (960 loc) · 37.8 KB
/
mprbpush2mod.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
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
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
!-----------------------------------------------------------------------
!
module mprbpush2d
!
! Fortran90 interface to parallel 2d PIC Fortran77 library
! mprbpush2mod.f contains multi-tasking interface procedures to process
! relativistic particles with magnetic fields:
! defines module mprbpush2d
! rdjpost => impgrjpost2 deposits relativistic current density, with
! various interpolations and optimizations.
! calls MPGRJPOST2, MPGSRJPOST2, MPGSRJOST2X, MPGRJPOST2L,
! MPGSRJPOST2L, MPGSRJOST2XL, MPGRJPOST22, MPGSRJPOST22,
! MPGSRJOST22X, MPGRJPOST22L, MPGSRJPOST22L, or
! MPGSRJOST22XL
! rpush => impgrpush2 push relativistic particles with 2 component
! electric field, with various interpolations and optimizations
! calls MPGRPUSH2, MPGSRPUSH2, MPGRPUSH2L, or MPGSRPUSH2L
! rpush => impgrbpush2 push relativistic particles with magnetic field
! and 2 component electric field, with various interpolations
! and optimizations.
! calls MPGRBPUSH2, MPGSRBPUSH2, MPGRBPUSH2L, or MPGSRBPUSH2L
! rpush3 => impgrbpush23 push relativistic particles with magnetic field
! and 3 component electric field, with various interpolations
! and optimizations.
! calls MPGRBPUSH23, MPGSRBPUSH23, MPGRBPUSH23L,
! MPGSRBPUSH23L, MPGRBPUSH22, MPGSRBPUSH22, MPGRBPUSH22L,
! or MPGSRBPUSH22L
! rpushzf => imprpush2zf push 2d relativistic particles with no forces.
! calls MPRPUSH2ZF
! rpush3zf => imprpush23zf push 2-1/2d relativistic particles with no
! forces.
! calls MPRPUSH23ZF, or MPRPUSH2ZF
! rgcjpost => imprpush23zf deposits time-centered relativistic current
! density with 2d electrostatic fields.
! calls MPGRCJPOST2, or MPGRCJPOST2L
! mprbpush2lib.f
! 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 prbpush2d, only: wtimer, retard, ipcptov2
use mp0d, only: ntasks
implicit none
private
public :: LINEAR, QUADRATIC, STANDARD, LOOKAHEAD, VECTOR
public :: rdjpost, rpush, rpush3, retard, ipcptov2
public :: rpushzf, rpush3zf, rgcjpost
!
! buffer data for current deposit
real, dimension(:,:,:,:,:), allocatable :: cup
integer :: szbuf = 0
save
!
! define interface to Fortran77 procedures
!
interface
subroutine MPGRJPOST2(part,cu,npp,nps,noff,qm,dt,ci,nx,ny,idimp&
&,npmax,nblok,nxv,nypmx,ipbc,cup,idtask,nmt,ierr)
implicit none
integer :: nx, ny, idimp, npmax, nblok, nxv, nypmx, ipbc, nmt
integer :: ierr
real :: qm, dt, ci
real, dimension(idimp,npmax,nblok) :: part
real, dimension(3,nxv,nypmx,nblok) :: cu
integer, dimension(nblok) :: npp, nps, noff
real, dimension(3,nxv,nypmx,nblok,nmt) :: cup
integer, dimension(nmt) :: idtask
end subroutine
end interface
interface
subroutine MPGSRJPOST2(part,cu,npp,nps,noff,qm,dt,ci,nx,ny,idim&
&p,npmax,nblok,nxv,nxyp,ipbc,cup,idtask,nmt,ierr)
implicit none
integer :: nx, ny, idimp, npmax, nblok, nxv, nxyp, ipbc, nmt
integer :: ierr
real :: qm, dt, ci
real, dimension(idimp,npmax,nblok) :: part
real, dimension(3,nxyp,nblok) :: cu
integer, dimension(nblok) :: npp, nps, noff
real, dimension(3,nxyp,nblok,nmt) :: cup
integer, dimension(nmt) :: idtask
end subroutine
end interface
interface
subroutine MPGSRJOST2X(part,cu,npp,nps,noff,nn,amxy,qm,dt,ci,nx&
&,ny,idimp,npmax,nblok,nxv,nxvyp,npd,n27,ipbc,cup,idtask,nmt,ierr)
implicit none
integer :: nx, ny, idimp, npmax, nblok, nxv, nxvyp, npd, n27
integer :: ipbc, nmt, ierr
real :: qm, dt, ci
real, dimension(idimp,npmax,nblok) :: part
real, dimension(3*nxvyp,nblok) :: cu
integer, dimension(nblok) :: npp, nps, noff
integer, dimension(n27,npd,nblok,nmt+1) :: nn
real, dimension(n27,npd,nblok,nmt+1) :: amxy
real, dimension(3*nxvyp,nblok,nmt) :: cup
integer, dimension(nmt) :: idtask
end subroutine
end interface
interface
subroutine MPGRJPOST2L(part,cu,npp,nps,noff,qm,dt,ci,nx,ny,idim&
&p,npmax,nblok,nxv,nypmx,ipbc,cup,idtask,nmt,ierr)
implicit none
integer :: nx, ny, idimp, npmax, nblok, nxv, nypmx, ipbc, nmt
integer :: ierr
real :: qm, dt, ci
real, dimension(idimp,npmax,nblok) :: part
real, dimension(3,nxv,nypmx,nblok) :: cu
integer, dimension(nblok) :: npp, nps, noff
real, dimension(3,nxv,nypmx,nblok,nmt) :: cup
integer, dimension(nmt) :: idtask
end subroutine
end interface
interface
subroutine MPGSRJPOST2L(part,cu,npp,nps,noff,qm,dt,ci,nx,ny,idi&
&mp,npmax,nblok,nxv,nxyp,ipbc,cup,idtask,nmt,ierr)
implicit none
integer :: nx, ny, idimp, npmax, nblok, nxv, nxyp, ipbc, nmt
integer :: ierr
real :: qm, dt, ci
real, dimension(idimp,npmax,nblok) :: part
real, dimension(3,nxyp,nblok) :: cu
integer, dimension(nblok) :: npp, nps, noff
real, dimension(3,nxyp,nblok,nmt) :: cup
integer, dimension(nmt) :: idtask
end subroutine
end interface
interface
subroutine MPGSRJOST2XL(part,cu,npp,nps,noff,nn,amxy,qm,dt,ci,n&
&x,ny,idimp,npmax,nblok,nxv,nxvyp,npd,n12,ipbc,cup,idtask,nmt,ierr)
implicit none
integer :: nx, ny, idimp, npmax, nblok, nxv, nxvyp, npd, n12
integer :: ipbc, nmt, ierr
real :: qm, dt, ci
real, dimension(idimp,npmax,nblok) :: part
real, dimension(3*nxvyp,nblok) :: cu
integer, dimension(nblok) :: npp, nps, noff
integer, dimension(n12,npd,nblok,nmt+1) :: nn
real, dimension(n12,npd,nblok,nmt+1) :: amxy
real, dimension(3*nxvyp,nblok,nmt) :: cup
integer, dimension(nmt) :: idtask
end subroutine
end interface
interface
subroutine MPGRJPOST22(part,cu,npp,nps,noff,qm,dt,ci,nx,ny,idim&
&p,npmax,nblok,nxv,nypmx,ipbc,cup,idtask,nmt,ierr)
implicit none
integer :: nx, ny, idimp, npmax, nblok, nxv, nypmx, ipbc, nmt
integer :: ierr
real :: qm, dt, ci
real, dimension(idimp,npmax,nblok) :: part
real, dimension(2,nxv,nypmx,nblok) :: cu
integer, dimension(nblok) :: npp, nps, noff
real, dimension(2,nxv,nypmx,nblok,nmt) :: cup
integer, dimension(nmt) :: idtask
end subroutine
end interface
interface
subroutine MPGSRJPOST22(part,cu,npp,nps,noff,qm,dt,ci,nx,ny,idi&
&mp,npmax,nblok,nxv,nxyp,ipbc,cup,idtask,nmt,ierr)
implicit none
integer :: nx, ny, idimp, npmax, nblok, nxv, nxyp, ipbc, nmt
integer :: ierr
real :: qm, dt, ci
real, dimension(idimp,npmax,nblok) :: part
real, dimension(2,nxyp,nblok) :: cu
integer, dimension(nblok) :: npp, nps, noff
real, dimension(2,nxyp,nblok,nmt) :: cup
integer, dimension(nmt) :: idtask
end subroutine
end interface
interface
subroutine MPGSRJOST22X(part,cu,npp,nps,noff,nn,amxy,qm,dt,ci,n&
&x,ny,idimp,npmax,nblok,nxv,nxvyp,npd,n18,ipbc,cup,idtask,nmt,ierr)
implicit none
integer :: nx, ny, idimp, npmax, nblok, nxv, nxvyp, npd, n18
integer :: ipbc, nmt, ierr
real :: qm, dt, ci
real, dimension(idimp,npmax,nblok) :: part
real, dimension(2*nxvyp,nblok) :: cu
integer, dimension(nblok) :: npp, nps, noff
integer, dimension(n18,npd,nblok,nmt+1) :: nn
real, dimension(n18,npd,nblok,nmt+1) :: amxy
real, dimension(2*nxvyp,nblok,nmt) :: cup
integer, dimension(nmt) :: idtask
end subroutine
end interface
interface
subroutine MPGRJPOST22L(part,cu,npp,nps,noff,qm,dt,ci,nx,ny,idi&
&mp,npmax,nblok,nxv,nypmx,ipbc,cup,idtask,nmt,ierr)
implicit none
integer :: nx, ny, idimp, npmax, nblok, nxv, nypmx, ipbc, nmt
integer :: ierr
real :: qm, dt, ci
real, dimension(idimp,npmax,nblok) :: part
real, dimension(2,nxv,nypmx,nblok) :: cu
integer, dimension(nblok) :: npp, nps, noff
real, dimension(2,nxv,nypmx,nblok,nmt) :: cup
integer, dimension(nmt) :: idtask
end subroutine
end interface
interface
subroutine MPGSRJPOST22L(part,cu,npp,nps,noff,qm,dt,ci,nx,ny,id&
&imp,npmax,nblok,nxv,nxyp,ipbc,cup,idtask,nmt,ierr)
implicit none
integer :: nx, ny, idimp, npmax, nblok, nxv, nxyp, ipbc, nmt
integer :: ierr
real :: qm, dt, ci
real, dimension(idimp,npmax,nblok) :: part
real, dimension(2,nxyp,nblok) :: cu
integer, dimension(nblok) :: npp, nps, noff
real, dimension(2,nxyp,nblok,nmt) :: cup
integer, dimension(nmt) :: idtask
end subroutine
end interface
interface
subroutine MPGSRJOST22XL(part,cu,npp,nps,noff,nn,amxy,qm,dt,ci,&
&nx,ny,idimp,npmax,nblok,nxv,nxvyp,npd,n8,ipbc,cup,idtask,nmt,ierr)
implicit none
integer :: nx, ny, idimp, npmax, nblok, nxv, nxvyp, npd, n8
integer :: ipbc, nmt, ierr
real :: qm, dt, ci
real, dimension(idimp,npmax,nblok) :: part
real, dimension(2*nxvyp,nblok) :: cu
integer, dimension(nblok) :: npp, nps, noff
integer, dimension(n8,npd,nblok,nmt+1) :: nn
real, dimension(n8,npd,nblok,nmt+1) :: amxy
real, dimension(2*nxvyp,nblok,nmt) :: cup
integer, dimension(nmt) :: idtask
end subroutine
end interface
interface
subroutine MPGRPUSH2(part,fxy,npp,nps,noff,qbm,dt,ci,ek,nx,ny,i&
&dimp,npmax,nblok,nxv,nypmx,ipbc,ekp,idtask,nmt,ierr)
implicit none
integer :: nx, ny, idimp, npmax, nblok, nxv, nypmx, ipbc, nmt
integer :: ierr
real :: qbm, dt, ci, ek
real, dimension(idimp,npmax,nblok) :: part
real, dimension(2,nxv,nypmx,nblok) :: fxy
integer, dimension(nblok) :: npp, nps, noff
real, dimension(nmt) :: ekp
integer, dimension(nmt) :: idtask
end subroutine
end interface
interface
subroutine MPGSRPUSH2(part,fxy,npp,nps,noff,qbm,dt,ci,ek,nx,ny,&
&idimp,npmax,nblok,nxv,nxyp,ipbc,ekp,idtask,nmt,ierr)
implicit none
integer :: nx, ny, idimp, npmax, nblok, nxv, nxyp, ipbc, nmt
integer :: ierr
real :: qbm, dt, ci, ek
real, dimension(idimp,npmax,nblok) :: part
real, dimension(2,nxyp,nblok) :: fxy
integer, dimension(nblok) :: npp, nps, noff
real, dimension(nmt) :: ekp
integer, dimension(nmt) :: idtask
end subroutine
end interface
interface
subroutine MPGRPUSH2L(part,fxy,npp,nps,noff,qbm,dt,ci,ek,nx,ny,&
&idimp,npmax,nblok,nxv,nypmx,ipbc,ekp,idtask,nmt,ierr)
implicit none
integer :: nx, ny, idimp, npmax, nblok, nxv, nypmx, ipbc, nmt
integer :: ierr
real :: qbm, dt, ci, ek
real, dimension(idimp,npmax,nblok) :: part
real, dimension(2,nxv,nypmx,nblok) :: fxy
integer, dimension(nblok) :: npp, nps, noff
real, dimension(nmt) :: ekp
integer, dimension(nmt) :: idtask
end subroutine
end interface
interface
subroutine MPGSRPUSH2L(part,fxy,npp,nps,noff,qbm,dt,ci,ek,nx,ny&
&,idimp,npmax,nblok,nxv,nxyp,ipbc,ekp,idtask,nmt,ierr)
implicit none
integer :: nx, ny, idimp, npmax, nblok, nxv, nxyp, ipbc, nmt
integer :: ierr
real :: qbm, dt, ci, ek
real, dimension(idimp,npmax,nblok) :: part
real, dimension(2,nxyp,nblok) :: fxy
integer, dimension(nblok) :: npp, nps, noff
real, dimension(nmt) :: ekp
integer, dimension(nmt) :: idtask
end subroutine
end interface
interface
subroutine MPGRBPUSH2(part,fxy,bxy,npp,nps,noff,qbm,dt,dtc,ci,e&
&k,nx,ny,idimp,npmax,nblok,nxv,nypmx,ipbc,ekp,idtask,nmt,ierr)
implicit none
integer :: nx, ny, idimp, npmax, nblok, nxv, nypmx, ipbc, nmt
integer :: ierr
real :: qbm, dt, dtc, ci, ek
real, dimension(idimp,npmax,nblok) :: part
real, dimension(2,nxv,nypmx,nblok) :: fxy
real, dimension(3,nxv,nypmx,nblok) :: bxy
integer, dimension(nblok) :: npp, nps, noff
real, dimension(nmt) :: ekp
integer, dimension(nmt) :: idtask
end subroutine
end interface
interface
subroutine MPGSRBPUSH2(part,fxy,bxy,npp,nps,noff,qbm,dt,dtc,ci,&
&ek,nx,ny,idimp,npmax,nblok,nxv,nxyp,ipbc,ekp,idtask,nmt,ierr)
implicit none
integer :: nx, ny, idimp, npmax, nblok, nxv, nxyp, ipbc, nmt
integer :: ierr
real :: qbm, dt, dtc, ci, ek
real, dimension(idimp,npmax,nblok) :: part
real, dimension(2,nxyp,nblok) :: fxy
real, dimension(3,nxyp,nblok) :: bxy
integer, dimension(nblok) :: npp, nps, noff
real, dimension(nmt) :: ekp
integer, dimension(nmt) :: idtask
end subroutine
end interface
interface
subroutine MPGRBPUSH2L(part,fxy,bxy,npp,nps,noff,qbm,dt,dtc,ci,&
&ek,nx,ny,idimp,npmax,nblok,nxv,nypmx,ipbc,ekp,idtask,nmt,ierr)
implicit none
integer :: nx, ny, idimp, npmax, nblok, nxv, nypmx, ipbc, nmt
integer :: ierr
real :: qbm, dt, dtc, ci, ek
real, dimension(idimp,npmax,nblok) :: part
real, dimension(2,nxv,nypmx,nblok) :: fxy
real, dimension(3,nxv,nypmx,nblok) :: bxy
integer, dimension(nblok) :: npp, nps, noff
real, dimension(nmt) :: ekp
integer, dimension(nmt) :: idtask
end subroutine
end interface
interface
subroutine MPGSRBPUSH2L(part,fxy,bxy,npp,nps,noff,qbm,dt,dtc,ci&
&,ek,nx,ny,idimp,npmax,nblok,nxv,nxyp,ipbc,ekp,idtask,nmt,ierr)
implicit none
integer :: nx, ny, idimp, npmax, nblok, nxv, nxyp, ipbc, nmt
integer :: ierr
real :: qbm, dt, dtc, ci, ek
real, dimension(idimp,npmax,nblok) :: part
real, dimension(2,nxyp,nblok) :: fxy
real, dimension(3,nxyp,nblok) :: bxy
integer, dimension(nblok) :: npp, nps, noff
real, dimension(nmt) :: ekp
integer, dimension(nmt) :: idtask
end subroutine
end interface
interface
subroutine MPGRBPUSH23(part,fxy,bxy,npp,nps,noff,qbm,dt,dtc,ci,&
&ek,nx,ny,idimp,npmax,nblok,nxv,nypmx,ipbc,ekp,idtask,nmt,ierr)
implicit none
integer :: nx, ny, idimp, npmax, nblok, nxv, nypmx, ipbc, nmt
integer :: ierr
real :: qbm, dt, dtc, ci, ek
real, dimension(idimp,npmax,nblok) :: part
real, dimension(3,nxv,nypmx,nblok) :: fxy
real, dimension(3,nxv,nypmx,nblok) :: bxy
integer, dimension(nblok) :: npp, nps, noff
real, dimension(nmt) :: ekp
integer, dimension(nmt) :: idtask
end subroutine
end interface
interface
subroutine MPGSRBPUSH23(part,fxy,bxy,npp,nps,noff,qbm,dt,dtc,ci&
&,ek,nx,ny,idimp,npmax,nblok,nxv,nxyp,ipbc,ekp,idtask,nmt,ierr)
implicit none
integer :: nx, ny, idimp, npmax, nblok, nxv, nxyp, ipbc, nmt
integer :: ierr
real :: qbm, dt, dtc, ci, ek
real, dimension(idimp,npmax,nblok) :: part
real, dimension(3,nxyp,nblok) :: fxy
real, dimension(3,nxyp,nblok) :: bxy
integer, dimension(nblok) :: npp, nps, noff
real, dimension(nmt) :: ekp
integer, dimension(nmt) :: idtask
end subroutine
end interface
interface
subroutine MPGRBPUSH23L(part,fxy,bxy,npp,nps,noff,qbm,dt,dtc,ci&
&,ek,nx,ny,idimp,npmax,nblok,nxv,nypmx,ipbc,ekp,idtask,nmt,ierr)
implicit none
integer :: nx, ny, idimp, npmax, nblok, nxv, nypmx, ipbc, nmt
integer :: ierr
real :: qbm, dt, dtc, ci, ek
real, dimension(idimp,npmax,nblok) :: part
real, dimension(3,nxv,nypmx,nblok) :: fxy
real, dimension(3,nxv,nypmx,nblok) :: bxy
integer, dimension(nblok) :: npp, nps, noff
real, dimension(nmt) :: ekp
integer, dimension(nmt) :: idtask
end subroutine
end interface
interface
subroutine MPGSRBPUSH23L(part,fxy,bxy,npp,nps,noff,qbm,dt,dtc,c&
&i,ek,nx,ny,idimp,npmax,nblok,nxv,nxyp,ipbc,ekp,idtask,nmt,ierr)
implicit none
integer :: nx, ny, idimp, npmax, nblok, nxv, nxyp, ipbc, nmt
integer :: ierr
real :: qbm, dt, dtc, ci, ek
real, dimension(idimp,npmax,nblok) :: part
real, dimension(3,nxyp,nblok) :: fxy
real, dimension(3,nxyp,nblok) :: bxy
integer, dimension(nblok) :: npp, nps, noff
real, dimension(nmt) :: ekp
integer, dimension(nmt) :: idtask
end subroutine
end interface
interface
subroutine MPGRBPUSH22(part,fxy,bz,npp,nps,noff,qbm,dt,dtc,ci,e&
&k,nx,ny,idimp,npmax,nblok,nxv,nypmx,ipbc,ekp,idtask,nmt,ierr)
implicit none
integer :: nx, ny, idimp, npmax, nblok, nxv, nypmx, ipbc, nmt
integer :: ierr
real :: qbm, dt, dtc, ci, ek
real, dimension(idimp,npmax,nblok) :: part
real, dimension(2,nxv,nypmx,nblok) :: fxy
real, dimension(nxv,nypmx,nblok) :: bz
integer, dimension(nblok) :: npp, nps, noff
real, dimension(nmt) :: ekp
integer, dimension(nmt) :: idtask
end subroutine
end interface
interface
subroutine MPGSRBPUSH22(part,fxy,bz,npp,nps,noff,qbm,dt,dtc,ci,&
&ek,nx,ny,idimp,npmax,nblok,nxv,nxyp,ipbc,ekp,idtask,nmt,ierr)
implicit none
integer :: nx, ny, idimp, npmax, nblok, nxv, nxyp, ipbc, nmt
integer :: ierr
real :: qbm, dt, dtc, ci, ek
real, dimension(idimp,npmax,nblok) :: part
real, dimension(2,nxyp,nblok) :: fxy
real, dimension(nxyp,nblok) :: bz
integer, dimension(nblok) :: npp, nps, noff
real, dimension(nmt) :: ekp
integer, dimension(nmt) :: idtask
end subroutine
end interface
interface
subroutine MPGRBPUSH22L(part,fxy,bz,npp,nps,noff,qbm,dt,dtc,ci,&
&ek,nx,ny,idimp,npmax,nblok,nxv,nypmx,ipbc,ekp,idtask,nmt,ierr)
implicit none
integer :: nx, ny, idimp, npmax, nblok, nxv, nypmx, ipbc, nmt
integer :: ierr
real :: qbm, dt, dtc, ci, ek
real, dimension(idimp,npmax,nblok) :: part
real, dimension(2,nxv,nypmx,nblok) :: fxy
real, dimension(nxv,nypmx,nblok) :: bz
integer, dimension(nblok) :: npp, nps, noff
real, dimension(nmt) :: ekp
integer, dimension(nmt) :: idtask
end subroutine
end interface
interface
subroutine MPGSRBPUSH22L(part,fxy,bz,npp,nps,noff,qbm,dt,dtc,ci&
&,ek,nx,ny,idimp,npmax,nblok,nxv,nxyp,ipbc,ekp,idtask,nmt,ierr)
implicit none
integer :: nx, ny, idimp, npmax, nblok, nxv, nxyp, ipbc, nmt
integer :: ierr
real :: qbm, dt, dtc, ci, ek
real, dimension(idimp,npmax,nblok) :: part
real, dimension(2,nxyp,nblok) :: fxy
real, dimension(nxyp,nblok) :: bz
integer, dimension(nblok) :: npp, nps, noff
real, dimension(nmt) :: ekp
integer, dimension(nmt) :: idtask
end subroutine
end interface
interface
subroutine MPRPUSH2ZF(part,npp,nps,dt,ci,ek,idimp,npmax,nblok,n&
&x,ny,ipbc,ekp,idtask,nmt,ierr)
implicit none
integer :: idimp, npmax, nblok, nx, ny, ipbc, nmt, ierr
real :: dt, ci, ek
real, dimension(idimp,npmax,nblok) :: part
integer, dimension(nblok) :: npp, nps
real, dimension(nmt) :: ekp
integer, dimension(nmt) :: idtask
end subroutine
end interface
interface
subroutine MPRPUSH23ZF(part,npp,nps,dt,ci,ek,idimp,npmax,nblok,&
&nx,ny,ipbc,ekp,idtask,nmt,ierr)
implicit none
integer :: idimp, npmax, nblok, nx, ny, ipbc, nmt, ierr
real :: dt, ci, ek
real, dimension(idimp,npmax,nblok) :: part
integer, dimension(nblok) :: npp, nps
real, dimension(nmt) :: ekp
integer, dimension(nmt) :: idtask
end subroutine
end interface
interface
subroutine MPGRCJPOST2(part,fxy,npp,nps,noff,cu,qm,qbm,dt,ci,id&
&imp,npmax,nblok,nxv,nypmx,cup,idtask,nmt,ierr)
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
integer, dimension(nblok) :: npp, nps, noff
real, dimension(2,nxv,nypmx,nblok,nmt) :: cup
integer, dimension(nmt) :: idtask
end subroutine
end interface
interface
subroutine MPGRCJPOST2L(part,fxy,npp,nps,noff,cu,qm,qbm,dt,ci,i&
&dimp,npmax,nblok,nxv,nypmx,cup,idtask,nmt,ierr)
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
integer, dimension(nblok) :: npp, nps, noff
real, dimension(2,nxv,nypmx,nblok,nmt) :: cup
integer, dimension(nmt) :: idtask
end subroutine
end interface
!
! define generic interface to Fortran90 library
!
interface rdjpost
module procedure impgrjpost2
end interface
!
interface rpush
module procedure impgrpush2
module procedure impgrbpush2
end interface
!
interface rpush3
module procedure impgrbpush23
end interface
!
interface rpushzf
module procedure imprpush2zf
end interface
!
interface rpush3zf
module procedure imprpush23zf
end interface
!
interface rgcjpost
module procedure imprpush23zf
end interface
!
! define Fortran90 interface functions to Fortran77 library
!
contains
!
subroutine impgrpush2(part,fxy,npp,noff,qbm,dt,ci,ek,tpush,nx,n&
&y,ipbc,inorder,popt)
! multi-tasking relativistic particle push with 2d electrostatic fields,
! 1d partition
implicit none
integer :: nx, ny, ipbc
integer, optional :: inorder, popt
real :: qbm, dt, ci, ek, tpush
real, dimension(:,:,:), pointer :: part
real, dimension(:,:,:,:), pointer :: fxy
integer, dimension(:), pointer :: npp, noff
! local data
integer :: idimp, npmax, nblok, nxv, nypmx, nxyp
integer :: nmt, order, opt, ierr
integer, dimension(size(npp)) :: nps
integer, dimension(ntasks) :: idtask
real, dimension(ntasks) :: ekp
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(popt)) opt = popt
! initialize timer
call wtimer(tpush,dtime,-1)
if (order==LINEAR) then
if (opt==LOOKAHEAD) then
call MPGSRPUSH2L(part,fxy,npp,nps,noff,qbm,dt,ci,ek,nx,ny&
&,idimp,npmax,nblok,nxv,nxyp,ipbc,ekp,idtask,nmt,ierr)
else
call MPGRPUSH2L(part,fxy,npp,nps,noff,qbm,dt,ci,ek,nx,ny,&
&idimp,npmax,nblok,nxv,nypmx,ipbc,ekp,idtask,nmt,ierr)
endif
else
if (opt==LOOKAHEAD) then
call MPGSRPUSH2(part,fxy,npp,nps,noff,qbm,dt,ci,ek,nx,ny,&
&idimp,npmax,nblok,nxv,nxyp,ipbc,ekp,idtask,nmt,ierr)
else
call MPGRPUSH2(part,fxy,npp,nps,noff,qbm,dt,ci,ek,nx,ny,i&
&dimp,npmax,nblok,nxv,nypmx,ipbc,ekp,idtask,nmt,ierr)
endif
endif
if (ierr /= 0) then
call MP_END
call PPEXIT
stop
endif
! record time
call wtimer(tpush,dtime)
end subroutine impgrpush2
!
subroutine impgrjpost2(part,cu,npp,noff,qm,dt,ci,tdjpost,nx,ny,&
&ipbc,inorder,djopt)
! multi-tasking, relativisitc current deposit, 1d partition
implicit none
integer :: nx, ny, ipbc
integer, optional :: inorder, djopt
real :: qm, dt, ci, tdjpost
real, dimension(:,:,:), pointer :: part
real, dimension(:,:,:,:), pointer :: cu
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
! npd = size of scratch buffers for vectorized charge deposition
integer, parameter :: npd = 128
integer, parameter :: n8 = 8, n12 = 12, n18 = 18, n27 = 27
integer, dimension(ntasks) :: idtask
! real, dimension(size(cu,1),size(cu,2),size(cu,3),size(cu,4),nta&
! &sks) :: cup
integer, dimension(n27,npd,size(part,3),ntasks+1) :: nn
real, dimension(n27,npd,size(part,3),ntasks+1) :: amxy
double precision :: dtime
idimp = size(part,1); npmax = size(part,2)
nblok = size(part,3)
nxv = size(cu,2); nypmx = size(cu,3); nxyp = nxv*nypmx
nnxyp = size(cu,1)*nxyp
nmt = ntasks
order = QUADRATIC
if (present(inorder)) order = inorder
opt = STANDARD
if (present(djopt)) opt = djopt
! check if size of buffer has changed
if (szbuf < nnxyp*nblok) then
if (szbuf /= 0) deallocate(cup)
! allocate buffer
allocate(cup(size(cu,1),nxv,nypmx,nblok,ntasks))
szbuf = nnxyp*nblok
endif
! initialize timer
call wtimer(tdjpost,dtime,-1)
select case(size(cu,1))
case (2)
if (order==LINEAR) then
if (opt==LOOKAHEAD) then
call MPGSRJPOST22L(part,cu,npp,nps,noff,qm,dt,ci,nx,ny&
&,idimp,npmax,nblok,nxv,nxyp,ipbc,cup,idtask,nmt,ierr)
else if (opt==VECTOR) then
call MPGSRJOST22XL(part,cu,npp,nps,noff,nn,amxy,qm,dt,&
&ci,nx,ny,idimp,npmax,nblok,nxv,nxyp,npd,n8,ipbc,cup,idtask,nmt,ier&
&r)
else
call MPGRJPOST22L(part,cu,npp,nps,noff,qm,dt,ci,nx,ny,&
&idimp,npmax,nblok,nxv,nypmx,ipbc,cup,idtask,nmt,ierr)
endif
else
if (opt==LOOKAHEAD) then
call MPGSRJPOST22(part,cu,npp,nps,noff,qm,dt,ci,nx,ny,&
&idimp,npmax,nblok,nxv,nxyp,ipbc,cup,idtask,nmt,ierr)
else if (opt==VECTOR) then
call MPGSRJOST22X(part,cu,npp,nps,noff,nn,amxy,qm,dt,c&
&i,nx,ny,idimp,npmax,nblok,nxv,nxyp,npd,n18,ipbc,cup,idtask,nmt,ier&
&r)
else
call MPGRJPOST22(part,cu,npp,nps,noff,qm,dt,ci,nx,ny,i&
&dimp,npmax,nblok,nxv,nypmx,ipbc,cup,idtask,nmt,ierr)
endif
endif
case (3)
if (order==LINEAR) then
if (opt==LOOKAHEAD) then
call MPGSRJPOST2L(part,cu,npp,nps,noff,qm,dt,ci,nx,ny,&
&idimp,npmax,nblok,nxv,nxyp,ipbc,cup,idtask,nmt,ierr)
else if (opt==VECTOR) then
call MPGSRJOST2XL(part,cu,npp,nps,noff,nn,amxy,qm,dt,c&
&i,nx,ny,idimp,npmax,nblok,nxv,nxyp,npd,n12,ipbc,cup,idtask,nmt,ier&
&r)
else
call MPGRJPOST2L(part,cu,npp,nps,noff,qm,dt,ci,nx,ny,i&
&dimp,npmax,nblok,nxv,nypmx,ipbc,cup,idtask,nmt,ierr)
endif
else
if (opt==LOOKAHEAD) then
call MPGSRJPOST2(part,cu,npp,nps,noff,qm,dt,ci,nx,ny,i&
&dimp,npmax,nblok,nxv,nxyp,ipbc,cup,idtask,nmt,ierr)
else if (opt==VECTOR) then
call MPGSRJOST2X(part,cu,npp,nps,noff,nn,amxy,qm,dt,ci&
&,nx,ny,idimp,npmax,nblok,nxv,nxyp,npd,n27,ipbc,cup,idtask,nmt,ierr&
&)
else
call MPGRJPOST2(part,cu,npp,nps,noff,qm,dt,ci,nx,ny,id&
&imp,npmax,nblok,nxv,nypmx,ipbc,cup,idtask,nmt,ierr)
endif
endif
end select
if (ierr /= 0) then
call MP_END
call PPEXIT
stop
endif
! record time
call wtimer(tdjpost,dtime)
end subroutine impgrjpost2
!
subroutine impgrbpush2(part,fxy,bxy,npp,noff,qbm,dt,dtc,ci,ek,t&
&push,nx,ny,ipbc,inorder,popt)
! multi-tasking, relativistic particle push with 2d electromagnetic
! fields,1d partition
implicit none
integer :: nx, ny, ipbc
integer, optional :: inorder, popt
real :: qbm, dt, dtc, ci, ek, tpush
real, dimension(:,:,:), pointer :: part
real, dimension(:,:,:,:), pointer :: fxy, bxy
integer, dimension(:), pointer :: npp, noff
! local data
integer :: idimp, npmax, nblok, nxv, nypmx, nxyp
integer :: nmt, order, opt, ierr
integer, dimension(size(npp)) :: nps
integer, dimension(ntasks) :: idtask
real, dimension(ntasks) :: ekp
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(popt)) opt = popt
! initialize timer
call wtimer(tpush,dtime,-1)
if (order==LINEAR) then
if (opt==LOOKAHEAD) then
call MPGSRBPUSH2L(part,fxy,bxy,npp,nps,noff,qbm,dt,dtc,ci&
&,ek,nx,ny,idimp,npmax,nblok,nxv,nxyp,ipbc,ekp,idtask,nmt,ierr)
else
call MPGRBPUSH2L(part,fxy,bxy,npp,nps,noff,qbm,dt,dtc,ci,&
&ek,nx,ny,idimp,npmax,nblok,nxv,nypmx,ipbc,ekp,idtask,nmt,ierr)
endif
else
if (opt==LOOKAHEAD) then
call MPGSRBPUSH2(part,fxy,bxy,npp,nps,noff,qbm,dt,dtc,ci,&
&ek,nx,ny,idimp,npmax,nblok,nxv,nxyp,ipbc,ekp,idtask,nmt,ierr)
else
call MPGRBPUSH2(part,fxy,bxy,npp,nps,noff,qbm,dt,dtc,ci,e&
&k,nx,ny,idimp,npmax,nblok,nxv,nypmx,ipbc,ekp,idtask,nmt,ierr)
endif
endif
if (ierr /= 0) then
call MP_END
call PPEXIT
stop
endif
! record time
call wtimer(tpush,dtime)
end subroutine impgrbpush2
!
subroutine impgrbpush23(part,fxy,bxy,npp,noff,qbm,dt,dtc,ci,ek,&
&tpush,nx,ny,ipbc,inorder,popt)
! multi-tasking, relativistic particle push with 2-1/2d electromagnetic
! fields, 1d partition
implicit none
integer :: nx, ny, ipbc
integer, optional :: inorder, popt
real :: qbm, dt, dtc, ci, ek, tpush
real, dimension(:,:,:), pointer :: part
real, dimension(:,:,:,:), pointer :: fxy, bxy
integer, dimension(:), pointer :: npp, noff
! local data
integer :: idimp, npmax, nblok, nxv, nypmx, nxyp
integer :: nmt, order, opt, ierr
integer, dimension(size(npp)) :: nps
integer, dimension(ntasks) :: idtask
real, dimension(ntasks) :: ekp
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(popt)) opt = popt
! initialize timer
call wtimer(tpush,dtime,-1)
select case(size(bxy,1))
case (1)
if (order==LINEAR) then
if (opt==LOOKAHEAD) then
call MPGSRBPUSH22L(part,fxy,bxy,npp,nps,noff,qbm,dt,dt&
&c,ci,ek,nx,ny,idimp,npmax,nblok,nxv,nxyp,ipbc,ekp,idtask,nmt,ierr)
else
call MPGRBPUSH22L(part,fxy,bxy,npp,nps,noff,qbm,dt,dtc&
&,ci,ek,nx,ny,idimp,npmax,nblok,nxv,nypmx,ipbc,ekp,idtask,nmt,ierr)
endif
else
if (opt==LOOKAHEAD) then
call MPGSRBPUSH22(part,fxy,bxy,npp,nps,noff,qbm,dt,dtc&
&,ci,ek,nx,ny,idimp,npmax,nblok,nxv,nxyp,ipbc,ekp,idtask,nmt,ierr)
else
call MPGRBPUSH22(part,fxy,bxy,npp,nps,noff,qbm,dt,dtc,&
&ci,ek,nx,ny,idimp,npmax,nblok,nxv,nypmx,ipbc,ekp,idtask,nmt,ierr)
endif
endif
case (3)
if (order==LINEAR) then
if (opt==LOOKAHEAD) then
call MPGSRBPUSH23L(part,fxy,bxy,npp,nps,noff,qbm,dt,dt&
&c,ci,ek,nx,ny,idimp,npmax,nblok,nxv,nxyp,ipbc,ekp,idtask,nmt,ierr)
else
call MPGRBPUSH23L(part,fxy,bxy,npp,nps,noff,qbm,dt,dtc&
&,ci,ek,nx,ny,idimp,npmax,nblok,nxv,nypmx,ipbc,ekp,idtask,nmt,ierr)
endif
else
if (opt==LOOKAHEAD) then
call MPGSRBPUSH23(part,fxy,bxy,npp,nps,noff,qbm,dt,dtc&
&,ci,ek,nx,ny,idimp,npmax,nblok,nxv,nxyp,ipbc,ekp,idtask,nmt,ierr)
else
call MPGRBPUSH23(part,fxy,bxy,npp,nps,noff,qbm,dt,dtc,&
&ci,ek,nx,ny,idimp,npmax,nblok,nxv,nypmx,ipbc,ekp,idtask,nmt,ierr)
endif
endif
end select
if (ierr /= 0) then
call MP_END
call PPEXIT
stop
endif
! record time
call wtimer(tpush,dtime)
end subroutine impgrbpush23
!
subroutine imprpush2zf(part,npp,dt,ci,ek,tpush,nx,ny,ipbc)
! multi-tasking relativistic particle push with no forces, 1d partition
implicit none
integer :: nx, ny, ipbc
real :: dt, ci, ek, tpush
real, dimension(:,:,:), pointer :: part
integer, dimension(:), pointer :: npp
! local data
integer :: idimp, npmax, nblok, nmt, ierr
real :: tp
integer, dimension(size(npp)) :: nps
integer, dimension(ntasks) :: idtask
real, dimension(ntasks) :: ekp
double precision :: dtime
idimp = size(part,1); npmax = size(part,2)
nblok = size(part,3)
nmt = ntasks
! initialize timer
call wtimer(tp,dtime,-1)
call MPRPUSH2ZF(part,npp,nps,dt,ci,ek,idimp,npmax,nblok,nx,ny,i&
&pbc,ekp,idtask,nmt,ierr)
if (ierr /= 0) then
call MP_END
call PPEXIT
stop
endif
! record time
call wtimer(tp,dtime)
tpush = tpush + tp
end subroutine imprpush2zf
!
subroutine imprpush23zf(part,npp,dt,ci,ek,tpush,nx,ny,ipbc,ndim&
&)
! multi-tasking 2d relativistic particle push with no forces,
! 1d partition
implicit none
integer :: nx, ny, ipbc, ndim
real :: dt, ci, ek, tpush
real, dimension(:,:,:), pointer :: part
integer, dimension(:), pointer :: npp
! local data
integer :: idimp, npmax, nblok, nmt, ierr
real :: tp
integer, dimension(size(npp)) :: nps
integer, dimension(ntasks) :: idtask
real, dimension(ntasks) :: ekp
double precision :: dtime
idimp = size(part,1); npmax = size(part,2)
nblok = size(part,3)
nmt = ntasks
! initialize timer
call wtimer(tp,dtime,-1)
select case(ndim)
case (2)
call MPRPUSH2ZF(part,npp,nps,dt,ci,ek,idimp,npmax,nblok,nx,n&
&y,ipbc,ekp,idtask,nmt,ierr)
case (3)
call MPRPUSH23ZF(part,npp,nps,dt,ci,ek,idimp,npmax,nblok,nx,&
&ny,ipbc,ekp,idtask,nmt,ierr)
end select
if (ierr /= 0) then
call MP_END
call PPEXIT
stop
endif
! record time
call wtimer(tp,dtime)
tpush = tpush + tp
end subroutine imprpush23zf
!
subroutine impgrcjpost2(part,fxy,npp,noff,cu,qm,qbm,dt,ci,tdcjp&
&ost,inorder)
! multi-tasking relativitic current density deposit
! with 2d electrostatic fields, 1d partition
implicit none
real :: qm, qbm, dt, ci, tdcjpost
real, dimension(:,:,:), pointer :: part
real, dimension(:,:,:,:), pointer :: fxy, cu
integer, dimension(:), pointer :: npp, noff
integer, optional :: inorder
! local data
integer :: idimp, npmax, nblok, nxv, nypmx, order, nmt, ierr
integer :: nnxyp
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 :: tdc
double precision :: dtime
idimp = size(part,1); npmax = size(part,2)
nblok = size(part,3)
nxv = size(fxy,2); nypmx = size(fxy,3)
nnxyp = size(cu,1)*nxv*nypmx
nmt = ntasks
order = QUADRATIC
if (present(inorder)) order = inorder
! check if size of buffer has changed
if (szbuf < nnxyp*nblok) then
if (szbuf /= 0) deallocate(cup)
! allocate buffer
allocate(cup(size(cu,1),nxv,nypmx,nblok,ntasks))
szbuf = nnxyp*nblok
endif
! initialize timer
call wtimer(tdc,dtime,-1)
if (order==LINEAR) then
call MPGRCJPOST2L(part,fxy,npp,nps,noff,cu,qm,qbm,dt,ci,idim&
&p,npmax,nblok,nxv,nypmx,cup,idtask,nmt,ierr)
else
call MPGRCJPOST2(part,fxy,npp,nps,noff,cu,qm,qbm,dt,ci,idimp&
&,npmax,nblok,nxv,nypmx,cup,idtask,nmt,ierr)
endif
if (ierr /= 0) then
call MP_END
call PPEXIT
stop
endif
! record time
call wtimer(tdc,dtime)
tdcjpost = tdcjpost + tdc
end subroutine impgrcjpost2
!
end module mprbpush2d