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

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

update geant4-09-04-beta-cand-01 interfaces-V09-03-09 vis-V09-03-08

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