FLASH-X
Doxygen Generated Documentation From Interface Source Code
Grid_smoothVar.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!!
39subroutine Grid_smoothVar(ivar, ivarOut, &
40 solnData, lbUI,lbUJ,lbUK, &
41 blklim, smoothMethod, gcLayers, blockID,&
42 useMinSmoothVarVal,&
43 minSmoothVarVal,&
44 useMaxSmoothVarVal,&
45 maxSmoothVarVal,&
46 smoothCoeff )
47
48 implicit none
49
50#include "constants.h"
51#include "FortranLangFeatures.fh"
52
53 ! Arguments:
54 integer, intent(in) :: ivar
55 integer, intent(in) :: ivarOut
56 integer, VALUE_INTENT(IN) :: lbUI,lbUJ,lbUK
57 real, intent(INOUT) :: solnData(:,lbUI:,lbUJ:,lbUK:)
58 integer, intent(in) :: blklim(2,MDIM)
59 integer, intent(in),OPTIONAL :: smoothMethod
60 integer, intent(IN),OPTIONAL :: gcLayers
61 integer, intent(IN),OPTIONAL :: blockID
62 logical, intent(IN),OPTIONAL :: useMinSmoothVarVal,useMaxSmoothVarVal
63 real , intent(IN),OPTIONAL :: minSmoothVarVal,maxSmoothVarVal
64 real , intent(IN),OPTIONAL :: smoothCoeff
65
66end subroutine Grid_smoothVar
subroutine Grid_smoothVar(ivar, ivarOut, solnData, lbUI, lbUJ, lbUK, blklim, smoothMethod, gcLayers, blockID, useMinSmoothVarVal, minSmoothVarVal, useMaxSmoothVarVal, maxSmoothVarVal, smoothCoeff)