source: trunk/source/processes/hadronic/models/de_excitation/evaporation/src/G4AlphaEvaporationProbability.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 "G4AlphaEvaporationProbability.hh"
35
36G4AlphaEvaporationProbability::G4AlphaEvaporationProbability() :
37    G4EvaporationProbability(4,2,1,&theCoulombBarrier) // A,Z,Gamma,&theCoumlombBarrier
38{
39       
40}
41
42
43G4AlphaEvaporationProbability::G4AlphaEvaporationProbability(const G4AlphaEvaporationProbability &): G4EvaporationProbability()
44{
45    throw G4HadronicException(__FILE__, __LINE__, "G4AlphaEvaporationProbability::copy_constructor meant to not be accessable");
46}
47
48
49
50
51const G4AlphaEvaporationProbability & G4AlphaEvaporationProbability::
52operator=(const G4AlphaEvaporationProbability &) 
53{
54    throw G4HadronicException(__FILE__, __LINE__, "G4AlphaEvaporationProbability::operator= meant to not be accessable");
55    return *this;
56}
57
58
59G4bool G4AlphaEvaporationProbability::operator==(const G4AlphaEvaporationProbability &) const
60{
61    return false;
62}
63
64G4bool G4AlphaEvaporationProbability::operator!=(const G4AlphaEvaporationProbability &) const
65{
66    return true;
67}
68
69
70 G4double G4AlphaEvaporationProbability::CalcAlphaParam(const G4Fragment & fragment) 
71  { return 1.0 + CCoeficient(static_cast<G4double>(fragment.GetZ()-GetZ()));}
72       
73 G4double G4AlphaEvaporationProbability::CalcBetaParam(const G4Fragment &) 
74  { return 0.0; }
75
76G4double G4AlphaEvaporationProbability::CCoeficient(const G4double aZ) 
77{
78    // Data comes from
79    // Dostrovsky, Fraenkel and Friedlander
80    // Physical Review, vol 116, num. 3 1959
81    //
82    // const G4int size = 5;
83    // G4double Zlist[5] = { 10.0, 20.0, 30.0, 50.0, 70.0};
84    //  G4double Calpha[5] = { 0.10, 0.10, 0.10, 0.08, 0.06};
85    G4double C = 0.0;
86       
87       
88    if (aZ <= 30) {
89        C = 0.10;
90    } else if (aZ <= 50) {
91        C = 0.1 + -((aZ-50.)/20.)*0.02;
92    } else if (aZ < 70) {
93        C = 0.08 + -((aZ-70.)/20.)*0.02;
94    } else {
95        C = 0.06;
96    }
97    return C;
98}
99
100///////////////////////////////////////////////////////////////////////////////////
101//J. M. Quesada (Dec 2007-June 2008): New inverse reaction cross sections
102//OPT=0 Dostrovski's parameterization
103//OPT=1,2 Chatterjee's paramaterization
104//OPT=3,4 Kalbach's parameterization
105//
106G4double G4AlphaEvaporationProbability::CrossSection(const  G4Fragment & fragment, 
107                                                     const  G4double K)
108{
109  theA=GetA();
110  theZ=GetZ();
111  ResidualA=fragment.GetA()-theA;
112  ResidualZ=fragment.GetZ()-theZ; 
113 
114  ResidualAthrd=std::pow(ResidualA,0.33333);
115  FragmentA=fragment.GetA();
116  FragmentAthrd=std::pow(FragmentA,0.33333);
117 
118 
119  if (OPTxs==0) {std::ostringstream errOs;
120    errOs << "We should'n be here (OPT =0) at evaporation cross section calculation (Alpha's)!!" 
121          <<G4endl;
122    throw G4HadronicException(__FILE__, __LINE__, errOs.str());
123    return 0.;}
124 
125  if( OPTxs==1 || OPTxs==2) return G4AlphaEvaporationProbability::GetOpt12( K);
126  else if (OPTxs==3 || OPTxs==4)  return G4AlphaEvaporationProbability::GetOpt34( K);
127  else{
128    std::ostringstream errOs;
129    errOs << "BAD Alpha CROSS SECTION OPTION AT EVAPORATION!!"  <<G4endl;
130    throw G4HadronicException(__FILE__, __LINE__, errOs.str());
131    return 0.;
132  }
133}
134
135
136//
137//********************* OPT=1,2 : Chatterjee's cross section ************************
138//(fitting to cross section from Bechetti & Greenles OM potential)
139
140G4double G4AlphaEvaporationProbability::GetOpt12(const  G4double K)
141{
142// c     ** alpha from huizenga and igo
143  G4double Kc=K;
144 
145  // JMQ xsec is set constat above limit of validity
146  if (K>50) Kc=50;
147 
148  G4double landa ,mu ,nu ,p , Ec,q,r,ji,xs;
149 
150  G4double     p0 = 10.95;
151  G4double     p1 = -85.2;
152  G4double     p2 = 1146.;
153  G4double     landa0 = 0.0643;
154  G4double     landa1 = -13.96;
155  G4double     mu0 = 781.2;
156  G4double     mu1 = 0.29;
157  G4double     nu0 = -304.7;
158  G4double     nu1 = -470.0;
159  G4double     nu2 = -8.580;   
160  G4double     delta=1.2;         
161
162 
163  Ec = 1.44*theZ*ResidualZ/(1.5*ResidualAthrd+delta);
164  p = p0 + p1/Ec + p2/(Ec*Ec);
165  landa = landa0*ResidualA + landa1;
166  mu = mu0*std::pow(ResidualA,mu1);
167  nu = std::pow(ResidualA,mu1)*(nu0 + nu1*Ec + nu2*(Ec*Ec));
168  q = landa - nu/(Ec*Ec) - 2*p*Ec;
169  r = mu + 2*nu/Ec + p*(Ec*Ec);
170 
171  ji=std::max(Kc,Ec);
172  if(Kc < Ec) { xs = p*Kc*Kc + q*Kc + r;}
173  else {xs = p*(Kc - ji)*(Kc - ji) + landa*Kc + mu + nu*(2 - Kc/ji)/ji ;}
174                 
175  if (xs <0.0) {xs=0.0;}
176 
177  return xs;
178 
179}
180
181// *********** OPT=3,4 : Kalbach's cross sections (from PRECO code)*************
182G4double G4AlphaEvaporationProbability::GetOpt34(const  G4double K)
183// c     ** alpha from huizenga and igo
184{
185 
186  G4double landa, mu, nu, p , signor(1.),sig;
187  G4double ec,ecsq,xnulam,etest(0.),a; 
188  G4double b,ecut,cut,ecut2,geom,elab;
189
190
191  G4double     flow = 1.e-18;
192  G4double     spill= 1.e+18;
193
194  G4double       p0 = 10.95;
195  G4double     p1 = -85.2;
196  G4double     p2 = 1146.;
197  G4double     landa0 = 0.0643;
198  G4double     landa1 = -13.96;
199  G4double     mu0 = 781.2;
200  G4double     mu1 = 0.29;
201  G4double     nu0 = -304.7;
202  G4double     nu1 = -470.0;
203  G4double     nu2 = -8.580;       
204 
205  G4double      ra=1.20;
206 
207  //JMQ 13/02/09 increase of reduced radius to lower the barrier
208  // ec = 1.44 * theZ * ResidualZ / (1.5*ResidualAthrd+ra);
209  ec = 1.44 * theZ * ResidualZ / (1.7*ResidualAthrd+ra);
210  ecsq = ec * ec;
211  p = p0 + p1/ec + p2/ecsq;
212  landa = landa0*ResidualA + landa1;
213  a = std::pow(ResidualA,mu1);
214  mu = mu0 * a;
215  nu = a* (nu0+nu1*ec+nu2*ecsq); 
216  xnulam = nu / landa;
217  if (xnulam > spill) xnulam=0.;
218  if (xnulam >= flow) etest = 1.2 *std::sqrt(xnulam);
219 
220  a = -2.*p*ec + landa - nu/ecsq;
221  b = p*ecsq + mu + 2.*nu/ec;
222  ecut = 0.;
223  cut = a*a - 4.*p*b;
224  if (cut > 0.) ecut = std::sqrt(cut);
225  ecut = (ecut-a) / (p+p);
226  ecut2 = ecut;
227//JMQ 290310 for avoiding unphysical increase below minimum (at ecut)
228//ecut<0 means that there is no cut with energy axis, i.e. xs is set to 0 bellow minimum
229//  if (cut < 0.) ecut2 = ecut - 2.;
230  if (cut < 0.) ecut2 = ecut;
231  elab = K * FragmentA / ResidualA;
232  sig = 0.;
233 
234  if (elab <= ec) { //start for E<Ec
235    if (elab > ecut2)  sig = (p*elab*elab+a*elab+b) * signor;
236  }           //end for E<Ec
237  else {           //start for E>Ec
238    sig = (landa*elab+mu+nu/elab) * signor;
239    geom = 0.;
240    if (xnulam < flow || elab < etest) return sig;
241    geom = std::sqrt(theA*K);
242    geom = 1.23*ResidualAthrd + ra + 4.573/geom;
243    geom = 31.416 * geom * geom;
244    sig = std::max(geom,sig);
245  }           //end for E>Ec
246  return sig;
247 
248}
249
250//   ************************** end of cross sections *******************************
Note: See TracBrowser for help on using the repository browser.