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