2D AMRCLAW
fss.f
Go to the documentation of this file.
1 c
2 c
3 c
4 c
5 c
6 c =================================================
7  function fss(s)
8 c =================================================
9  implicit double precision (a-h,o-z)
10  common/fsscorn/ xc0,yc0,xc1,yc1
11 c
12 c # compute fdisc at distance s between corners (xc0,yc0) and (xc1,yc1)
13 c
14  x = xc0 + s*(xc1-xc0)
15  y = yc0 + s*(yc1-yc0)
16  fss = fdisc(x,y)
17  return
18  end
function fdisc(x, y)
Definition: fdisc.f:6
function fss(s)
Definition: fss.f:8