FLASH-X
Doxygen Generated Documentation From Interface Source Code
Hydro_shockStrength.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!!
13!!
50
51
52subroutine Hydro_shockStrength(solnData, shock, blkLimits, blkLimitsGC, &
53 guardCells, &
54 primaryCoord,secondCoord,thirdCoord, &
55 threshold, mode)
56 implicit none
57#include "constants.h"
58#include "Simulation.h"
59
60 integer, intent(IN), dimension(2,MDIM) :: blkLimits, blkLimitsGC
61 integer, intent(IN) :: guardCells(MDIM)
62 real, pointer :: solnData(:,:,:,:)
63 real,intent(inout),dimension(blkLimitsGC(LOW,IAXIS):blkLimitsGC(HIGH,IAXIS),&
64 blkLimitsGC(LOW,JAXIS):blkLimitsGC(HIGH,JAXIS),&
65 blkLimitsGC(LOW,KAXIS):blkLimitsGC(HIGH,KAXIS)) :: shock
66 real,intent(IN),dimension(blkLimitsGC(LOW,IAXIS):blkLimitsGC(HIGH,IAXIS)) :: primaryCoord
67 real,intent(IN),dimension(blkLimitsGC(LOW,JAXIS):blkLimitsGC(HIGH,JAXIS)) :: secondCoord
68 real,intent(IN),dimension(blkLimitsGC(LOW,KAXIS):blkLimitsGC(HIGH,KAXIS)) :: thirdCoord
69 real, intent(IN) :: threshold
70 integer, intent(IN) :: mode
71
72
73end subroutine Hydro_shockStrength
74
75
76
77
subroutine Hydro_shockStrength(solnData, shock, blkLimits, blkLimitsGC, guardCells, primaryCoord, secondCoord, thirdCoord, threshold, mode)