2D AMRCLAW
Functions/Subroutines
griddomcopy.f File Reference

Go to the source code of this file.

Functions/Subroutines

subroutine griddomcopy (i1, i2, ilo, ihi, jlo, jhi, mbuff)
 

Function/Subroutine Documentation

◆ griddomcopy()

subroutine griddomcopy ( integer*1, dimension(ilo-mbuff:ihi+mbuff,jlo-mbuff:jhi+mbuff)  i1,
integer*1, dimension(ilo-mbuff:ihi+mbuff,jlo-mbuff:jhi+mbuff)  i2,
  ilo,
  ihi,
  jlo,
  jhi,
  mbuff 
)

Definition at line 5 of file griddomcopy.f.

Referenced by setdomflags().

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
The module contains the definition of a "node descriptor" as well as other global variables used duri...
Definition: amr_module.f90:21
Here is the caller graph for this function: