FLASH-X
Doxygen Generated Documentation From Interface Source Code
Grid_mapMeshToParticles.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!!
38!*******************************************************************************
39
40subroutine Grid_mapMeshToParticles (particles, part_props,part_blkID,&
41 numParticles,posAttrib,&
42 numAttrib, attrib,&
43 mapType,gridDataStruct)
44
45 implicit none
46
47#include "Simulation.h"
48#include "constants.h"
49#include "Particles.h"
50
51 integer, INTENT(in) :: part_props, numParticles, numAttrib, part_blkID
52 real, INTENT(inout),dimension(part_props,numParticles) :: particles
53 integer,dimension(MDIM), intent(IN) :: posAttrib
54 integer, dimension(PART_ATTR_DS_SIZE,numAttrib),INTENT(in) :: attrib
55 integer, INTENT(IN) :: mapType
56 integer, optional, intent(IN) :: gridDataStruct
57
58 return
59end subroutine Grid_mapMeshToParticles
60
subroutine Grid_mapMeshToParticles(particles, part_props, part_blkID, numParticles, posAttrib, numAttrib, attrib, mapType, gridDataStruct)