2D AMRCLAW
Functions/Subroutines
init_iflags.f File Reference

Go to the source code of this file.

Functions/Subroutines

subroutine init_iflags (iflags, isize, jsize)
 

Function/Subroutine Documentation

◆ init_iflags()

subroutine init_iflags ( integer(kind=1), dimension (0:isize+1,0:jsize+1)  iflags,
  isize,
  jsize 
)

Definition at line 5 of file init_iflags.f.

5 c
6 c # Need this routine to initialize since iflags is part of double
7 c # precision alloc array but is used as an integer(kind=1) to save storage.
8 
9  implicit double precision (a-h,o-z)
10 
11  integer(kind=1) iflags (0:isize+1,0:jsize+1)
12 
13  do j = 1, jsize
14  do i = 1, isize
15  iflags(i,j) = 0
16  enddo
17  enddo
18 
19  return