FLASH-X
Doxygen Generated Documentation From Interface Source Code
Grid_pfftInit.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!!
51subroutine Grid_pfftInit( ndim, needMap, globalLen, localArraySize, &
52 transformType, baseDatType, jProcs, kProcs, refinementLevel, region_bndBox)
53
54#include "constants.h"
55
56 implicit none
57 integer, intent(IN) :: ndim
58 logical, intent(IN) :: needMap
59 integer, dimension(MDIM), intent(IN) :: globalLen
60 integer,dimension(MDIM),intent(OUT) :: localArraySize
61 integer,dimension(MDIM),optional,intent(IN) :: transformType
62 integer,dimension(0:MDIM),optional,intent(IN) :: baseDatType
63 integer,optional,intent(IN) :: jProcs, kProcs
64 integer,optional,intent(IN) :: refinementLevel
65 real, dimension(LOW:HIGH, MDIM), optional, intent(IN) :: region_bndBox
66
67
68 localArraySize=1
69
70 return
71end subroutine Grid_pfftInit
subroutine Grid_pfftInit(ndim, needMap, globalLen, localArraySize, transformType, baseDatType, jProcs, kProcs, refinementLevel, region_bndBox)