2D AMRCLAW
griddomcopy.f
Go to the documentation of this file.
1 c
2 c ----------------------------------------------------
3 c
4  subroutine griddomcopy(i1, i2, ilo,ihi,jlo,jhi,mbuff)
5 
6  use amr_module
7  implicit double precision (a-h, o-z)
8 
9 
10  integer*1 i2(ilo-mbuff:ihi+mbuff,jlo-mbuff:jhi+mbuff)
11  integer*1 i1(ilo-mbuff:ihi+mbuff,jlo-mbuff:jhi+mbuff)
12 
13 c
14 c ::::::::::::::::::::::::::: GRIDDOMCOPY :::::::::::::::::::::
15 c
16 c griddomain flags need to be in different place
17 c (can f90 do this in one statement, without sub call?)
18 c :::::::::::::::::::::::::::::::::::::::::::::::::::::::
19 
20 
21  do 10 j = jlo-mbuff,jhi+mbuff
22  do 10 i = ilo-mbuff,ihi+mbuff
23  i1(i,j) = i2(i,j)
24  10 continue
25 c
26  return
27  end
subroutine griddomcopy(i1, i2, ilo, ihi, jlo, jhi, mbuff)
Definition: griddomcopy.f:5
The module contains the definition of a "node descriptor" as well as other global variables used duri...
Definition: amr_module.f90:21