2D AMRCLAW
putnod.f
Go to the documentation of this file.
1 c
2 c -------------------------------------------------------------
4 c
5  subroutine putnod (mptr)
6 c
7  use amr_module
8  implicit double precision (a-h,o-z)
9 
10 
11 c :::::::::::::::::::::::::::::: PUTNOD :::::::::::::::::::::;
12 c
13 c return mptr node to the linked list kept in node array.
14 c
15 c ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::;
16 c
17  node(nextfree, mptr) = ndfree
18  ndfree = mptr
19 c
20  return
21  end
22 c
23 c -------------------------------------------------------------
24 c
25  subroutine putnod_bnd (mcell)
26 c
27  use amr_module
28  implicit double precision (a-h,o-z)
29 
30 
31 c :::::::::::::::::::::::::::::: PUTNOD_BND :::::::::::::::::::::;
32 c
33 c return bndry list node to the linked list
34 c
35 c ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::;
36 c
37  bndlist(mcell, nextfree) = ndfree_bnd
38  ndfree_bnd = mcell
39 c
40  return
41  end
integer ndfree
Definition: amr_module.f90:198
integer, dimension(nsize, maxgr) node
Definition: amr_module.f90:198
integer ndfree_bnd
Definition: amr_module.f90:198
subroutine putnod(mptr)
Return mptr node to the linked list kept in node array.
Definition: putnod.f:6
integer, dimension(bndlistsize, 2) bndlist
Definition: amr_module.f90:191
subroutine putnod_bnd(mcell)
Definition: putnod.f:26
integer, parameter nextfree
Definition: amr_module.f90:154
The module contains the definition of a "node descriptor" as well as other global variables used duri...
Definition: amr_module.f90:21