source: trunk/source/processes/hadronic/models/de_excitation/evaporation/src/G4ProtonEvaporationProbability.cc @ 1347

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

geant4 tag 9.4

File size: 9.4 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: G4ProtonEvaporationProbability.cc,v 1.17 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 "G4ProtonEvaporationProbability.hh"
39
40G4ProtonEvaporationProbability::G4ProtonEvaporationProbability() :
41    G4EvaporationProbability(1,1,2,&theCoulombBarrier) // A,Z,Gamma,&theCoulombBarrier
42{}
43
44G4ProtonEvaporationProbability::~G4ProtonEvaporationProbability() 
45{}
46
47G4double G4ProtonEvaporationProbability::CalcAlphaParam(const G4Fragment & fragment) 
48  { return 1.0 + CCoeficient(fragment.GetZ_asInt()-GetZ());}
49       
50G4double G4ProtonEvaporationProbability::CalcBetaParam(const G4Fragment & ) 
51  { return 0.0; }
52
53G4double G4ProtonEvaporationProbability::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 Cp[5] = { 0.50, 0.28, 0.20, 0.15, 0.10};
62  G4double C = 0.0;
63       
64  if (aZ >= 70) {
65    C = 0.10;
66  } else {
67    C = ((((0.15417e-06*aZ) - 0.29875e-04)*aZ + 0.21071e-02)*aZ - 0.66612e-01)*aZ + 0.98375;
68  }
69       
70  return C;
71       
72}
73
74///////////////////////////////////////////////////////////////////////////////////
75//J. M. Quesada (Dec 2007-June 2008): New inverse reaction cross sections for protons
76//OPT=0 Dostrovski's parameterization
77//OPT=1 Chatterjee's parameterization
78//OPT=2,4 Wellisch's parameterization
79//OPT=3 Kalbach's parameterization
80//
81G4double
82G4ProtonEvaporationProbability::CrossSection(const  G4Fragment & fragment, G4double K)
83{
84  //  G4cout<<" In G4ProtonEVaporationProbability OPTxs="<<OPTxs<<G4endl;
85  //  G4cout<<" In G4ProtonEVaporationProbability useSICB="<<useSICB<<G4endl;
86
87  theA=GetA();
88  theZ=GetZ();
89  ResidualA=fragment.GetA_asInt()-theA;
90  ResidualZ=fragment.GetZ_asInt()-theZ; 
91 
92  ResidualAthrd=fG4pow->Z13(ResidualA);
93  FragmentA=fragment.GetA_asInt();
94  FragmentAthrd=fG4pow->Z13(FragmentA);
95
96  U=fragment.GetExcitationEnergy();
97
98  if (OPTxs==0) {std::ostringstream errOs;
99    errOs << "We should'n be here (OPT =0) at evaporation cross section calculation (protons)!!"  <<G4endl;
100    throw G4HadronicException(__FILE__, __LINE__, errOs.str());
101    return 0.;}
102  else if( OPTxs==1 ) return GetOpt1( K);
103  else if( OPTxs==2 ||OPTxs==4) return GetOpt2( K);
104  else if (OPTxs==3 )  return GetOpt3( K);
105  else{
106    std::ostringstream errOs;
107    errOs << "BAD PROTON CROSS SECTION OPTION AT EVAPORATION!!"  <<G4endl;
108    throw G4HadronicException(__FILE__, __LINE__, errOs.str());
109    return 0.;
110  }
111}
112
113//********************* OPT=1 : Chatterjee's cross section *********************
114//(fitting to cross section from Bechetti & Greenles OM potential)
115
116G4double G4ProtonEvaporationProbability::GetOpt1(G4double K)
117{
118  G4double Kc=K; 
119
120  // JMQ  xsec is set constat above limit of validity
121  if (K > 50*MeV) { Kc = 50*MeV; }
122
123  G4double landa, landa0, landa1, mu, mu0, mu1,nu, nu0, nu1, nu2,xs;
124  G4double p, p0, p1, p2,Ec,delta,q,r,ji;
125 
126  p0 = 15.72;
127  p1 = 9.65;
128  p2 = -449.0;
129  landa0 = 0.00437;
130  landa1 = -16.58;
131  mu0 = 244.7;
132  mu1 = 0.503;
133  nu0 = 273.1;
134  nu1 = -182.4;
135  nu2 = -1.872; 
136  delta=0.; 
137
138  Ec = 1.44*theZ*ResidualZ/(1.5*ResidualAthrd+delta);
139  p = p0 + p1/Ec + p2/(Ec*Ec);
140  landa = landa0*ResidualA + landa1;
141
142  G4double resmu1 = fG4pow->powZ(ResidualA,mu1); 
143  mu = mu0*resmu1;
144  nu = resmu1*(nu0 + nu1*Ec + nu2*(Ec*Ec));
145  q = landa - nu/(Ec*Ec) - 2*p*Ec;
146  r = mu + 2*nu/Ec + p*(Ec*Ec);
147
148  ji=std::max(Kc,Ec);
149  if(Kc < Ec) { xs = p*Kc*Kc + q*Kc + r;}
150  else {xs = p*(Kc - ji)*(Kc - ji) + landa*Kc + mu + nu*(2 - Kc/ji)/ji ;}
151  if (xs <0.0) {xs=0.0;}
152
153  return xs; 
154}
155
156//************* OPT=2 : Welisch's proton reaction cross section ***************
157
158G4double G4ProtonEvaporationProbability::GetOpt2(G4double K)
159{
160
161  G4double eekin,ekin,ff1,ff2,ff3,r0,fac,fac1,fac2,b0,xine_th(0);
162 
163  // This is redundant when the Coulomb  barrier is overimposed to all
164  // cross sections
165  // It should be kept when Coulomb barrier only imposed at OPTxs=2
166
167  if(!useSICB && K<=theCoulombBarrier.GetCoulombBarrier(ResidualA,ResidualZ,U)) 
168    { return 0.0; }
169
170  eekin=K;
171  G4int rnneu=ResidualA-ResidualZ;
172  ekin=eekin/1000;
173  r0=1.36*1.e-15;
174  fac=pi*r0*r0;
175  b0=2.247-0.915*(1.-1./ResidualAthrd);
176  fac1=b0*(1.-1./ResidualAthrd);
177  fac2=1.;
178  if(rnneu > 1.5) { fac2 = fG4pow->logZ(rnneu); }
179  xine_th= 1.e+31*fac*fac2*(1.+ResidualAthrd-fac1);
180  xine_th=(1.-0.15*std::exp(-ekin))*xine_th/(1.00-0.0007*ResidualA);   
181  ff1=0.70-0.0020*ResidualA;
182  ff2=1.00+1/G4double(ResidualA);
183  ff3=0.8+18/G4double(ResidualA)-0.002*ResidualA;
184  fac=1.-(1./(1.+std::exp(-8.*ff1*(std::log10(ekin)+1.37*ff2))));
185  xine_th=xine_th*(1.+ff3*fac);
186  ff1=1.-1/G4double(ResidualA)-0.001*ResidualA;
187  ff2=1.17-2.7/G4double(ResidualA)-0.0014*ResidualA;
188  fac=-8.*ff1*(std::log10(ekin)+2.0*ff2);
189  fac=1./(1.+std::exp(fac));
190  xine_th=xine_th*fac;           
191  if (xine_th < 0.0){
192    std::ostringstream errOs;
193    G4cout<<"WARNING:  negative Wellisch cross section "<<G4endl; 
194    errOs << "RESIDUAL: A=" << ResidualA << " Z=" << ResidualZ <<G4endl;
195    errOs <<"  xsec("<<ekin<<" MeV) ="<<xine_th <<G4endl;
196    throw G4HadronicException(__FILE__, __LINE__, errOs.str());
197  }
198  return xine_th;
199}
200
201// *********** OPT=3 : Kalbach's cross sections (from PRECO code)*************
202G4double G4ProtonEvaporationProbability::GetOpt3(const  G4double K)
203{
204  //     ** p from  becchetti and greenlees (but modified with sub-barrier
205  //     ** correction function and xp2 changed from -449)
206
207  G4double landa, landa0, landa1, mu, mu0, mu1,nu, nu0, nu1, nu2;
208  G4double p, p0, p1, p2;
209  p0 = 15.72;
210  p1 = 9.65;
211  p2 = -300.;
212  landa0 = 0.00437;
213  landa1 = -16.58;
214  mu0 = 244.7;
215  mu1 = 0.503;
216  nu0 = 273.1;
217  nu1 = -182.4;
218  nu2 = -1.872;
219 
220  // parameters for  proton cross section refinement
221  G4double afit,bfit,a2,b2;
222  afit=-0.0785656;
223  bfit=5.10789;
224  a2= -0.00089076;
225  b2= 0.0231597; 
226 
227  G4double ec,ecsq,xnulam,etest(0.),ra(0.),a,w,c,signor(1.),signor2,sig; 
228  G4double b,ecut,cut,ecut2,geom,elab;
229   
230  G4double      flow = 1.e-18;
231  G4double       spill= 1.e+18; 
232   
233  if (ResidualA <= 60)      { signor = 0.92; }
234  else if (ResidualA < 100) { signor = 0.8 + ResidualA*0.002; }
235 
236  ec = 1.44 * theZ * ResidualZ / (1.5*ResidualAthrd+ra);
237  ecsq = ec * ec;
238  p = p0 + p1/ec + p2/ecsq;
239  landa = landa0*ResidualA + landa1;
240  a = fG4pow->powZ(ResidualA,mu1);
241  mu = mu0 * a;
242  nu = a* (nu0+nu1*ec+nu2*ecsq);
243 
244  c =std::min(3.15,ec*0.5);
245  w = 0.7 * c / 3.15; 
246 
247  xnulam = nu / landa;
248  if (xnulam > spill) { xnulam=0.; }
249  if (xnulam >= flow) { etest =std::sqrt(xnulam) + 7.; }
250 
251  a = -2.*p*ec + landa - nu/ecsq;
252  b = p*ecsq + mu + 2.*nu/ec;
253  ecut = 0.;
254  cut = a*a - 4.*p*b;
255  if (cut > 0.) { ecut = std::sqrt(cut); }
256  ecut = (ecut-a) / (p+p);
257  ecut2 = ecut;
258  //JMQ 290310 for avoiding unphysical increase below minimum (at ecut)
259  // ecut<0 means that there is no cut with energy axis, i.e. xs is set
260  // to 0 bellow minimum
261  //  if (cut < 0.) ecut2 = ecut - 2.;
262  if (cut < 0.) { ecut2 = ecut; }
263  elab = K * FragmentA /G4double(ResidualA);
264  sig = 0.;
265  if (elab <= ec) { //start for E<Ec
266    if (elab > ecut2) { sig = (p*elab*elab+a*elab+b) * signor; }
267   
268    signor2 = (ec-elab-c) / w;
269    signor2 = 1. + std::exp(signor2);
270    sig = sig / signor2;
271  }              //end for E<=Ec
272  else{           //start for  E>Ec
273    sig = (landa*elab+mu+nu/elab) * signor;
274    geom = 0.;
275   
276    if (xnulam < flow || elab < etest) 
277      {
278        if (sig <0.0) {sig=0.0;}
279        return sig;
280      }
281    geom = std::sqrt(theA*K);
282    geom = 1.23*ResidualAthrd + ra + 4.573/geom;
283    geom = 31.416 * geom * geom;
284    sig = std::max(geom,sig);
285   
286  }   //end for E>Ec
287  return sig;
288}
289
Note: See TracBrowser for help on using the repository browser.