FLASH-X
Doxygen Generated Documentation From Interface Source Code
Gravity_accelOneRow.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!!
51
52#include "constants.h"
53
54subroutine Gravity_accelOneRow_blkid (pos, sweepDir, blockID, numCells, grav, &
55 potentialIndex, extraAccelVars)
56
57!===============================================================================
58
59 implicit none
60
61 integer, intent(IN) :: sweepDir,blockID,numCells
62 integer, dimension(2),INTENT(in) ::pos
63 real, dimension(numCells),INTENT(inout) :: grav
64 integer,intent(IN),optional :: potentialIndex
65 integer, intent(IN),OPTIONAL :: extraAccelVars(MDIM)
66!======================================================================
67
68 return
69end subroutine Gravity_accelOneRow_blkid
70
71subroutine Gravity_accelOneRow(pos, sweepDir, tileDesc, lo, hi, grav, Uin, &
72 potentialIndex, extraAccelVars)
73 use Grid_tile, ONLY : Grid_tile_t
74
75 implicit none
76
77 integer, intent(IN) :: pos(2)
78 integer, intent(IN) :: sweepDir
79 type(Grid_tile_t), intent(IN) :: tileDesc
80 integer, intent(IN) :: lo
81 integer, intent(IN) :: hi
82 real, intent(INOUT) :: grav(lo:hi)
83 real, POINTER, OPTIONAL :: Uin(:,:,:,:)
84 integer, intent(IN), OPTIONAL :: potentialIndex
85 integer, intent(IN), OPTIONAL :: extraAccelVars(MDIM)
86
87 return
88end subroutine Gravity_accelOneRow
subroutine Gravity_accelOneRow(pos, sweepDir, tileDesc, lo, hi, grav, Uin, potentialIndex, extraAccelVars)
subroutine Gravity_accelOneRow_blkid(pos, sweepDir, blockID, numCells, grav, potentialIndex, extraAccelVars)