source: trunk/source/processes/hadronic/models/de_excitation/evaporation/src/G4AlphaEvaporationProbability.cc

Last change on this file was 1347, checked in by garnier, 14 years ago

geant4 tag 9.4

File size: 7.5 KB
Line 
1//
2// ********************************************************************
3// * License and Disclaimer                                           *
4// *                                                                  *
5// * The  Geant4 software  is  copyright of the Copyright Holders  of *
6// * the Geant4 Collaboration.  It is provided  under  the terms  and *
7// * conditions of the Geant4 Software License,  included in the file *
8// * LICENSE and available at  http://cern.ch/geant4/license .  These *
9// * include a list of copyright holders.                             *
10// *                                                                  *
11// * Neither the authors of this software system, nor their employing *
12// * institutes,nor the agencies providing financial support for this *
13// * work  make  any representation or  warranty, express or implied, *
14// * regarding  this  software system or assume any liability for its *
15// * use.  Please see the license in the file  LICENSE  and URL above *
16// * for the full disclaimer and the limitation of liability.         *
17// *                                                                  *
18// * This  code  implementation is the result of  the  scientific and *
19// * technical work of the GEANT4 collaboration.                      *
20// * By using,  copying,  modifying or  distributing the software (or *
21// * any work based  on the software)  you  agree  to acknowledge its *
22// * use  in  resulting  scientific  publications,  and indicate your *
23// * acceptance of all terms of the Geant4 Software license.          *
24// ********************************************************************
25//
26// $Id: G4AlphaEvaporationProbability.cc,v 1.18 2010/11/17 11:06:03 vnivanch Exp $
27// GEANT4 tag $Name: geant4-09-04-ref-00 $
28//
29// J.M. Quesada (August2008). Based on:
30//
31// Hadronic Process: Nuclear De-excitations
32// by V. Lara (Oct 1998)
33//
34// Modified:
35// 03-09-2008 J.M. Quesada for external choice of inverse cross section option
36// 17-11-2010 V.Ivanchenko integer Z and A
37
38#include "G4AlphaEvaporationProbability.hh"
39
40G4AlphaEvaporationProbability::G4AlphaEvaporationProbability() :
41    G4EvaporationProbability(4,2,1,&theCoulombBarrier) // A,Z,Gamma,&theCoumlombBarrier
42{}
43
44G4AlphaEvaporationProbability::~G4AlphaEvaporationProbability()
45{}
46
47G4double G4AlphaEvaporationProbability::CalcAlphaParam(const G4Fragment & fragment) 
48  { return 1.0 + CCoeficient(fragment.GetZ_asInt()-GetZ());}
49       
50G4double G4AlphaEvaporationProbability::CalcBetaParam(const G4Fragment &) 
51  { return 0.0; }
52
53G4double G4AlphaEvaporationProbability::CCoeficient(G4int aZ) 
54{
55  // Data comes from
56  // Dostrovsky, Fraenkel and Friedlander
57  // Physical Review, vol 116, num. 3 1959
58  //
59  // const G4int size = 5;
60  // G4double Zlist[5] = { 10.0, 20.0, 30.0, 50.0, 70.0};
61  //    G4double Calpha[5] = { 0.10, 0.10, 0.10, 0.08, 0.06};
62  G4double C = 0.0;
63       
64  if (aZ <= 30) 
65    {
66      C = 0.10;
67    }
68  else if (aZ <= 50)
69    {
70      C = 0.1 - (aZ-30)*0.001;
71    }
72  else if (aZ < 70)
73    {
74      C = 0.08 - (aZ-50)*0.001;
75    }
76  else 
77    {
78      C = 0.06;
79    }
80  return C;
81}
82
83///////////////////////////////////////////////////////////////////////////////////
84//J. M. Quesada (Dec 2007-June 2008): New inverse reaction cross sections
85//OPT=0 Dostrovski's parameterization
86//OPT=1,2 Chatterjee's paramaterization
87//OPT=3,4 Kalbach's parameterization
88//
89G4double
90G4AlphaEvaporationProbability::CrossSection(const G4Fragment & fragment, G4double K)
91{
92  theA=GetA();
93  theZ=GetZ();
94  ResidualA=fragment.GetA_asInt()-theA;
95  ResidualZ=fragment.GetZ_asInt()-theZ; 
96 
97  ResidualAthrd=fG4pow->Z13(ResidualA);
98  FragmentA=fragment.GetA_asInt();
99  FragmentAthrd=fG4pow->Z13(FragmentA);
100 
101  if (OPTxs==0) {std::ostringstream errOs;
102    errOs << "We should'n be here (OPT =0) at evaporation cross section calculation (Alpha's)!!" 
103          <<G4endl;
104    throw G4HadronicException(__FILE__, __LINE__, errOs.str());
105    return 0.;}
106 
107  if( OPTxs==1 || OPTxs==2) return G4AlphaEvaporationProbability::GetOpt12( K);
108  else if (OPTxs==3 || OPTxs==4)  return G4AlphaEvaporationProbability::GetOpt34( K);
109  else{
110    std::ostringstream errOs;
111    errOs << "BAD Alpha CROSS SECTION OPTION AT EVAPORATION!!"  <<G4endl;
112    throw G4HadronicException(__FILE__, __LINE__, errOs.str());
113    return 0.;
114  }
115}
116
117//
118//********************* OPT=1,2 : Chatterjee's cross section ********************
119//(fitting to cross section from Bechetti & Greenles OM potential)
120
121G4double G4AlphaEvaporationProbability::GetOpt12(G4double K)
122{
123  G4double Kc=K;
124
125  // JMQ xsec is set constant above limit of validity
126  if (K > 50*MeV) { Kc = 50*MeV; }
127
128  G4double landa ,mu ,nu ,p , Ec,q,r,ji,xs;
129
130  G4double     p0 = 10.95;
131  G4double     p1 = -85.2;
132  G4double     p2 = 1146.;
133  G4double     landa0 = 0.0643;
134  G4double     landa1 = -13.96;
135  G4double     mu0 = 781.2;
136  G4double     mu1 = 0.29;
137  G4double     nu0 = -304.7;
138  G4double     nu1 = -470.0;
139  G4double     nu2 = -8.580;   
140  G4double     delta=1.2;         
141
142  Ec = 1.44*theZ*ResidualZ/(1.5*ResidualAthrd+delta);
143  p = p0 + p1/Ec + p2/(Ec*Ec);
144  landa = landa0*ResidualA + landa1;
145  G4double resmu1 = fG4pow->powZ(ResidualA,mu1); 
146  mu = mu0*resmu1;
147  nu = resmu1*(nu0 + nu1*Ec + nu2*(Ec*Ec));
148  q = landa - nu/(Ec*Ec) - 2*p*Ec;
149  r = mu + 2*nu/Ec + p*(Ec*Ec);
150
151  ji=std::max(Kc,Ec);
152  if(Kc < Ec) { xs = p*Kc*Kc + q*Kc + r;}
153  else {xs = p*(Kc - ji)*(Kc - ji) + landa*Kc + mu + nu*(2 - Kc/ji)/ji ;}
154 
155  if (xs <0.0) {xs=0.0;}
156             
157  return xs;
158}
159
160// *********** OPT=3,4 : Kalbach's cross sections (from PRECO code)*************
161G4double G4AlphaEvaporationProbability::GetOpt34(G4double K)
162// c     ** alpha from huizenga and igo
163{
164  G4double landa, mu, nu, p , signor(1.),sig;
165  G4double ec,ecsq,xnulam,etest(0.),a; 
166  G4double b,ecut,cut,ecut2,geom,elab;
167
168  G4double     flow = 1.e-18;
169  G4double     spill= 1.e+18;
170
171  G4double     p0 = 10.95;
172  G4double     p1 = -85.2;
173  G4double     p2 = 1146.;
174  G4double     landa0 = 0.0643;
175  G4double     landa1 = -13.96;
176  G4double     mu0 = 781.2;
177  G4double     mu1 = 0.29;
178  G4double     nu0 = -304.7;
179  G4double     nu1 = -470.0;
180  G4double     nu2 = -8.580;       
181 
182  G4double      ra=1.20;
183       
184  //JMQ 13/02/09 increase of reduced radius to lower the barrier
185  // ec = 1.44 * theZ * ResidualZ / (1.5*ResidualAthrd+ra);
186  ec = 1.44 * theZ * ResidualZ / (1.7*ResidualAthrd+ra);
187  ecsq = ec * ec;
188  p = p0 + p1/ec + p2/ecsq;
189  landa = landa0*ResidualA + landa1;
190  a = fG4pow->powZ(ResidualA,mu1);
191  mu = mu0 * a;
192  nu = a* (nu0+nu1*ec+nu2*ecsq); 
193  xnulam = nu / landa;
194  if (xnulam > spill) { xnulam=0.; }
195  if (xnulam >= flow) { etest = 1.2 *std::sqrt(xnulam); }
196
197  a = -2.*p*ec + landa - nu/ecsq;
198  b = p*ecsq + mu + 2.*nu/ec;
199  ecut = 0.;
200  cut = a*a - 4.*p*b;
201  if (cut > 0.) { ecut = std::sqrt(cut); }
202  ecut = (ecut-a) / (p+p);
203  ecut2 = ecut;
204  //JMQ 290310 for avoiding unphysical increase below minimum (at ecut)
205  // ecut<0 means that there is no cut with energy axis, i.e. xs is set
206  // to 0 bellow minimum
207  //  if (cut < 0.) ecut2 = ecut - 2.;
208  if (cut < 0.) { ecut2 = ecut; }
209  elab = K * FragmentA / G4double(ResidualA);
210  sig = 0.;
211 
212  if (elab <= ec) { //start for E<Ec
213    if (elab > ecut2) { sig = (p*elab*elab+a*elab+b) * signor; }
214  }           //end for E<Ec
215  else {           //start for E>Ec
216    sig = (landa*elab+mu+nu/elab) * signor;
217    geom = 0.;
218    if (xnulam < flow || elab < etest) { return sig; }
219    geom = std::sqrt(theA*K);
220    geom = 1.23*ResidualAthrd + ra + 4.573/geom;
221    geom = 31.416 * geom * geom;
222    sig = std::max(geom,sig);
223  }           //end for E>Ec
224  return sig;
225}
226
Note: See TracBrowser for help on using the repository browser.