2D AMRCLAW
putnod.f
Go to the documentation of this file.
1 c
2 c -------------------------------------------------------------
3 c
4  subroutine putnod (mptr)
5 c
6  use amr_module
7  implicit double precision (a-h,o-z)
8 
9 
10 c :::::::::::::::::::::::::::::: PUTNOD :::::::::::::::::::::;
11 c
12 c return mptr node to the linked list kept in node array.
13 c
14 c ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::;
15 c
16  node(nextfree, mptr) = ndfree
17  ndfree = mptr
18 c
19  return
20  end
21 c
22 c -------------------------------------------------------------
23 c
24  subroutine putnod_bnd (mcell)
25 c
26  use amr_module
27  implicit double precision (a-h,o-z)
28 
29 
30 c :::::::::::::::::::::::::::::: PUTNOD_BND :::::::::::::::::::::;
31 c
32 c return bndry list node to the linked list
33 c
34 c ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::;
35 c
36  bndlist(mcell, nextfree) = ndfree_bnd
37  ndfree_bnd = mcell
38 c
39  return
40  end
subroutine putnod(mptr)
Definition: putnod.f:4
subroutine putnod_bnd(mcell)
Definition: putnod.f:24