COSMOS v7.655  COSMOSv7655
(AirShowerMC)
cmucap.f
Go to the documentation of this file.
1 !c test cmucap
2 ! real*8 capr
3 ! call cmucap(16, 8, capr)
4 ! write(*,*) ' capr=',capr
5 ! end
6 ! compute muon capture rate /sec
7 ! mu- + p --> n + neu(mu)
8 ! mu- + (z,n)--->(z+1, n-1) + neu(mu)
9 ! at z=9, decay rate and capture rate compeat
10 !
11  subroutine cmucap(a, z, capr)
12 ! a: integer. input. mass number of the medium
13 ! z: integer. input. atomic number of the medium
14 ! capr: real*8. output. capture rate/sec
15 !
16  implicit none
17  integer a, z
18  real*8 capr
19 !
20 ! integer nn
21 ! parameter (nn=16)
22 !c real mass(nn)/
23 ! * 9.00, 12.01, 16.00, 24.32, 28.11, 32.08, 40.10,
24 ! * 51.00, 58.77,
25 ! * 63.62, 95.98, 112.52, 184.0, 207.8, 209.0,
26 ! * 238.0/
27 ! real rho(nn)/
28 ! * 4.528e-6, 2.026e-5, 3.786e-5, 2.478e-4, 4.265e-4,
29 ! * 6.612e-4, 1.290e-3, 2.016e-3, 3.462e-3,
30 ! * 3.789e-3,9.189e-3, 1.204e-2, 2.190e-2,
31 ! * 2.592e-2,
32 ! * 2.542e-2, 2.832e-2/
33 !
34 ! reference:1)h. primakoff. rev. mod. phys. 31(1959)802
35 ! 2)j.c.sens, r.a.swanson, v.l.telegdi, d.d.yovanovitch
36 ! p.r. 107(1957)1464.
37 ! 3)j.c.sens, p.r. 113 (1959)679 (refer this one)
38 ! capture rate for o: 125000/sec
39 ! n: 86000/sec
40 ! ar: 1530000/sec
41 ! s.rock: 360000/sec
42  real*8 x, rho
43 !
44  if(a .gt. 8) then
45 ! for the case of air, treat specially.
46  if(a .eq. 14 .and. z .eq. 7) then
47  capr=0.86d5
48  elseif(a .eq. 16 .and. z .eq. 8) then
49 ! experimental value of o is not reliable.
50 ! use (zeff(o)/zeef(c))**4 * capr(c)
51 ! as (7.47/5.75)**4 * 0.44e5=125000.
52  capr=125000.d0
53  else
54  x=log10(float(a))
55 ! nuclear density (protons/fermi**3)
56  rho=10.0**( (-1.37*x +7.23)*x -11.0)
57  capr=rho *
58  * (- 21.8/0.07 *( (a-z)/2/float(a)-0.24) + 24.05)*1.e8
59  endif
60  else
61  capr=169. * z**4 * (1. - 3.15 * (a-z)/2/float(a) )
62  endif
63  end
subroutine cmucap(a, z, capr)
Definition: cmucap.f:12
block data cblkEvhnp ! currently usable models data RegMdls ad *special data *Cekaon d0
Definition: cblkEvhnp.h:5