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

Last change on this file since 1347 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: G4DeuteronEvaporationProbability.cc,v 1.20 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
39#include "G4DeuteronEvaporationProbability.hh"
40
41
42G4DeuteronEvaporationProbability::G4DeuteronEvaporationProbability() :
43    G4EvaporationProbability(2,1,3,&theCoulombBarrier) // A,Z,Gamma (fixed JMQ)
44{}
45
46G4DeuteronEvaporationProbability::~G4DeuteronEvaporationProbability()
47{}
48
49G4double G4DeuteronEvaporationProbability::CalcAlphaParam(const G4Fragment & fragment) 
50{
51  return 1.0 + CCoeficient(fragment.GetZ_asInt()-GetZ());
52}
53
54G4double G4DeuteronEvaporationProbability::CalcBetaParam(const G4Fragment & ) 
55{
56  return 0.0;
57}
58
59G4double G4DeuteronEvaporationProbability::CCoeficient(G4int aZ) 
60{
61  // Data comes from
62  // Dostrovsky, Fraenkel and Friedlander
63  // Physical Review, vol 116, num. 3 1959
64  //
65  // const G4int size = 5;
66  // G4double Zlist[5] = { 10.0, 20.0, 30.0, 50.0, 70.0};
67  // G4double Cp[5] = { 0.50, 0.28, 0.20, 0.15, 0.10};
68  // C for deuteron is equal to C for protons divided by 2
69  G4double C = 0.0;
70       
71  if (aZ >= 70) {
72    C = 0.10;
73  } else {
74    C = ((((0.15417e-06*aZ) - 0.29875e-04)*aZ + 0.21071e-02)*aZ - 0.66612e-01)*aZ + 0.98375;
75  }
76       
77  return C/2.0;
78       
79}
80
81
82///////////////////////////////////////////////////////////////////////////////////
83//J. M. Quesada (Dec 2007-June 2008): New inverse reaction cross sections
84//OPT=0 Dostrovski's parameterization
85//OPT=1,2 Chatterjee's paramaterization
86//OPT=3,4 Kalbach's parameterization
87//
88G4double
89G4DeuteronEvaporationProbability::CrossSection(const  G4Fragment & fragment, G4double K)
90{
91  theA=GetA();
92  theZ=GetZ();
93  ResidualA=fragment.GetA_asInt()-theA;
94  ResidualZ=fragment.GetZ_asInt()-theZ; 
95 
96  ResidualAthrd=fG4pow->Z13(ResidualA);
97  FragmentA=fragment.GetA_asInt();
98  FragmentAthrd=fG4pow->Z13(FragmentA);
99
100  if (OPTxs==0) {std::ostringstream errOs;
101  errOs << "We should'n be here (OPT =0) at evaporation cross section calculation (deuterons)!!" 
102        <<G4endl;
103  throw G4HadronicException(__FILE__, __LINE__, errOs.str());
104  return 0.;}
105  if( OPTxs==1 || OPTxs==2) return G4DeuteronEvaporationProbability::GetOpt12( K);
106  else if (OPTxs==3 || OPTxs==4)  return G4DeuteronEvaporationProbability::GetOpt34( K);
107  else{
108    std::ostringstream errOs;
109    errOs << "BAD Deuteron CROSS SECTION OPTION AT EVAPORATION!!"  <<G4endl;
110    throw G4HadronicException(__FILE__, __LINE__, errOs.str());
111    return 0.;
112  }
113}
114
115//
116//********************* OPT=1,2 : Chatterjee's cross section ********************
117//(fitting to cross section from Bechetti & Greenles OM potential)
118
119G4double G4DeuteronEvaporationProbability::GetOpt12(G4double K)
120{
121  G4double Kc = K;
122
123  // JMQ xsec is set constat above limit of validity
124  if (K > 50*MeV) { Kc = 50*MeV; }
125
126  G4double landa ,mu ,nu ,p , Ec,q,r,ji,xs;
127 
128  G4double    p0 = -38.21;
129  G4double    p1 = 922.6;
130  G4double    p2 = -2804.;
131  G4double    landa0 = -0.0323;
132  G4double    landa1 = -5.48;
133  G4double    mu0 = 336.1;
134  G4double    mu1 = 0.48;
135  G4double    nu0 = 524.3;
136  G4double    nu1 = -371.8;
137  G4double    nu2 = -5.924; 
138  G4double    delta=1.2;           
139
140  Ec = 1.44*theZ*ResidualZ/(1.5*ResidualAthrd+delta);
141  p = p0 + p1/Ec + p2/(Ec*Ec);
142  landa = landa0*ResidualA + landa1;
143  G4double resmu1 = fG4pow->powZ(ResidualA,mu1); 
144  mu = mu0*resmu1;
145  nu = resmu1*(nu0 + nu1*Ec + nu2*(Ec*Ec));
146  q = landa - nu/(Ec*Ec) - 2*p*Ec;
147  r = mu + 2*nu/Ec + p*(Ec*Ec);
148
149  ji=std::max(Kc,Ec);
150  if(Kc < Ec) { xs = p*Kc*Kc + q*Kc + r;}
151  else {xs = p*(Kc - ji)*(Kc - ji) + landa*Kc + mu + nu*(2 - Kc/ji)/ji ;}
152                 
153  if (xs <0.0) {xs=0.0;}
154             
155  return xs;
156}
157
158// *********** OPT=3,4 : Kalbach's cross sections (from PRECO code)*************
159G4double G4DeuteronEvaporationProbability::GetOpt34(G4double K)
160//     ** d from o.m. of perey and perey
161{
162
163  G4double landa, mu, nu, p ,signor(1.),sig;
164  G4double ec,ecsq,xnulam,etest(0.),a; 
165  G4double b,ecut,cut,ecut2,geom,elab;
166
167  G4double     flow = 1.e-18;
168  G4double     spill= 1.e+18;
169
170  G4double     p0 = 0.798;
171  G4double     p1 = 420.3;
172  G4double     p2 = -1651.;
173  G4double     landa0 = 0.00619;
174  G4double     landa1 = -7.54;
175  G4double     mu0 = 583.5;
176  G4double     mu1 = 0.337;
177  G4double     nu0 = 421.8;
178  G4double     nu1 = -474.5;
179  G4double     nu2 = -3.592;     
180 
181  G4double     ra=0.80;
182       
183  //JMQ 13/02/09 increase of reduced radius to lower the barrier
184  // ec = 1.44 * theZ * ResidualZ / (1.5*ResidualAthrd+ra);
185  ec = 1.44 * theZ * ResidualZ / (1.7*ResidualAthrd+ra);
186  ecsq = ec * ec;
187  p = p0 + p1/ec + p2/ecsq;
188  landa = landa0*ResidualA + landa1;
189  a = fG4pow->powZ(ResidualA,mu1);
190  mu = mu0 * a;
191  nu = a* (nu0+nu1*ec+nu2*ecsq); 
192  xnulam = nu / landa;
193  if (xnulam > spill) { xnulam=0.; }
194  if (xnulam >= flow) { etest = 1.2 *std::sqrt(xnulam); }
195
196  a = -2.*p*ec + landa - nu/ecsq;
197  b = p*ecsq + mu + 2.*nu/ec;
198  ecut = 0.;
199  cut = a*a - 4.*p*b;
200  if (cut > 0.) { ecut = std::sqrt(cut); }
201  ecut = (ecut-a) / (p+p);
202  ecut2 = ecut;
203  //JMQ 290310 for avoiding unphysical increase below minimum (at ecut)
204  //ecut<0 means that there is no cut with energy axis, i.e. xs is set
205  //to 0 bellow minimum
206  //  if (cut < 0.) ecut2 = ecut - 2.;
207  if (cut < 0.) { ecut2 = ecut; }
208  elab = K * FragmentA / G4double(ResidualA);
209  sig = 0.;
210
211  if (elab <= ec) { //start for E<Ec
212    if (elab > ecut2) { sig = (p*elab*elab+a*elab+b) * signor; }
213  }           //end for E<Ec
214  else {           //start for E>Ec
215    sig = (landa*elab+mu+nu/elab) * signor;
216    geom = 0.;
217    if (xnulam < flow || elab < etest) { return sig; }
218    geom = std::sqrt(theA*K);
219    geom = 1.23*ResidualAthrd + ra + 4.573/geom;
220    geom = 31.416 * geom * geom;
221    sig = std::max(geom,sig);
222  }           //end for E>Ec
223  return sig;
224}
225
Note: See TracBrowser for help on using the repository browser.