forked from gt-frc/GTNEUT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
esc.inc
23 lines (17 loc) · 833 Bytes
/
esc.inc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
c/////////////////////// File esc.inc //////////////////////////////
c/ This file contains variables needed in the calculation
c/ of the various escape probabilities.
integer maxFEM, maxDiv
parameter(maxDiv=10, maxFEM=(maxDiv+1)*maxDiv*maxSides/2+1)
real xp(maxSides),yp(maxSides),xc,yc, subarea(maxSides),
. sublength(maxSides),
. xa2(maxSides),ya2(maxSides),
. xya(maxSides), xa(maxSides), ya(maxSides),
. xl2(maxSides), yl2(maxSides), xyl(maxSides),
. xl(maxSides), yl(maxSides)
double precision A1(maxFEM,maxFEM),B1(maxFEM,maxFEM)
double precision ST(maxFEM,6*maxSides),S0(maxFEM,6*maxSides)
real xt(maxFEM),yt(maxFEM)
common /esc/A1,B1,S0,ST
real lam0,l01,l12,phi012
common /secsource/lam0,l01,l12,phi012