FLASH-X
Doxygen Generated Documentation From Interface Source Code
Particles_mapToMeshOneBlk.F90
Go to the documentation of this file.
1!! NOTICE
2!! Copyright 2022 UChicago Argonne, LLC and contributors
3!!
4!! Licensed under the Apache License, Version 2.0 (the "License");
5!! you may not use this file except in compliance with the License.
6!!
7!! Unless required by applicable law or agreed to in writing, software
8!! distributed under the License is distributed on an "AS IS" BASIS,
9!! WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
10!! See the License for the specific language governing permissions and
11!! limitations under the License.
12!!
48
49subroutine Particles_mapToMeshOneBlk(blkLimitsGC,guard,blockID,&
50 particles,numParticles,pt_attribute,buff,particleOffset)
51
52#include "constants.h"
53#include "Simulation.h"
54
55
56 implicit none
57 integer,dimension(LOW:HIGH,MDIM), intent(IN) :: blkLimitsGC
58 integer, dimension(MDIM),intent(IN) :: guard
59 integer, intent(IN) :: blockID, numParticles
60 real, intent(in) :: particles(NPART_PROPS,numParticles)
61 integer, intent(in) :: pt_attribute
62
63 real, dimension(blkLimitsGC(LOW,IAXIS):blkLimitsGC(HIGH,IAXIS),&
64 blkLimitsGC(LOW,JAXIS):blkLimitsGC(HIGH,JAXIS),&
65 blkLimitsGC(LOW,KAXIS):blkLimitsGC(HIGH,KAXIS)),&
66 INTENT(INOUT) :: buff
67 integer, intent(in),OPTIONAL :: particleOffset
68
69 return
70end subroutine Particles_mapToMeshOneBlk
71
subroutine Particles_mapToMeshOneBlk(blkLimitsGC, guard, blockID, particles, numParticles, pt_attribute, buff, particleOffset)