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

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